From 2cecfa1036ef73d00dab7b60b040c038acae95ef Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 16 Apr 2015 12:37:47 -0600 Subject: [PATCH] Fix dedbug output; used wrong macro --- configs/stm32f4discovery/src/stm32_pwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/stm32f4discovery/src/stm32_pwm.c b/configs/stm32f4discovery/src/stm32_pwm.c index dfe66109e4..b4a7eeba08 100644 --- a/configs/stm32f4discovery/src/stm32_pwm.c +++ b/configs/stm32f4discovery/src/stm32_pwm.c @@ -117,7 +117,7 @@ int board_pwm_setup(void) pwm = stm32_pwminitialize(STM32F4DISCOVERY_PWMTIMER); if (!pwm) { - dbg("Failed to get the STM32 PWM lower half\n"); + adbg("Failed to get the STM32 PWM lower half\n"); return -ENODEV; }