diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-10 15:56:45 -0400 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-10 15:56:45 -0400 |
commit | 6bdaff5d2abaeb614e98de2c9e5d0a02b439fa8f (patch) | |
tree | 40d44f526133511aec46dd83da4c66421e3d19bf /watch-library/shared/watch/watch_uart.h | |
parent | 35172ce11a184daf409f8d6c03c6844cc5382b71 (diff) | |
download | Sensor-Watch-6bdaff5d2abaeb614e98de2c9e5d0a02b439fa8f.tar.gz Sensor-Watch-6bdaff5d2abaeb614e98de2c9e5d0a02b439fa8f.tar.bz2 Sensor-Watch-6bdaff5d2abaeb614e98de2c9e5d0a02b439fa8f.zip |
remove all deprecated functions
Diffstat (limited to 'watch-library/shared/watch/watch_uart.h')
-rw-r--r-- | watch-library/shared/watch/watch_uart.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/watch-library/shared/watch/watch_uart.h b/watch-library/shared/watch/watch_uart.h index 79fcd53a..3d7ee778 100644 --- a/watch-library/shared/watch/watch_uart.h +++ b/watch-library/shared/watch/watch_uart.h @@ -52,24 +52,5 @@ void watch_uart_puts(char *s); */ char watch_uart_getc(void); -// Begin deprecated functions: - -/** @brief Initializes the debug UART. - * @param baud The baud rate - */ -__attribute__((deprecated("Use watch_enable_uart to enable the UART."))) -void watch_enable_debug_uart(uint32_t baud); - -/** @brief Outputs a single character on the debug UART. - * @param c The character you wish to output. - */ -__attribute__((deprecated("Use watch_uart_puts to print to the UART, or printf to log debug messages over USB."))) -void watch_debug_putc(char c); - -/** @brief Outputs a string on the debug UART. - * @param s A null-terminated string. - */ -__attribute__((deprecated("Use watch_uart_puts to print to the UART, or printf to log debug messages over USB."))) -void watch_debug_puts(char *s); /// @} #endif |