]> git.gir.st - tmk_keyboard.git/blob - controller_teensy.h
Synchronous USART support for PS/2 on V-USB stack
[tmk_keyboard.git] / controller_teensy.h
1 #ifndef TEENSY_H
2 #define TEENSY_H 1
3
4 // for Teensy/Teensy++ 2.0
5 #define DEBUG_LED 1
6 #define DEBUG_LED_CONFIG (DDRD |= (1<<6))
7 #define DEBUG_LED_ON (PORTD |= (1<<6))
8 #define DEBUG_LED_OFF (PORTD &= ~(1<<6))
9
10 #endif
Imprint / Impressum