소스 검색

remove breath functions from keymap

jpetermans 8 년 전
부모
커밋
a144968807
2개의 변경된 파일7개의 추가작업 그리고 14개의 파일을 삭제
  1. 0 10
      keyboards/infinity60/keymaps/jpetermans/keymap.c
  2. 7 4
      keyboards/infinity60/keymaps/jpetermans/readme.md

+ 0 - 10
keyboards/infinity60/keymaps/jpetermans/keymap.c

@@ -23,7 +23,6 @@ enum ic60_keycodes {
   BACKLIGHT,
   BRIGHT,
   DIM,
-  BREATH,
   ALL,
   GAME,
   MODE_SINGLE,
@@ -118,7 +117,6 @@ enum macro_id {
     ACTION_LEDS_BACKLIGHT,
     ACTION_LEDS_BRIGHT,
     ACTION_LEDS_DIM,
-    ACTION_LEDS_BREATH,
     ACTION_LEDS_SINGLE,
     ACTION_LEDS_PAGE,
     ACTION_LEDS_FLASH,
@@ -175,7 +173,6 @@ const uint16_t fn_actions[] = {
     [BACKLIGHT] = ACTION_FUNCTION(ACTION_LEDS_BACKLIGHT),
     [BRIGHT] = ACTION_FUNCTION(ACTION_LEDS_BRIGHT),
     [DIM] = ACTION_FUNCTION(ACTION_LEDS_DIM),
-    [BREATH] = ACTION_FUNCTION(ACTION_LEDS_BREATH),
     [MODE_SINGLE] = ACTION_FUNCTION(ACTION_LEDS_SINGLE),
     [MODE_PAGE] = ACTION_FUNCTION(ACTION_LEDS_PAGE),
     [MODE_FLASH] = ACTION_FUNCTION(ACTION_LEDS_FLASH),
@@ -225,13 +222,6 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
       }
       break;
 
-    case ACTION_LEDS_BREATH:
-      if(record->event.pressed) {
-        msg=(TOGGLE_BREATH << 8) | 0;
-        chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);
-      }
-      break;
-
     //set led_mode for matrix_scan to toggle leds
     case ACTION_LEDS_SINGLE:
       led_mode_global = MODE_SINGLE;

+ 7 - 4
keyboards/infinity60/keymaps/jpetermans/readme.md

@@ -72,10 +72,13 @@ chMBPost(&led_mailbox, message, timeout);
 -timeout is usually TIME_IMMEDIATE
 
 An example:
-1. set the message to be sent. First byte (LSB) is the led address, and second is the message type
-    * `msg=(ON_LED << 8) | 42;`
-2. send msg to the led mailbox
-    * `chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);`
+```c
+//set the message to be sent. First byte (LSB) is the led address, and second is the message type
+msg=(ON_LED << 8) | 42;
+
+//send msg to the led mailbox
+chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);
+```
 
 Another:
 ```c