From 6bdaff5d2abaeb614e98de2c9e5d0a02b439fa8f Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sun, 10 Apr 2022 15:56:45 -0400 Subject: remove all deprecated functions --- watch-library/shared/watch/watch_uart.h | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'watch-library/shared/watch/watch_uart.h') 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 -- cgit v1.2.3