diff options
Diffstat (limited to '02-usart/include/arch/stm32l4xxx/peripherals/usart.h')
-rw-r--r-- | 02-usart/include/arch/stm32l4xxx/peripherals/usart.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/02-usart/include/arch/stm32l4xxx/peripherals/usart.h b/02-usart/include/arch/stm32l4xxx/peripherals/usart.h index e42e31e..a1542f4 100644 --- a/02-usart/include/arch/stm32l4xxx/peripherals/usart.h +++ b/02-usart/include/arch/stm32l4xxx/peripherals/usart.h @@ -3,6 +3,7 @@ #include <arch.h> #include <stdint.h> +#include <stdarg.h> #include "kern/common.h" #include "arch/stm32l4xxx/peripherals/rcc.h" @@ -197,5 +198,7 @@ void usart_transmit_str_sync(__IO usart_t* usart, const char* str); void usart_printf(__IO usart_t* usart, const char* fmt, ...); +void usart_vprintf(__IO usart_t* usart, const char* fmt, va_list l); + #endif /* H__USART_ */ |