From 33a15696519e161cd823baaf4214d1ed452a410a Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Wed, 2 Jan 2019 23:08:37 -0700 Subject: Add primitive printf functionality to the USART. --- 03-refactor/include/usart.h | 2 ++ 1 file changed, 2 insertions(+) (limited to '03-refactor/include/usart.h') diff --git a/03-refactor/include/usart.h b/03-refactor/include/usart.h index 3fea253..377048c 100644 --- a/03-refactor/include/usart.h +++ b/03-refactor/include/usart.h @@ -207,5 +207,7 @@ void usart_transmit_bytes( void usart_transmit_str(__IO usart_t* usart, const char* str); +void usart_printf(__IO usart_t* usart, const char* fmt, ...); + #endif /* H__USART_ */ -- cgit