summaryrefslogtreecommitdiff
path: root/keyboards/handwired/ortho60/ortho60.c
diff options
context:
space:
mode:
authorAndrew Kannan <andrew.kannan@klaviyo.com>2018-12-18 11:26:43 -0500
committerDrashna Jaelre <drashna@live.com>2018-12-18 08:26:43 -0800
commit20e134e6817f2927dfa146524f84335b0b7cced3 (patch)
tree8400bae1bc4a240148bbb2facd4355a4bbc8c889 /keyboards/handwired/ortho60/ortho60.c
parent398204b2a03bdac68fccb6f7592ed3ea52741ce5 (diff)
Keyboard: Adding ortho60 to handwired (#4672)
* Adding ortho60 to handwired * update to use LAYOUT_ortho_5x12 * Address PR comments about layout macros * Add default layout to info.json for configurator * Hack to xyverz layout until RGB branch is merged * Fix undef RGBDIPIN in xyverz 12x5 layout * Revert change to xvyerz's layout * Fix typo * Fix order * Revert xyverz rules.mk
Diffstat (limited to 'keyboards/handwired/ortho60/ortho60.c')
-rw-r--r--keyboards/handwired/ortho60/ortho60.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/keyboards/handwired/ortho60/ortho60.c b/keyboards/handwired/ortho60/ortho60.c
new file mode 100644
index 0000000000..32db007b6c
--- /dev/null
+++ b/keyboards/handwired/ortho60/ortho60.c
@@ -0,0 +1,32 @@
+
+#include "ortho60.h"
+
+#include "ch.h"
+#include "hal.h"
+
+#include "underglow.h"
+#include "print.h"
+#include "debug.h"
+#include "util.h"
+
+/* generic STM32F103C8T6 board */
+#ifdef BOARD_GENERIC_STM32_F103
+#define LED_ON() do { palClearPad(GPIOC, 13) ;} while (0)
+#define LED_OFF() do { palSetPad(GPIOC, 13); } while (0)
+#define LED_TGL() do { palTogglePad(GPIOC, 13); } while (0)
+#endif
+
+void matrix_init_kb(void){
+ /* MOSI pin*/
+ palSetPadMode(GPIOB, 15, PAL_MODE_STM32_ALTERNATE_PUSHPULL);
+
+ LED_ON();
+ palSetPad(GPIOA, 8);
+ wait_ms(500);
+ palClearPad(GPIOA, 8);
+ LED_OFF();
+
+ leds_init();
+
+
+}