diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-07-09 00:41:15 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-07-29 20:48:20 +0300 |
commit | e01b4c3fd9a7b66276ffd22dcac25d569d7bb7ff (patch) | |
tree | bb5dcd6b71353aebfd93da01d740b527c4cdca82 /tmk_core/common | |
parent | b0376687f4cc2dc0b5ffd89f3bcb33c873b1f4d3 (diff) |
Most ergodox keymaps compiles on Infinity
There are linker errors due to missing led funcitonality though
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/print.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tmk_core/common/print.h b/tmk_core/common/print.h index 0368bcd4a1..a1352527fc 100644 --- a/tmk_core/common/print.h +++ b/tmk_core/common/print.h @@ -29,7 +29,9 @@ #include <stdbool.h> #include "util.h" - +#if defined(PROTOCOL_CHIBIOS) +#define PSTR(x) x +#endif #ifndef NO_PRINT |