]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/mitosis/keymaps/datagrok/config.h
several improvements for mitosis:datagrok (#1960)
[qmk_firmware.git] / keyboards / mitosis / keymaps / datagrok / config.h
1 #ifndef CONFIG_USER_H
2 #define CONFIG_USER_H
3
4 #include "../../config.h"
5
6 // I use a pro micro clocked at 8Mhz. It can't reach 1M baud, so this is the
7 // next fastest possible baud without errors. I don't notice any difference in
8 // behavior at this slower speed. (So I think it should maybe be the default,
9 // to allow a single codebase to support both available flavors of pro micro.)
10 // This requires a corresponding change to the wireless module firmware; see
11 // https://github.com/reversebias/mitosis/pull/10
12 #undef SERIAL_UART_BAUD // avoids redefinition warning
13 #define SERIAL_UART_BAUD 250000
14
15 // TODO: figure out which of these I can safely enable to reduce firmware size.
16 //#define NO_ACTION_LAYER
17 //#define NO_ACTION_TAPPING
18 //#define NO_ACTION_ONESHOT // can't; errors
19 //#define NO_ACTION_MACRO
20 //#define NO_ACTION_FUNCTION
21
22 #endif