what is wrong with my custom_config.h? #328
-
error is misleading so i guess i need to ask...
Ive commented out the media layer as i was trying to narrow down the error.... but its still there. workflow run here: https://github.com/vekexasia/miryoku_zmk/actions/runs/9530973938/job/26271427107 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
See this line in the build output: https://github.com/vekexasia/miryoku_zmk/actions/runs/9530973938/job/26271427107#step:6:180. So, the error is here: https://github.com/vekexasia/miryoku_zmk/blob/b932442deedfac34162f6f98dbe34d695860d4c1/miryoku/custom_config.h#L11, which would indicate an issue with the In general, |
Beta Was this translation helpful? Give feedback.
See this line in the build output: https://github.com/vekexasia/miryoku_zmk/actions/runs/9530973938/job/26271427107#step:6:180. So, the error is here: https://github.com/vekexasia/miryoku_zmk/blob/b932442deedfac34162f6f98dbe34d695860d4c1/miryoku/custom_config.h#L11, which would indicate an issue with the
U_MACRO
call.In general,
custom_config.h
can only be used forcpp
macro definitions as described at https://github.com/manna-harbour/miryoku_zmk#config-file and https://github.com/manna-harbour/miryoku_zmk#customisation, not for direct additions to the keymap, which would need to be manually added to the end of https://github.com/manna-harbour/miryoku_zmk/blob/master/miryoku/miryoku.dtsi …