kopia lustrzana https://github.com/skuep/AIOC
17 wiersze
523 B
C
17 wiersze
523 B
C
#ifndef USB_SERIAL_H_
|
|
#define USB_SERIAL_H_
|
|
|
|
#define USB_SERIAL_UART USART1
|
|
#define USB_SERIAL_UART_IRQ USART1_IRQHandler
|
|
#define USB_SERIAL_UART_PERIPHCLK RCC_PERIPHCLK_USART1
|
|
#define USB_SERIAL_UART_RXTIMEOUT 20 /* in number of bits */
|
|
#define USB_SERIAL_UART_DEFBAUD 9600
|
|
#define USB_SERIAL_UART_GPIO GPIOA
|
|
#define USB_SERIAL_UART_PIN_TX GPIO_PIN_9
|
|
#define USB_SERIAL_UART_PIN_RX GPIO_PIN_10
|
|
|
|
void USB_SerialInit(void);
|
|
void USB_SerialTask(void);
|
|
|
|
#endif /* USB_SERIAL_H_ */
|