|
@@ -19,38 +19,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
#include <stdint.h>
|
|
|
#include <stdbool.h>
|
|
|
+#include "platform_deps.h"
|
|
|
#include "action.h"
|
|
|
-#if defined(__AVR__)
|
|
|
-# include <avr/pgmspace.h>
|
|
|
-#elif defined PROTOCOL_CHIBIOS
|
|
|
-// We need to ensure that chibios is include before redefining reset
|
|
|
-# include <ch.h>
|
|
|
-#endif
|
|
|
#include "keycode.h"
|
|
|
#include "report.h"
|
|
|
#include "host.h"
|
|
|
-// #include "print.h"
|
|
|
#include "debug.h"
|
|
|
#include "keycode_config.h"
|
|
|
#include "gpio.h" // for pin_t
|
|
|
|
|
|
-// ChibiOS uses RESET in its FlagStatus enumeration
|
|
|
-// Therefore define it as QK_BOOTLOADER here, to avoid name collision
|
|
|
-#if defined(PROTOCOL_CHIBIOS)
|
|
|
-# define RESET QK_BOOTLOADER
|
|
|
-#endif
|
|
|
-// Gross hack, remove me and change RESET keycode to QK_BOOT
|
|
|
-#if defined(__AVR_AT90USB647__) || defined(__AVR_AT90USB1287__)
|
|
|
-# undef RESET
|
|
|
-#endif
|
|
|
-
|
|
|
#include "quantum_keycodes.h"
|
|
|
|
|
|
-// Gross hack, remove me and change RESET keycode to QK_BOOT
|
|
|
-#if defined(MCU_RP)
|
|
|
-# undef RESET
|
|
|
-#endif
|
|
|
-
|
|
|
// translates key to keycode
|
|
|
uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
|
|
|
|