📄 u08led.h
字号:
//============================================================================
// File: U08LED.H
// Func: LED Functions for USB08
// Ver.: 1.01
// Auth: (C)2000,2001 by Oliver Thamm, MCT Elektronikladen GbR
// http://hc08web.de/usb08
// Rem.: View/Edit this File with TAB-Size=4
// Jan 02 : Adapted for CodeWarrior by Isabelle GIRAUD, Metrowerks Europe
//============================================================================
// No code in this Module - just Macros!
#define initLED() (DDRD |= 0x07)
#define toggleLED(x) (PTD ^= (1 << (x-1)))
#define offLED(x) (PTD |= (1 << (x-1)))
#define onLED(x) (PTD &= ~(1 << (x-1)))
//============================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -