summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-04-16 12:37:47 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-04-16 12:37:47 -0600
commit00e54905970969e28a8b69b6e74a1e40ea5eab2c (patch)
treed44594734e4e9e623766cf08d6d968cf39d132bd
parentd5267ba78ea681675c755ab490c89a6da6b6d292 (diff)
downloadpx4-nuttx-00e54905970969e28a8b69b6e74a1e40ea5eab2c.tar.gz
px4-nuttx-00e54905970969e28a8b69b6e74a1e40ea5eab2c.tar.bz2
px4-nuttx-00e54905970969e28a8b69b6e74a1e40ea5eab2c.zip
Fix dedbug output; used wrong macro
-rw-r--r--nuttx/configs/stm32f4discovery/src/stm32_pwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/configs/stm32f4discovery/src/stm32_pwm.c b/nuttx/configs/stm32f4discovery/src/stm32_pwm.c
index dfe66109e..b4a7eeba0 100644
--- a/nuttx/configs/stm32f4discovery/src/stm32_pwm.c
+++ b/nuttx/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;
}