25 lines
320 B
C
25 lines
320 B
C
|
|
/*
|
|||
|
|
* frm_uart.h
|
|||
|
|
*
|
|||
|
|
* Created on: 21 <EFBFBD><EFBFBD><EFBFBD>. 2023 <EFBFBD>.
|
|||
|
|
* Author: seklyuts
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#ifndef SRC_FRM_UART_H_
|
|||
|
|
#define SRC_FRM_UART_H_
|
|||
|
|
|
|||
|
|
//#include "PE_freemaster_56F8xxx.h"
|
|||
|
|
|
|||
|
|
|
|||
|
|
void uart_init_uart2(uint32_t Baudrate);
|
|||
|
|
void uart_init_uart1(uint32_t Baudrate);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
void FRMGPIOInit(void);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif /* SRC_FRM_UART_H_ */
|