Browse Source

Bigger combo index (#9318)

* Add change log

* Change combo index from uint8_t to uint16_t
pull/10202/head
Pete Sevander 3 years ago
committed by James Young
parent
commit
b0335b2731
16 changed files with 28 additions and 17 deletions
  1. +11
    -0
      docs/ChangeLog/20200829/PR9318.md
  2. +1
    -1
      keyboards/ashpil/modelm_usbc/keymaps/ashpil/keymap.c
  3. +1
    -1
      keyboards/converter/usb_usb/keymaps/chriskopher/combo.c
  4. +1
    -1
      keyboards/converter/usb_usb/keymaps/narze/keymap.c
  5. +1
    -1
      keyboards/ergodox_infinity/keymaps/narze/keymap.c
  6. +1
    -1
      keyboards/gboards/g/keymap_combo.h
  7. +1
    -1
      keyboards/maxr1998/pulse4k/pulse4k.c
  8. +1
    -1
      keyboards/minidox/keymaps/rsthd_combos/keymap.c
  9. +1
    -1
      keyboards/planck/keymaps/narze/keymap.c
  10. +1
    -1
      keyboards/xd75/keymaps/4sstylz/keymap.c
  11. +3
    -3
      quantum/process_keycode/process_combo.c
  12. +1
    -1
      quantum/process_keycode/process_combo.h
  13. +1
    -1
      users/issmirnov/issmirnov.c
  14. +1
    -1
      users/kuchosauronad0/combo.c
  15. +1
    -1
      users/ninjonas/combos.c
  16. +1
    -1
      users/yet-another-developer/combo.c

+ 11
- 0
docs/ChangeLog/20200829/PR9318.md View File

@ -0,0 +1,11 @@
### Bigger integer type when looping over combos.
[#9318](https://github.com/qmk/qmk_firmware/pull/9318)
Changes `uint8_t` to `uint16_t` so it is possible have more than 256 combos.
Any fork that uses `process_combo_event` needs to update the function's first argument to `uint16_t`.
| Old function | New Function |
|---------------------------------------------------------------|----------------------------------------------------------------|
| `void process_combo_event(uint8_t combo_index, bool pressed)` | `void process_combo_event(uint16_t combo_index, bool pressed)` |

+ 1
- 1
keyboards/ashpil/modelm_usbc/keymaps/ashpil/keymap.c View File

@ -36,7 +36,7 @@ combo_t key_combos[COMBO_COUNT] = {
[CTRL_PAUS_RESET] = COMBO_ACTION(reset_combo),
};
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
switch(combo_index) {
case CTRL_PAUS_RESET:
if (pressed) {


+ 1
- 1
keyboards/converter/usb_usb/keymaps/chriskopher/combo.c View File

@ -33,7 +33,7 @@ combo_t key_combos[COMBO_COUNT] = {
};
// Called after a combo event is triggered
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
switch (combo_index) {
case SD_LAYER_COMBO:
if (pressed) {


+ 1
- 1
keyboards/converter/usb_usb/keymaps/narze/keymap.c View File

@ -153,7 +153,7 @@ void matrix_setup(void) {
set_superduper_key_combos();
}
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
if (pressed) {
switch(combo_index) {
case CB_SUPERDUPER:


+ 1
- 1
keyboards/ergodox_infinity/keymaps/narze/keymap.c View File

@ -683,7 +683,7 @@ void matrix_scan_user(void) {
// Combos
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
if (pressed) {
switch(combo_index) {
case CB_SUPERDUPER:


+ 1
- 1
keyboards/gboards/g/keymap_combo.h View File

@ -60,7 +60,7 @@ int COMBO_LEN = sizeof(key_combos) / sizeof(key_combos[0]);
#define COMB BLANK
#define SUBS A_ACTI
#define TOGG A_TOGG
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
switch (combo_index) {
#include "combos.def"
}


+ 1
- 1
keyboards/maxr1998/pulse4k/pulse4k.c View File

@ -30,7 +30,7 @@ combo_t key_combos[COMBO_COUNT] = {
bool led_adjust_active = false;
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
if (combo_index == LED_ADJUST) {
led_adjust_active = pressed;
}


+ 1
- 1
keyboards/minidox/keymaps/rsthd_combos/keymap.c View File

@ -45,7 +45,7 @@ combo_t key_combos[COMBO_COUNT] = {
[BOT_CTR] = COMBO_ACTION(bx_combo),
};
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
switch(combo_index) {
case MID_R:
if (pressed) {


+ 1
- 1
keyboards/planck/keymaps/narze/keymap.c View File

@ -357,7 +357,7 @@ void matrix_setup(void) {
void matrix_scan_user(void) {
}
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
if (pressed) {
switch(combo_index) {
case CB_SUPERDUPER:


+ 1
- 1
keyboards/xd75/keymaps/4sstylz/keymap.c View File

@ -129,7 +129,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
}
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
switch(combo_index) {
case SCR_LCK:
if (pressed) {


+ 3
- 3
quantum/process_keycode/process_combo.c View File

@ -24,10 +24,10 @@ extern combo_t key_combos[];
extern int COMBO_LEN;
#endif
__attribute__((weak)) void process_combo_event(uint8_t combo_index, bool pressed) {}
__attribute__((weak)) void process_combo_event(uint16_t combo_index, bool pressed) {}
static uint16_t timer = 0;
static uint8_t current_combo_index = 0;
static uint16_t current_combo_index = 0;
static bool drop_buffer = false;
static bool is_active = false;
static bool b_combo_enable = true; // defaults to enabled
@ -83,7 +83,7 @@ static inline void dump_key_buffer(bool emit) {
static bool process_single_combo(combo_t *combo, uint16_t keycode, keyrecord_t *record) {
uint8_t count = 0;
uint8_t index = -1;
uint16_t index = -1;
/* Find index of keycode and number of combo keys */
for (const uint16_t *keys = combo->keys;; ++count) {
uint16_t key = pgm_read_word(&keys[count]);


+ 1
- 1
quantum/process_keycode/process_combo.h View File

@ -56,7 +56,7 @@ typedef struct {
bool process_combo(uint16_t keycode, keyrecord_t *record);
void matrix_scan_combo(void);
void process_combo_event(uint8_t combo_index, bool pressed);
void process_combo_event(uint16_t combo_index, bool pressed);
void combo_enable(void);
void combo_disable(void);


+ 1
- 1
users/issmirnov/issmirnov.c View File

@ -26,7 +26,7 @@ combo_t key_combos[COMBO_COUNT] = {
};
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
switch(combo_index) {
case XC_COPY:
if (pressed) {


+ 1
- 1
users/kuchosauronad0/combo.c View File

@ -1,6 +1,6 @@
#include "combo.h"
void process_combo_event(uint8_t combo_index, bool pressed){
void process_combo_event(uint16_t combo_index, bool pressed){
switch(combo_index) {
case ZV_COPY:
if (pressed) {


+ 1
- 1
users/ninjonas/combos.c View File

@ -23,7 +23,7 @@ combo_t key_combos[COMBO_COUNT] = {
[XV_PASTE] = COMBO_ACTION(paste_combo),
};
void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
switch(combo_index) {
case EQ_QUIT:
if (pressed) {


+ 1
- 1
users/yet-another-developer/combo.c View File

@ -1,6 +1,6 @@
#include "combo.h"
void process_combo_event(uint8_t combo_index, bool pressed){
void process_combo_event(uint16_t combo_index, bool pressed){
switch(combo_index) {
case ZV_COPY:
if (pressed) {


Loading…
Cancel
Save