Commit graph

22 commits

Author SHA1 Message Date
HorrorTroll
5d45936947 [Keyboard] Refactor Caticorn PCB (#21644) 2023-08-13 23:12:59 -07:00
HorrorTroll
272f3844f9 Refactor entire Handwired K552 keyboard (#18066) 2022-12-30 12:04:01 +11:00
HorrorTroll
9c0b4fe0a9 [Keyboard] Add keyboard Caticorn (#19138) 2022-11-30 15:30:41 -08:00
Wilba
a3b6f55c2d VIA V3 - The Custom UI Update (#18222) 2022-11-10 07:46:44 +11:00
QMK Bot
61d9a7177a Merge remote-tracking branch 'origin/master' into develop 2022-11-08 16:22:55 +00:00
HorrorTroll
235741246b [Keyboard] Refactor chinese PCB folder (#18923) 2022-11-08 08:22:38 -08:00
Nick Brassel
ea2c5bb36b Reworked backlight keycodes. (#18961)
Co-authored-by: Ryan <fauxpark@gmail.com>
2022-11-06 08:11:59 +11:00
QMK Bot
1af0d4b23e Merge remote-tracking branch 'origin/master' into develop 2022-10-21 05:02:49 +00:00
HorrorTroll
4940b8de35 Update Black E6.5 keymap issues on QMK Configurator (#18794) 2022-10-20 22:02:11 -07:00
Ryan
ab0ad878c6 Remove legacy keycodes, part 5 (#18710)
* `KC_SLCK` -> `KC_SCRL`
* `KC_NLCK` -> `KC_NUM`
2022-10-15 22:29:43 +01:00
Drashna Jaelre
c1c15b0fa7 Fix Per Key LED Indicator Callbacks (#18450)
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Co-authored-by: Nick Brassel <nick@tzarc.org>
2022-10-04 15:24:22 -07:00
Ryan
58b26de213 Change DRIVER_LED_COUNT to {LED,RGB}_MATRIX_LED_COUNT (#18399) 2022-09-23 22:46:23 +10:00
Jeff Epler
14526dd8d0 Use a macro to compute the size of arrays at compile time (#18044)
* Add ARRAY_SIZE and CEILING utility macros

* Apply a coccinelle patch to use ARRAY_SIZE

* fix up some straggling items

* Fix 'make test:secure'

* Enhance ARRAY_SIZE macro to reject acting on pointers

The previous definition would not produce a diagnostic for
```
int *p;
size_t num_elem = ARRAY_SIZE(p)
```
but the new one will.

* explicitly get definition of ARRAY_SIZE

* Convert to ARRAY_SIZE when const is involved

The following spatch finds additional instances where the array is
const and the division is by the size of the type, not the size of
the first element:
```
@ rule5a using "empty.iso" @
type T;
const T[] E;
@@

- (sizeof(E)/sizeof(T))
+ ARRAY_SIZE(E)

@ rule6a using "empty.iso" @
type T;
const T[] E;
@@

- sizeof(E)/sizeof(T)
+ ARRAY_SIZE(E)
```

* New instances of ARRAY_SIZE added since initial spatch run

* Use `ARRAY_SIZE` in docs (found by grep)

* Manually use ARRAY_SIZE

hs_set is expected to be the same size as uint16_t, though it's made
of two 8-bit integers

* Just like char, sizeof(uint8_t) is guaranteed to be 1

This is at least true on any plausible system where qmk is actually used.

Per my understanding it's universally true, assuming that uint8_t exists:
https://stackoverflow.com/questions/48655310/can-i-assume-that-sizeofuint8-t-1

* Run qmk-format on core C files touched in this branch

Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
2022-08-30 10:20:04 +02:00
HorrorTroll
af02052931 [Keyboard] Add Lemon40 keyboard (#17357) 2022-06-12 11:30:08 -07:00
Joel Challis
1b3224d576 RESET -> QK_BOOT default keymaps (#17037) 2022-05-15 20:26:27 +01:00
HorrorTroll
c7db3ce6a5 [Keyboard] Move M63 RGB into maker folder (#17061) 2022-05-11 22:51:37 -07:00
HorrorTroll
10a0cbb78d [Keyboard] Add Black E6.5 keyboard (#16807) 2022-05-11 21:47:41 -07:00
HorrorTroll
cf6872fbf6 [Keyboard] Add Paws 60 keyboard (#16204) 2022-02-05 09:01:58 -08:00
HorrorTroll
dae2c6ef85 [Keyboard] Fixed RGB number for Devil68 Pro (#16003) 2022-01-23 12:37:17 -08:00
HorrorTroll
7adee416f0 [Keyboard] Add M63 RGB keyboard (#15887) 2022-01-21 22:16:16 -08:00
HorrorTroll
3fdc3f25e5 [Keyboard] Move Handwired K552 into my folder name (#15973) 2022-01-21 21:31:27 -08:00
HorrorTroll
318df6a72e [Keyboard] Add Devil68 Pro (#15820) 2022-01-14 23:26:26 -08:00