diff options
Diffstat (limited to 'os/hal/templates/uart_lld.c')
-rw-r--r-- | os/hal/templates/uart_lld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/templates/uart_lld.c b/os/hal/templates/uart_lld.c index 2c317b677..264446369 100644 --- a/os/hal/templates/uart_lld.c +++ b/os/hal/templates/uart_lld.c @@ -28,7 +28,7 @@ #include "ch.h"
#include "hal.h"
-#if CH_HAL_USE_UART || defined(__DOXYGEN__)
+#if HAL_USE_UART || defined(__DOXYGEN__)
/*===========================================================================*/
/* Driver exported variables. */
@@ -145,6 +145,6 @@ size_t uart_lld_stop_receive(UARTDriver *uartp) { }
-#endif /* CH_HAL_USE_UART */
+#endif /* HAL_USE_UART */
/** @} */
|