diff options
author | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-08-03 16:03:14 +0000 |
---|---|---|
committer | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-08-03 16:03:14 +0000 |
commit | b6989b35f5d3a3d2bbb464145430224ef669aea2 (patch) | |
tree | f21bf2b6a95d743dce4d6da933948c46d8f126d4 | |
parent | b7e19ea8f4f7dea3cb1e03c68e9aceeb4191a90f (diff) |
fix help message
git-svn-id: https://svn.openpcd.org:2342/trunk@75 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
-rw-r--r-- | openpcd/firmware/src/main_pwm.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/openpcd/firmware/src/main_pwm.c b/openpcd/firmware/src/main_pwm.c index 309496c..f39a55a 100644 --- a/openpcd/firmware/src/main_pwm.c +++ b/openpcd/firmware/src/main_pwm.c @@ -54,18 +54,18 @@ static u_int8_t rsrel_table[] = { static void help(void) { - DEBUGPCRF("o: decrease duty p: increase duty\r\n" - "k: stop pwm l: start pwn\r\n" - "n: decrease freq m: incresae freq\r\n" - "v: decrease mod_cond b: increase mod_cond\r\n" - "g: decrease cw_cond h: increase cw_cond\r\n"); - DEBUGPCRF("u: PA0 const 1 y: PA0 const 0\r\n" - "t: PA0 PWM0 f: toggle Force100ASK"); + DEBUGPCR("o: decrease duty p: increase duty\r\n" + "k: stop pwm l: start pwn\r\n" + "n: decrease freq m: incresae freq\r\n" + "v: decrease mod_cond b: increase mod_cond\r\n" + "g: decrease cw_cond h: increase cw_cond\r\n"); + DEBUGPCR("u: PA0 const 1 y: PA0 const 0\r\n" + "t: PA0 PWM0 f: toggle Force100ASK"); } void _init_func(void) { - DEBUGPCRF("\r\n===> main_pwm <===\r\n"); + DEBUGPCR("\r\n===> main_pwm <===\r\n"); help(); rc632_init(); |