summaryrefslogtreecommitdiffstats
path: root/keyboards/aeboards/ext65/rev2/rev2.c
diff options
context:
space:
mode:
authorXelus22 <17491233+Xelus22@users.noreply.github.com>2020-08-13 10:24:40 +1000
committerGitHub <noreply@github.com>2020-08-12 17:24:40 -0700
commitc957eed04b302459304f08a0d1fd43f7602da94e (patch)
tree01ed5e05c91e8d4b4d069dcadd6553f33d22b258 /keyboards/aeboards/ext65/rev2/rev2.c
parentf1299f32928210b6d7d2abe999e502244dcafd69 (diff)
[Keyboard] AEboards Ext65 rev2 (#9482)
* ext65rev2 initial * open drain change and config * pwm * pwm streams * spi * ws2812 spi * oled * enable sleep * keymap and dissable oled * readd oleds * nooled * led_update_kb revised * update and remove board specific files and add to ext65rev2.c * Update OLED usb status * Update keyboards led state * Layer state set kb * Return state * Update keyboards led state * Update OLED usb status * merge master and merge rev folders * add readme * move board_init to only if OLED is enabled * update readme * update rules.mk * Remove OLED from rules.mk * Update config.h * show AEBoards * Update keyboards/aeboards/ext65/rev2/rules.mk
Diffstat (limited to 'keyboards/aeboards/ext65/rev2/rev2.c')
-rw-r--r--keyboards/aeboards/ext65/rev2/rev2.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/keyboards/aeboards/ext65/rev2/rev2.c b/keyboards/aeboards/ext65/rev2/rev2.c
new file mode 100644
index 0000000000..35e88a8b19
--- /dev/null
+++ b/keyboards/aeboards/ext65/rev2/rev2.c
@@ -0,0 +1,45 @@
+#include "rev2.h"
+
+#ifdef OLED_DRIVER_ENABLE
+void board_init(void) {
+ SYSCFG->CFGR1 |= SYSCFG_CFGR1_I2C1_DMA_RMP;
+ SYSCFG->CFGR1 &= ~(SYSCFG_CFGR1_SPI2_DMA_RMP);
+}
+
+oled_rotation_t oled_init_user(oled_rotation_t rotation) {
+ return OLED_ROTATION_90; // rotates the display 90 degrees
+}
+
+#else
+
+void keyboard_pre_init_user(void) {
+ // Call the keyboard pre init code.
+ // Set our LED pins as output
+ setPinOutput(B4);
+ setPinOutput(B3);
+ setPinOutput(A15);
+ setPinOutput(A14);
+}
+
+bool led_update_kb(led_t led_state) {
+ bool res = led_update_user(led_state);
+ if(res) {
+ writePin(B4, led_state.num_lock);
+ writePin(B3, led_state.caps_lock);
+ writePin(A15, led_state.scroll_lock);
+ }
+ return res;
+}
+
+layer_state_t layer_state_set_kb(layer_state_t state) {
+ switch (get_highest_layer(state)) {
+ case 1:
+ writePinHigh(A14);
+ break;
+ default: // for any other layers, or the default layer
+ writePinLow(A14);
+ break;
+ }
+ return layer_state_set_user(state);
+}
+#endif