forked from mirrors/qmk_userspace
ADD: keymap macro for human to read easier
ADD: controller.h for controller board definition(teensy) ADD: debug toggle
This commit is contained in:
parent
7a336b05ec
commit
461e0d3d8c
17 changed files with 432 additions and 257 deletions
10
controller_teensy.h
Normal file
10
controller_teensy.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#ifndef TEENSY_H
|
||||
#define TEENSY_H 1
|
||||
|
||||
// for Teensy/Teensy++ 2.0
|
||||
#define DEBUG_LED 1
|
||||
#define DEBUG_LED_CONFIG (DDRD |= (1<<6))
|
||||
#define DEBUG_LED_ON (PORTD |= (1<<6))
|
||||
#define DEBUG_LED_OFF (PORTD &= ~(1<<6))
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue