diff options
| author | Yaotian Feng <codetector@codetector.cn> | 2019-09-25 14:52:17 -0400 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-09-25 11:52:17 -0700 |
| commit | c61d7d7cb001498e6edf09a9ebc6124c1fe6ed97 (patch) | |
| tree | 74045b30c256bed3b533b786edd2af06ee20ced0 /keyboards/ergodox_stm32/ergodox_stm32.h | |
| parent | eac4ce972d951855ee168705b46bc9421a4d4deb (diff) | |
| download | qmk_firmware-c61d7d7cb001498e6edf09a9ebc6124c1fe6ed97.tar.gz qmk_firmware-c61d7d7cb001498e6edf09a9ebc6124c1fe6ed97.zip | |
[Keyboard] Added support for ErgoDox with STM32 Microcontroller (#5398)
* Began Work On STM32 Ergodox
Changes to be committed:
new file: keyboards/ergodox_stm32/config.h
new file: keyboards/ergodox_stm32/rules.mk
* test
* Now it compile. Not linking thou
* Screw this Linker. It links now!
* Blinkly Keyboard
* bootloader test code
* Working on matrix / i2c stuff
* Progress (LED Blink)
* Progress on MCP_23017 Status Flag
* [WIP]
* update
* Works! Remeber to change back the bootloader address when the new bootloadrer is ready.
* Time to go debug the i2c
* Finally, it now works with PCB Rev 1.0.2
* updated for rev.2 pcb
* minor compilation fix
* Why when debugger is enabled then everything works.
* Remeber to call init functions.
* Update arm i2c driver to support STM32F103 series device.
* fix include once header. Replaced with #pragma once.
* complication test
Diffstat (limited to 'keyboards/ergodox_stm32/ergodox_stm32.h')
| -rw-r--r-- | keyboards/ergodox_stm32/ergodox_stm32.h | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/keyboards/ergodox_stm32/ergodox_stm32.h b/keyboards/ergodox_stm32/ergodox_stm32.h new file mode 100644 index 000000000..be1c2e9c3 --- /dev/null +++ b/keyboards/ergodox_stm32/ergodox_stm32.h | |||
| @@ -0,0 +1,114 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "quantum.h" | ||
| 4 | #include "action_layer.h" | ||
| 5 | #include <stdint.h> | ||
| 6 | #include <stdbool.h> | ||
| 7 | #include "hal.h" | ||
| 8 | |||
| 9 | // #define I2C_ADDR 0b01000000 | ||
| 10 | #define I2C_ADDR 0b01000000 | ||
| 11 | #define I2C_IODIRA 0x0 | ||
| 12 | #define I2C_IODIRB 0x1 | ||
| 13 | #define I2C_GPIOA 0x12 | ||
| 14 | #define I2C_GPIOB 0x13 | ||
| 15 | #define I2C_OLATA 0x14 | ||
| 16 | #define I2C_OLATB 0x15 | ||
| 17 | #define I2C_GPPUA 0x0C | ||
| 18 | #define I2C_GPPUB 0x0D | ||
| 19 | |||
| 20 | inline void ergodox_board_led_1_on(void) { palSetPad(GPIOA, 10); } | ||
| 21 | inline void ergodox_board_led_2_on(void) { palSetPad(GPIOA, 9); } | ||
| 22 | inline void ergodox_board_led_3_on(void) { palSetPad(GPIOA, 8); } | ||
| 23 | inline void ergodox_board_led_1_off(void) { palClearPad(GPIOA, 10); } | ||
| 24 | inline void ergodox_board_led_2_off(void) { palClearPad(GPIOA, 9); } | ||
| 25 | inline void ergodox_board_led_3_off(void) { palClearPad(GPIOA, 8); } | ||
| 26 | inline void ergodox_led_all_off(void) | ||
| 27 | { | ||
| 28 | palClearPad(GPIOA, 10); | ||
| 29 | palClearPad(GPIOA, 9); | ||
| 30 | palClearPad(GPIOA, 8); | ||
| 31 | } | ||
| 32 | |||
| 33 | extern volatile int mcp23017_status; | ||
| 34 | |||
| 35 | uint8_t init_mcp23017(void); | ||
| 36 | |||
| 37 | void ergodox_blink_all_leds(void); | ||
| 38 | |||
| 39 | /* | ||
| 40 | * LEFT HAND: LINES 115-122 | ||
| 41 | * RIGHT HAND: LINES 124-131 | ||
| 42 | */ | ||
| 43 | #define LAYOUT_ergodox( \ | ||
| 44 | \ | ||
| 45 | k00, k01, k02, k03, k04, k05, k06, \ | ||
| 46 | k10, k11, k12, k13, k14, k15, k16, \ | ||
| 47 | k20, k21, k22, k23, k24, k25, \ | ||
| 48 | k30, k31, k32, k33, k34, k35, k36, \ | ||
| 49 | k40, k41, k42, k43, k44, \ | ||
| 50 | k55, k56, \ | ||
| 51 | k54, \ | ||
| 52 | k53, k52, k51, \ | ||
| 53 | \ | ||
| 54 | k07, k08, k09, k0A, k0B, k0C, k0D, \ | ||
| 55 | k17, k18, k19, k1A, k1B, k1C, k1D, \ | ||
| 56 | k28, k29, k2A, k2B, k2C, k2D, \ | ||
| 57 | k37, k38, k39, k3A, k3B, k3C, k3D, \ | ||
| 58 | k49, k4A, k4B, k4C, k4D, \ | ||
| 59 | k57, k58, \ | ||
| 60 | k59, \ | ||
| 61 | k5C, k5B, k5A) \ | ||
| 62 | \ | ||
| 63 | /* matrix positions */ \ | ||
| 64 | { \ | ||
| 65 | {k00, k10, k20, k30, k40, KC_NO}, \ | ||
| 66 | {k01, k11, k21, k31, k41, k51}, \ | ||
| 67 | {k02, k12, k22, k32, k42, k52}, \ | ||
| 68 | {k03, k13, k23, k33, k43, k53}, \ | ||
| 69 | {k04, k14, k24, k34, k44, k54}, \ | ||
| 70 | {k05, k15, k25, k35, KC_NO, k55}, \ | ||
| 71 | {k06, k16, KC_NO, k36, KC_NO, k56}, \ | ||
| 72 | \ | ||
| 73 | {k07, k17, KC_NO, k37, KC_NO, k57}, \ | ||
| 74 | {k08, k18, k28, k38, KC_NO, k58}, \ | ||
| 75 | {k09, k19, k29, k39, k49, k59}, \ | ||
| 76 | {k0A, k1A, k2A, k3A, k4A, k5A}, \ | ||
| 77 | {k0B, k1B, k2B, k3B, k4B, k5B}, \ | ||
| 78 | {k0C, k1C, k2C, k3C, k4C, k5C}, \ | ||
| 79 | { \ | ||
| 80 | k0D, k1D, k2D, k3D, k4D, KC_NO \ | ||
| 81 | } \ | ||
| 82 | } | ||
| 83 | |||
| 84 | /* ---------- LEFT HAND ----------- ---------- RIGHT HAND ---------- */ | ||
| 85 | #define LAYOUT_ergodox_pretty( \ | ||
| 86 | L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \ | ||
| 87 | L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, \ | ||
| 88 | L20, L21, L22, L23, L24, L25, R21, R22, R23, R24, R25, R26, \ | ||
| 89 | L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36, \ | ||
| 90 | L40, L41, L42, L43, L44, R42, R43, R44, R45, R46, \ | ||
| 91 | L55, L56, R50, R51, \ | ||
| 92 | L54, R52, \ | ||
| 93 | L53, L52, L51, R55, R54, R53) \ | ||
| 94 | \ | ||
| 95 | /* matrix positions */ \ | ||
| 96 | { \ | ||
| 97 | {L00, L10, L20, L30, L40, KC_NO}, \ | ||
| 98 | {L01, L11, L21, L31, L41, L51}, \ | ||
| 99 | {L02, L12, L22, L32, L42, L52}, \ | ||
| 100 | {L03, L13, L23, L33, L43, L53}, \ | ||
| 101 | {L04, L14, L24, L34, L44, L54}, \ | ||
| 102 | {L05, L15, L25, L35, KC_NO, L55}, \ | ||
| 103 | {L06, L16, KC_NO, L36, KC_NO, L56}, \ | ||
| 104 | \ | ||
| 105 | {R00, R10, KC_NO, R30, KC_NO, R50}, \ | ||
| 106 | {R01, R11, R21, R31, KC_NO, R51}, \ | ||
| 107 | {R02, R12, R22, R32, R42, R52}, \ | ||
| 108 | {R03, R13, R23, R33, R43, R53}, \ | ||
| 109 | {R04, R14, R24, R34, R44, R54}, \ | ||
| 110 | {R05, R15, R25, R35, R45, R55}, \ | ||
| 111 | { \ | ||
| 112 | R06, R16, R26, R36, R46, KC_NO \ | ||
| 113 | } \ | ||
| 114 | } | ||
