      
/******************************************************************************

 * Copyright (C) 2024 , Inc.(Gmbh) or its affiliates.

 * 
 * All Rights Reserved.

 * 
 * @file Flash.c

 * 
 * @par dependencies 

 * - Flash.h

 * 
 * @author 小偷

 * 
 * @brief Functions related to reading and writing in the chip's flash area.

 * 
 * Processing flow:

 * 
 * call directly.

 * 
 * @version V1.0 2024-09-13

 *
 * @note 1 tab == 4 spaces!

 * 
 *****************************************************************************/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USART_H
#define __USART_H

/* Includes ------------------------------------------------------------------*/
#include "stm32f4xx.h"
/* Exported types ------------------------------------------------------------*/
/* Exported constants --------------------------------------------------------*/
/* Exported macro ------------------------------------------------------------*/
/* Exported functions ------------------------------------------------------- */
extern void USART1_Init(void);
extern void USART_SendChar(USART_TypeDef* USARTx, uint8_t data);
extern uint8_t USART_ReceiveChar(USART_TypeDef* USARTx);
#endif