]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - keyboards/wilba_tech/wt_main.c
Usbasploader bootloader option addition (#6304)
[qmk_firmware.git] / keyboards / wilba_tech / wt_main.c
index 23f07d7eb144198f7141586f0df87e4de2c5375b..f8056839a7b2a3adcafb74838cc579622c3eac88 100644 (file)
  */
 
 #include "quantum.h"
+#ifdef WT_MONO_BACKLIGHT
 #include "keyboards/wilba_tech/wt_mono_backlight.h"
+#endif
 #include "keyboards/zeal60/zeal60_api.h" // Temporary hack
+#include "keyboards/zeal60/zeal60_keycodes.h" // Temporary hack
 
 #include "raw_hid.h"
 #include "dynamic_keymap.h"
@@ -91,22 +94,57 @@ void raw_hid_receive( uint8_t *data, uint8_t length )
                        dynamic_keymap_reset();
                        break;
                }
-#endif // DYNAMIC_KEYMAP_ENABLE
-               case id_backlight_config_set_value:
+               case id_dynamic_keymap_macro_get_count:
+               {
+                       command_data[0] = dynamic_keymap_macro_get_count();
+                       break;
+               }
+               case id_dynamic_keymap_macro_get_buffer_size:
+               {
+                       uint16_t size = dynamic_keymap_macro_get_buffer_size();
+                       command_data[0] = size >> 8;
+                       command_data[1] = size & 0xFF;
+                       break;
+               }
+               case id_dynamic_keymap_macro_get_buffer:
+               {
+                       uint16_t offset = ( command_data[0] << 8 ) | command_data[1];
+                       uint16_t size = command_data[2]; // size <= 28
+                       dynamic_keymap_macro_get_buffer( offset, size, &command_data[3] );
+                       break;
+               }
+               case id_dynamic_keymap_macro_set_buffer:
+               {
+                       uint16_t offset = ( command_data[0] << 8 ) | command_data[1];
+                       uint16_t size = command_data[2]; // size <= 28
+                       dynamic_keymap_macro_set_buffer( offset, size, &command_data[3] );
+                       break;
+               }
+               case id_dynamic_keymap_macro_reset:
+               {
+                       dynamic_keymap_macro_reset();
+                       break;
+               }
+               case id_dynamic_keymap_get_layer_count:
                {
-                       //backlight_config_set_value(command_data);
+                       command_data[0] = dynamic_keymap_get_layer_count();
                        break;
                }
-               case id_backlight_config_get_value:
+               case id_dynamic_keymap_get_buffer:
                {
-                       //backlight_config_get_value(command_data);
+                       uint16_t offset = ( command_data[0] << 8 ) | command_data[1];
+                       uint16_t size = command_data[2]; // size <= 28
+                       dynamic_keymap_get_buffer( offset, size, &command_data[3] );
                        break;
                }
-               case id_backlight_config_save:
+               case id_dynamic_keymap_set_buffer:
                {
-                       //backlight_config_save();
+                       uint16_t offset = ( command_data[0] << 8 ) | command_data[1];
+                       uint16_t size = command_data[2]; // size <= 28
+                       dynamic_keymap_set_buffer( offset, size, &command_data[3] );
                        break;
                }
+#endif // DYNAMIC_KEYMAP_ENABLE
                case id_eeprom_reset:
                {
                        eeprom_reset();
@@ -151,16 +189,20 @@ void main_init(void)
 #ifdef DYNAMIC_KEYMAP_ENABLE
                // This resets the keymaps in EEPROM to what is in flash.
                dynamic_keymap_reset();
+               // This resets the macros in EEPROM to nothing.
+               dynamic_keymap_macro_reset();
 #endif
                // Save the magic number last, in case saving was interrupted
                eeprom_set_valid(true);
        }
 
+#ifdef WT_MONO_BACKLIGHT
        // Initialize LED drivers for backlight.
        backlight_init_drivers();
 
        backlight_timer_init();
        backlight_timer_enable();
+#endif
 }
 
 void bootmagic_lite(void)
@@ -171,8 +213,8 @@ void bootmagic_lite(void)
 
        // We need multiple scans because debouncing can't be turned off.
        matrix_scan();
-       wait_ms(DEBOUNCING_DELAY);
-       wait_ms(DEBOUNCING_DELAY);
+       wait_ms(DEBOUNCE);
+       wait_ms(DEBOUNCE);
        matrix_scan();
 
        // If the Esc (matrix 0,0) is held down on power up,
@@ -192,7 +234,49 @@ void matrix_init_kb(void)
 
 void matrix_scan_kb(void)
 {
+#ifdef WT_MONO_BACKLIGHT
        // This only updates the LED driver buffers if something has changed.
        backlight_update_pwm_buffers();
+#endif
        matrix_scan_user();
 }
+
+bool process_record_kb(uint16_t keycode, keyrecord_t *record)
+{
+       switch(keycode) {
+               case FN_MO13:
+                       if (record->event.pressed) {
+                               layer_on(1);
+                               update_tri_layer(1, 2, 3);
+                       } else {
+                               layer_off(1);
+                               update_tri_layer(1, 2, 3);
+                       }
+                       return false;
+                       break;
+               case FN_MO23:
+                       if (record->event.pressed) {
+                               layer_on(2);
+                               update_tri_layer(1, 2, 3);
+                       } else {
+                               layer_off(2);
+                               update_tri_layer(1, 2, 3);
+                       }
+                       return false;
+                       break;
+       }
+
+#ifdef DYNAMIC_KEYMAP_ENABLE
+       // Handle macros
+       if (record->event.pressed) {
+               if ( keycode >= MACRO00 && keycode <= MACRO15 )
+               {
+                       uint8_t id = keycode - MACRO00;
+                       dynamic_keymap_macro_send(id);
+                       return false;
+               }
+       }
+#endif //DYNAMIC_KEYMAP_ENABLE
+
+       return process_record_user(keycode, record);
+}