1
0

To prevent key stuck clear matrix array when ADB error occurs.

This commit is contained in:
tmk 2012-09-20 12:52:45 +09:00
parent 6cdfdece60
commit ab65887b1e

View File

@ -38,6 +38,7 @@ POSSIBILITY OF SUCH DAMAGE.
#ifndef ADB_H #ifndef ADB_H
#define ADB_H #define ADB_H
#include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#if !(defined(ADB_PORT) && \ #if !(defined(ADB_PORT) && \
@ -47,6 +48,10 @@ POSSIBILITY OF SUCH DAMAGE.
# error "ADB port setting is required in config.h" # error "ADB port setting is required in config.h"
#endif #endif
#define ADB_POWER 0x7F
#define ADB_CAPS 0x39
// ADB host // ADB host
void adb_host_init(void); void adb_host_init(void);
bool adb_host_psw(void); bool adb_host_psw(void);