diff options
author | Drashna Jaelre <drashna@live.com> | 2020-11-02 16:17:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 00:17:05 +0000 |
commit | 38162af5a70ced55f74019b75ed1e2f1e03ff62e (patch) | |
tree | e91a123d13233a7468dbfd61601988b16d4b8dac /keyboards/ploopyco | |
parent | e680af98d2347222ba41b5affc941e6682e0ce34 (diff) | |
download | qmk_firmware-38162af5a70ced55f74019b75ed1e2f1e03ff62e.tar.gz qmk_firmware-38162af5a70ced55f74019b75ed1e2f1e03ff62e.zip |
[Keyboard] Fixes for PloopyCo mouse and readmes (#10841)
Diffstat (limited to 'keyboards/ploopyco')
-rw-r--r-- | keyboards/ploopyco/mouse/mouse.c | 2 | ||||
-rw-r--r-- | keyboards/ploopyco/mouse/readme.md | 27 | ||||
-rw-r--r-- | keyboards/ploopyco/mouse/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/ploopyco/trackball/readme.md | 2 |
4 files changed, 3 insertions, 30 deletions
diff --git a/keyboards/ploopyco/mouse/mouse.c b/keyboards/ploopyco/mouse/mouse.c index fad4807c7..7e44feaf7 100644 --- a/keyboards/ploopyco/mouse/mouse.c +++ b/keyboards/ploopyco/mouse/mouse.c | |||
@@ -140,7 +140,7 @@ __attribute__((weak)) void process_mouse(report_mouse_t* mouse_report) { | |||
140 | if (debug_mouse) dprintf("Cons] X: %d, Y: %d\n", data.dx, data.dy); | 140 | if (debug_mouse) dprintf("Cons] X: %d, Y: %d\n", data.dx, data.dy); |
141 | // dprintf("Elapsed:%u, X: %f Y: %\n", i, pgm_read_byte(firmware_data+i)); | 141 | // dprintf("Elapsed:%u, X: %f Y: %\n", i, pgm_read_byte(firmware_data+i)); |
142 | 142 | ||
143 | process_mouse_user(mouse_report, data.dx, data.dy); | 143 | process_mouse_user(mouse_report, data.dx, -data.dy); |
144 | } | 144 | } |
145 | } | 145 | } |
146 | 146 | ||
diff --git a/keyboards/ploopyco/mouse/readme.md b/keyboards/ploopyco/mouse/readme.md index a9b4b581a..fd0f932c6 100644 --- a/keyboards/ploopyco/mouse/readme.md +++ b/keyboards/ploopyco/mouse/readme.md | |||
@@ -2,9 +2,8 @@ | |||
2 | 2 | ||
3 |  | 3 |  |
4 | 4 | ||
5 | It's a DIY, QMK Powered Trackball!!!! | 5 | It's a DIY, QMK Powered Mouse!!!! |
6 | 6 | ||
7 | Everything works. However the scroll wheel has some issues and acts very odd. | ||
8 | 7 | ||
9 | * Keyboard Maintainer: [PloopyCo](https://github.com/ploopyco), [Drashna Jael're](https://github.com/drashna/), [Germ](https://github.com/germ/) | 8 | * Keyboard Maintainer: [PloopyCo](https://github.com/ploopyco), [Drashna Jael're](https://github.com/drashna/), [Germ](https://github.com/germ/) |
10 | * Hardware Supported: ATMega32u4 8MHz(3.3v) | 9 | * Hardware Supported: ATMega32u4 8MHz(3.3v) |
@@ -51,27 +50,3 @@ To configure/set your own array, there are two defines to use, `PLOOPY_DPI_OPTIO | |||
51 | The `PLOOPY_DPI_OPTIONS` array sets the values that you want to be able to cycle through, and the order they are in. The "default" define lets the firmware know which of these options is the default and should be loaded by default. | 50 | The `PLOOPY_DPI_OPTIONS` array sets the values that you want to be able to cycle through, and the order they are in. The "default" define lets the firmware know which of these options is the default and should be loaded by default. |
52 | 51 | ||
53 | The `DPI_CONFIG` macro will cycle through the values in the array, each time you hit it. And it stores this value in persistent memory, so it will load it the next time the device powers up. | 52 | The `DPI_CONFIG` macro will cycle through the values in the array, each time you hit it. And it stores this value in persistent memory, so it will load it the next time the device powers up. |
54 | |||
55 | |||
56 | # Programming QMK-DFU onto the PloopyCo Mouse | ||
57 | |||
58 | If you would rather have DFU on this board, you can use the QMK-DFU bootloader on the device. To do so, you want to run: | ||
59 | |||
60 | make ploopyco/trackball:default:production | ||
61 | |||
62 | Once you have that, you'll need to [ISP Flash](https://docs.qmk.fm/#/isp_flashing_guide) the chip with the new bootloader hex file created (or the production hex), and set the fuses: | ||
63 | |||
64 | |||
65 | | Fuse | Setting | | ||
66 | |----------|------------------| | ||
67 | | Low | `0xDF` | | ||
68 | | High | `0xD8` or `0x98` | | ||
69 | | Extended | `0xCB` | | ||
70 | |||
71 | Original (Caterina) settings: | ||
72 | |||
73 | | Fuse | Setting | | ||
74 | |----------|------------------| | ||
75 | | Low | `0xFF` | | ||
76 | | High | `0xD8` | | ||
77 | | Extended | `0xFE` | | ||
diff --git a/keyboards/ploopyco/mouse/rules.mk b/keyboards/ploopyco/mouse/rules.mk index db72641d0..863f335c8 100644 --- a/keyboards/ploopyco/mouse/rules.mk +++ b/keyboards/ploopyco/mouse/rules.mk | |||
@@ -5,7 +5,7 @@ MCU = atmega32u4 | |||
5 | F_CPU = 8000000 | 5 | F_CPU = 8000000 |
6 | 6 | ||
7 | # Bootloader selection | 7 | # Bootloader selection |
8 | BOOTLOADER = qmk-dfu | 8 | BOOTLOADER = atmel-dfu |
9 | 9 | ||
10 | # Build Options | 10 | # Build Options |
11 | # change yes to no to disable | 11 | # change yes to no to disable |
diff --git a/keyboards/ploopyco/trackball/readme.md b/keyboards/ploopyco/trackball/readme.md index a38fec21a..bd88d5c5a 100644 --- a/keyboards/ploopyco/trackball/readme.md +++ b/keyboards/ploopyco/trackball/readme.md | |||
@@ -4,8 +4,6 @@ | |||
4 | 4 | ||
5 | It's a DIY, QMK Powered Trackball!!!! | 5 | It's a DIY, QMK Powered Trackball!!!! |
6 | 6 | ||
7 | Everything works. However the scroll wheel has some issues and acts very odd. | ||
8 | |||
9 | * Keyboard Maintainer: [PloopyCo](https://github.com/ploopyco), [Drashna Jael're](https://github.com/drashna/), [Germ](https://github.com/germ/) | 7 | * Keyboard Maintainer: [PloopyCo](https://github.com/ploopyco), [Drashna Jael're](https://github.com/drashna/), [Germ](https://github.com/germ/) |
10 | * Hardware Supported: ATMega32u4 8MHz(3.3v) | 8 | * Hardware Supported: ATMega32u4 8MHz(3.3v) |
11 | * Hardware Availability: [Store](https://ploopy.co), [GitHub](https://github.com/ploopyco) | 9 | * Hardware Availability: [Store](https://ploopy.co), [GitHub](https://github.com/ploopyco) |