diff options
| author | tmk <tmk@users.noreply.github.com> | 2015-01-19 11:58:04 +0900 |
|---|---|---|
| committer | tmk <tmk@users.noreply.github.com> | 2015-01-19 11:58:04 +0900 |
| commit | aa95d6ff62ef46dfa5d41858b1cbf7f4eebf33b9 (patch) | |
| tree | 0cf80953dd145da59c48402a8ec06dcab7b45469 /common/command.c | |
| parent | 2e75b138c1bcd5b937b61cc731ec911f55759703 (diff) | |
| parent | 60acd8996d559f5ab0458c2e1ea46ac9790d14b3 (diff) | |
| download | qmk_firmware-aa95d6ff62ef46dfa5d41858b1cbf7f4eebf33b9.tar.gz qmk_firmware-aa95d6ff62ef46dfa5d41858b1cbf7f4eebf33b9.zip | |
Merge pull request #151 from bswinnerton/typo-fix
Fixing typo in console mode
Diffstat (limited to 'common/command.c')
| -rw-r--r-- | common/command.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/common/command.c b/common/command.c index 1a507e3a4..fbaa9f2d7 100644 --- a/common/command.c +++ b/common/command.c | |||
| @@ -303,7 +303,7 @@ static bool command_common(uint8_t code) | |||
| 303 | #endif | 303 | #endif |
| 304 | " " STR(BOOTLOADER_SIZE) "\n"); | 304 | " " STR(BOOTLOADER_SIZE) "\n"); |
| 305 | 305 | ||
| 306 | print("GCC: " STR(__GNUC__) "." STR(__GNUC_MINOR__) "." STR(__GNUC_PATCHLEVEL__) | 306 | print("GCC: " STR(__GNUC__) "." STR(__GNUC_MINOR__) "." STR(__GNUC_PATCHLEVEL__) |
| 307 | " AVR-LIBC: " __AVR_LIBC_VERSION_STRING__ | 307 | " AVR-LIBC: " __AVR_LIBC_VERSION_STRING__ |
| 308 | " AVR_ARCH: avr" STR(__AVR_ARCH__) "\n"); | 308 | " AVR_ARCH: avr" STR(__AVR_ARCH__) "\n"); |
| 309 | break; | 309 | break; |
| @@ -542,12 +542,12 @@ static void mousekey_console_help(void) | |||
| 542 | print("4: select mk_time_to_max\n"); | 542 | print("4: select mk_time_to_max\n"); |
| 543 | print("5: select mk_wheel_max_speed\n"); | 543 | print("5: select mk_wheel_max_speed\n"); |
| 544 | print("6: select mk_wheel_time_to_max\n"); | 544 | print("6: select mk_wheel_time_to_max\n"); |
| 545 | print("p: print prameters\n"); | 545 | print("p: print parameters\n"); |
| 546 | print("d: set default values\n"); | 546 | print("d: set default values\n"); |
| 547 | print("up: increase prameters(+1)\n"); | 547 | print("up: increase parameters(+1)\n"); |
| 548 | print("down: decrease prameters(-1)\n"); | 548 | print("down: decrease parameters(-1)\n"); |
| 549 | print("pgup: increase prameters(+10)\n"); | 549 | print("pgup: increase parameters(+10)\n"); |
| 550 | print("pgdown: decrease prameters(-10)\n"); | 550 | print("pgdown: decrease parameters(-10)\n"); |
| 551 | print("\nspeed = delta * max_speed * (repeat / time_to_max)\n"); | 551 | print("\nspeed = delta * max_speed * (repeat / time_to_max)\n"); |
| 552 | print("where delta: cursor="); pdec(MOUSEKEY_MOVE_DELTA); | 552 | print("where delta: cursor="); pdec(MOUSEKEY_MOVE_DELTA); |
| 553 | print(", wheel="); pdec(MOUSEKEY_WHEEL_DELTA); print("\n"); | 553 | print(", wheel="); pdec(MOUSEKEY_WHEEL_DELTA); print("\n"); |
