Keyboard firmwares for Atmel AVR and Cortex-M
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

controller_teensy.h 230B

12345678910
  1. #ifndef TEENSY_H
  2. #define TEENSY_H 1
  3. // for Teensy/Teensy++ 2.0
  4. #define DEBUG_LED 1
  5. #define DEBUG_LED_CONFIG (DDRD |= (1<<6))
  6. #define DEBUG_LED_ON (PORTD |= (1<<6))
  7. #define DEBUG_LED_OFF (PORTD &= ~(1<<6))
  8. #endif