Sign in
android
/
device
/
google
/
contexthub
/
48ca0ca8e5fceeddad06fcde46ebcb135445ced7
/
.
/
firmware
/
inc
/
platform
/
stm32f4xx
/
usart.h
blob: f1b2f170a0e38c2b556411ffa95c0c4dec094173 [
file
] [
log
] [
blame
]
#ifndef
_STM32F4XX_USART_H_
#define
_STM32F4XX_USART_H_
#ifdef
__cplusplus
extern
"C"
{
#endif
#include
<stdint.h>
#include
<gpio.h>
struct
usart
{
struct
Gpio
*
tx
;
struct
Gpio
*
rx
;
uint8_t
unit
;
};
#ifdef
__cplusplus
}
#endif
#endif