Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a function mismatch that was causing LEDs to not properly initialize | TerryMathews | 2016-07-08 | 1 | -1/+1 |
| | | | | | See #430. Name of function being called at init was updated to led_init_ports(), but the call itself wasn't renamed. | ||||
* | Move return out of event if block | TerryMathews | 2016-07-08 | 1 | -26/+26 |
| | | | | | According to Jack, this makes the return case not be processed. Doesn't break anything in the firmware. | ||||
* | Fix cluepad and planck | TerryMathews | 2016-07-07 | 2 | -5/+5 |
| | |||||
* | Fix compile error on Clueboard | TerryMathews | 2016-07-07 | 1 | -2/+2 |
| | |||||
* | Create keycodes for RGB control functions | TerryMathews | 2016-07-07 | 11 | -586/+83 |
| | | | | | | | | | | | | | Moves RGB controls out of the macro function and assigns them their own keycodes: RGB_TOG (toggle on/off) RGB_MOD (mode step) RGB_HUI (increase hue) RGB_HUD (decrease hue) RGB_SAI (increase saturation) RGB_SAD (decrease saturation) RGB_VAI (increase brightness) RGB_VAD (decrease brightness) | ||||
* | Merge pull request #491 from fredizzimo/keycode_fixes | Jack Humbert | 2016-07-07 | 4 | -9/+7 |
|\ | | | | | Some fixes for keycode processing | ||||
| * | Fix IS_CONSUMER macro | Fred Sundvik | 2016-07-07 | 1 | -1/+1 |
| | | |||||
| * | Remove unhandled KC_BTLD, RESET should be used instead | Fred Sundvik | 2016-07-07 | 3 | -7/+5 |
| | | |||||
| * | Fix the range for consumer keys | Fred Sundvik | 2016-07-07 | 1 | -1/+1 |
|/ | |||||
* | fixes quantum template (actually) | Jack Humbert | 2016-07-07 | 1 | -1/+1 |
| | |||||
* | updates rgblight implementation, makes non-timer stuff compatible with audio | Jack Humbert | 2016-07-07 | 17 | -74/+160 |
| | |||||
* | Merge pull request #490 from fredizzimo/integrate_visualizer | Jack Humbert | 2016-07-07 | 26 | -39/+1626 |
|\ | | | | | Integrate visualizer for ChibiOS and Infinity Ergodox | ||||
| * | Move the visualizer_user file to keymap folder | Fred Sundvik | 2016-07-07 | 2 | -3/+8 |
| | | | | | | | | Also rename it to visualizer.c | ||||
| * | Delete lcd_backlight_hal.c | Fred Sundvik | 2016-07-07 | 3 | -87/+65 |
| | | | | | | | | | | The functionality can now be found in the infinity_erogodox.c file instead. | ||||
| * | Add suspend support to the ChibiOS visualizer | Fred Sundvik | 2016-07-07 | 1 | -0/+7 |
| | | |||||
| * | Fix the SERIAL_LINK_ENABLE macro in Visualizer | Fred Sundvik | 2016-07-07 | 1 | -5/+5 |
| | | | | | | | | Rename from USE_SERIAL_LINK -> SERIAL_LINK_ENABLE | ||||
| * | Fix visualizer crash at startup | Fred Sundvik | 2016-07-07 | 3 | -6/+5 |
| | | | | | | | | | | | | Visualizer and serial link initialized in the wrong order. The LED_ENABLED define wasn't set properly uGfx is always initialized | ||||
| * | Makefile fixes and update of Visualizer | Fred Sundvik | 2016-07-07 | 5 | -7/+29 |
| | | |||||
| * | Add Infinity Ergodox display drivers | Fred Sundvik | 2016-07-07 | 13 | -0/+992 |
| | | |||||
| * | Makefile changes and files to compile Visualizer | Fred Sundvik | 2016-07-07 | 8 | -23/+604 |
| | | |||||
| * | Add ugfx submodule | Fred Sundvik | 2016-07-07 | 2 | -0/+3 |
| | | |||||
* | | corrects quantum template | Jack Humbert | 2016-07-07 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #484 from jackhumbert/lets-split-support | Jack Humbert | 2016-07-06 | 22 | -18/+1807 |
|\ \ | |/ |/| | Add Let's Split support | ||||
| * | default keymap, reset sorted out for now, added serial to makefile | Jack Humbert | 2016-07-06 | 8 | -59/+241 |
| | | |||||
| * | Merge branch 'master' into lets-split-support | Jack Humbert | 2016-07-06 | 42 | -18/+4186 |
| |\ | |/ |/| | |||||
* | | Merge pull request #488 from fredizzimo/add_visualizer | Jack Humbert | 2016-07-06 | 13 | -0/+1717 |
|\ \ | | | | | | | Add visualizer library | ||||
| * \ | Merge commit '73d890a2c9c34b905cd5e74e7146fdd4578dcb96' into add_visualizer | Fred Sundvik | 2016-07-06 | 5 | -25/+342 |
| |\ \ | |||||
| | * | | Fix visualizer sleeping too long | Fred Sundvik | 2016-06-01 | 1 | -5/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The documentation for ugfx gEventWait wait is wrong and the function takes the time in milliseconds, instead of system ticks. This caused the the thread to sleep way too long. It also caused somewhat random sleeping behaviour as the MS2ST function overflows at around 43 seconds sleep. The event source is also now initialized correctly, so that the thread actually can be woken up by events. | ||||
| | * | | Add a nicer sine based gradient for the LEDs | Fred Sundvik | 2016-05-29 | 2 | -8/+5 |
| | | | | |||||
| | * | | Make LED visualization times configurable | Fred Sundvik | 2016-05-29 | 1 | -9/+12 |
| | | | | |||||
| | * | | Fix emulator #ifdef check | Fred Sundvik | 2016-05-29 | 2 | -2/+2 |
| | | | | |||||
| | * | | Don't include lcd_backlight_hal for emulator | Fred Sundvik | 2016-05-28 | 1 | -2/+0 |
| | | | | |||||
| | * | | Add callback function for emulator drawing | Fred Sundvik | 2016-05-18 | 2 | -1/+10 |
| | | | | |||||
| | * | | Add custom led and lcd display support | Fred Sundvik | 2016-05-18 | 2 | -3/+20 |
| | | | | |||||
| | * | | Fix crash when event listener not created | Fred Sundvik | 2016-05-17 | 1 | -1/+3 |
| | | | | |||||
| | * | | Build lcd_backlight_hal_emulator.c | Fred Sundvik | 2016-05-17 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | When the emulator is set, instead of the lcd_backlight_hal.c file. | ||||
| | * | | Enable and fix compilation of more files | Fred Sundvik | 2016-05-17 | 2 | -17/+13 |
| | | | | |||||
| | * | | Use ugfx API instead of chibios | Fred Sundvik | 2016-05-17 | 3 | -19/+27 |
| | | | | |||||
| | * | | Makefile changes to support emulator build | Fred Sundvik | 2016-05-16 | 2 | -0/+6 |
| | | | | |||||
| | * | | Merge branch 'master' into led | Fred Sundvik | 2016-05-15 | 1 | -2/+8 |
| | |\ \ | |||||
| | * | | | Fix compute_gradient_color | Fred Sundvik | 2016-05-11 | 1 | -2/+5 |
| | | | | | |||||
| | * | | | Fix a few led test animation issues | Fred Sundvik | 2016-04-30 | 1 | -7/+7 |
| | | | | | |||||
| | * | | | Fix some makefile issues, and symbol issues | Fred Sundvik | 2016-04-24 | 2 | -6/+12 |
| | | | | | |||||
| | * | | | Run mirrored keyframes for led tests as well | Fred Sundvik | 2016-04-24 | 3 | -6/+34 |
| | | | | | |||||
| | * | | | LEDS are flushed automatically | Fred Sundvik | 2016-04-24 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | After running the animation, instead of having to do it manually. This avoids duplicate flushing, and better support for cross-fades. | ||||
| | * | | | Add led crossfading | Fred Sundvik | 2016-04-24 | 2 | -6/+64 |
| | | | | | |||||
| | * | | | Add function for running the next keyframe | Fred Sundvik | 2016-04-24 | 2 | -0/+18 |
| | | | | | |||||
| | * | | | Add last and first update of frame for anims | Fred Sundvik | 2016-04-24 | 2 | -0/+11 |
| | | | | | |||||
| | * | | | Add left to right gradient keyframe for leds | Fred Sundvik | 2016-04-24 | 2 | -2/+33 |
| | | | | | |||||
| | * | | | Add fade out for the led test | Fred Sundvik | 2016-04-24 | 2 | -5/+20 |
| | | | | |