diff options
| author | Brooks Swinnerton <bswinnerton@gmail.com> | 2014-11-30 13:27:59 -0500 |
|---|---|---|
| committer | Brooks Swinnerton <bswinnerton@gmail.com> | 2014-11-30 13:27:59 -0500 |
| commit | 60acd8996d559f5ab0458c2e1ea46ac9790d14b3 (patch) | |
| tree | 02ca0a6650a7628686ce59b4375c8a403c8f5ece | |
| parent | 4192bce16b6cf4c5acc10ea6b26fb714fc132e01 (diff) | |
| download | qmk_firmware-60acd8996d559f5ab0458c2e1ea46ac9790d14b3.tar.gz qmk_firmware-60acd8996d559f5ab0458c2e1ea46ac9790d14b3.zip | |
Fixing typo in console mode
| -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 971ef7f0a..380f2d8c0 100644 --- a/common/command.c +++ b/common/command.c | |||
| @@ -302,7 +302,7 @@ static bool command_common(uint8_t code) | |||
| 302 | #endif | 302 | #endif |
| 303 | " " STR(BOOTLOADER_SIZE) "\n"); | 303 | " " STR(BOOTLOADER_SIZE) "\n"); |
| 304 | 304 | ||
| 305 | print("GCC: " STR(__GNUC__) "." STR(__GNUC_MINOR__) "." STR(__GNUC_PATCHLEVEL__) | 305 | print("GCC: " STR(__GNUC__) "." STR(__GNUC_MINOR__) "." STR(__GNUC_PATCHLEVEL__) |
| 306 | " AVR-LIBC: " __AVR_LIBC_VERSION_STRING__ | 306 | " AVR-LIBC: " __AVR_LIBC_VERSION_STRING__ |
| 307 | " AVR_ARCH: avr" STR(__AVR_ARCH__) "\n"); | 307 | " AVR_ARCH: avr" STR(__AVR_ARCH__) "\n"); |
| 308 | break; | 308 | break; |
| @@ -541,12 +541,12 @@ static void mousekey_console_help(void) | |||
| 541 | print("4: select mk_time_to_max\n"); | 541 | print("4: select mk_time_to_max\n"); |
| 542 | print("5: select mk_wheel_max_speed\n"); | 542 | print("5: select mk_wheel_max_speed\n"); |
| 543 | print("6: select mk_wheel_time_to_max\n"); | 543 | print("6: select mk_wheel_time_to_max\n"); |
| 544 | print("p: print prameters\n"); | 544 | print("p: print parameters\n"); |
| 545 | print("d: set default values\n"); | 545 | print("d: set default values\n"); |
| 546 | print("up: increase prameters(+1)\n"); | 546 | print("up: increase parameters(+1)\n"); |
| 547 | print("down: decrease prameters(-1)\n"); | 547 | print("down: decrease parameters(-1)\n"); |
| 548 | print("pgup: increase prameters(+10)\n"); | 548 | print("pgup: increase parameters(+10)\n"); |
| 549 | print("pgdown: decrease prameters(-10)\n"); | 549 | print("pgdown: decrease parameters(-10)\n"); |
| 550 | print("\nspeed = delta * max_speed * (repeat / time_to_max)\n"); | 550 | print("\nspeed = delta * max_speed * (repeat / time_to_max)\n"); |
| 551 | print("where delta: cursor="); pdec(MOUSEKEY_MOVE_DELTA); | 551 | print("where delta: cursor="); pdec(MOUSEKEY_MOVE_DELTA); |
| 552 | print(", wheel="); pdec(MOUSEKEY_WHEEL_DELTA); print("\n"); | 552 | print(", wheel="); pdec(MOUSEKEY_WHEEL_DELTA); print("\n"); |
