12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef LED_H
- #define LED_H
- #include "stdint.h"
- #define USB_LED_NUM_LOCK 0
- #define USB_LED_CAPS_LOCK 1
- #define USB_LED_SCROLL_LOCK 2
- #define USB_LED_COMPOSE 3
- #define USB_LED_KANA 4
- #ifdef __cplusplus
- extern "C" {
- #endif
- void led_set(uint8_t usb_led);
- void led_init_ports(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|