mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 16:37:58 +06:00
461e0d3d8c
ADD: controller.h for controller board definition(teensy) ADD: debug toggle
11 lines
230 B
C
11 lines
230 B
C
#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
|