2011-01-12 17:26:33 +01:00
|
|
|
#ifndef ADB_H
|
|
|
|
#define ADB_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#if !(defined(ADB_PORT) && \
|
|
|
|
defined(ADB_PIN) && \
|
|
|
|
defined(ADB_DDR) && \
|
|
|
|
defined(ADB_DATA_BIT))
|
|
|
|
# error "ADB port setting is required in config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ADB host
|
|
|
|
void adb_host_init(void);
|
|
|
|
bool adb_host_psw(void);
|
|
|
|
uint16_t adb_host_kbd_recv(void);
|
2011-01-13 14:46:57 +01:00
|
|
|
void adb_host_kbd_led(uint8_t led);
|
2011-01-12 17:26:33 +01:00
|
|
|
|
|
|
|
#endif
|