Merge pull request #96 from jkutianski/dynamic_macros

Add dynamic macros keycodes to ensure test
This commit is contained in:
xyzz 2021-12-21 23:31:16 -05:00 committed by GitHub
commit c60c34cffb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -4,8 +4,6 @@ on:
push:
workflow_dispatch:
pull_request:
paths:
- 'keyboards/**'
jobs:
build:

View file

@ -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, "");