aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoracirillo87 <acirillo87@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-06-25 07:26:56 +0000
committeracirillo87 <acirillo87@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-06-25 07:26:56 +0000
commit482618c4c0e356daac12f5b794ba51371c53481e (patch)
treebe6e5d4502ed593a7e4795fabef04993522fa795
parent7650756a8515ba1b235474eeb72d08d6033fe859 (diff)
downloadChibiOS-482618c4c0e356daac12f5b794ba51371c53481e.tar.gz
ChibiOS-482618c4c0e356daac12f5b794ba51371c53481e.tar.bz2
ChibiOS-482618c4c0e356daac12f5b794ba51371c53481e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5888 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/platforms/SPC5xx/eMIOS200_v1/pwm_lld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/SPC5xx/eMIOS200_v1/pwm_lld.c b/os/hal/platforms/SPC5xx/eMIOS200_v1/pwm_lld.c
index b5538f60c..066eaa35a 100644
--- a/os/hal/platforms/SPC5xx/eMIOS200_v1/pwm_lld.c
+++ b/os/hal/platforms/SPC5xx/eMIOS200_v1/pwm_lld.c
@@ -696,7 +696,7 @@ void pwm_lld_start(PWMDriver *pwmp) {
chDbgAssert((psc <= 0xFFFF) &&
(((psc) * pwmp->config->frequency) == SPC5_EMIOS_CLK) &&
((psc == 1) || (psc == 2) || (psc == 3) || (psc == 4)),
- "pwm_lld_start(), #1", "invalid frequency");
+ "pwm_lld_start(), #2", "invalid frequency");
if (pwmp->config->mode == PWM_ALIGN_EDGE) {
pwmp->emiosp->CH[pwmp->ch_number].CCR.B.UCPREN = 0;