Merge pull request #96 from jkutianski/dynamic_macros
Add dynamic macros keycodes to ensure test
This commit is contained in:
commit
c60c34cffb
2 changed files with 7 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -4,8 +4,6 @@ on:
|
|||
push:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
paths:
|
||||
- 'keyboards/**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -339,3 +339,10 @@ _Static_assert(MACRO12 == 0x5F1E, "");
|
|||
_Static_assert(MACRO13 == 0x5F1F, "");
|
||||
_Static_assert(MACRO14 == 0x5F20, "");
|
||||
_Static_assert(MACRO15 == 0x5F21, "");
|
||||
|
||||
/* KEYCODES_DYNAMIC_MACRO */
|
||||
_Static_assert(DYN_REC_START1 == 0x5D03, "");
|
||||
_Static_assert(DYN_REC_START2 == 0x5D04, "");
|
||||
_Static_assert(DYN_REC_STOP == 0x5D05, "");
|
||||
_Static_assert(DYN_MACRO_PLAY1 == 0x5D06, "");
|
||||
_Static_assert(DYN_MACRO_PLAY2 == 0x5D07, "");
|
||||
|
|
Loading…
Reference in a new issue