blob: 75a5de42ab7b4e1ca1c884b8cbf5dfc2cb65c72d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*** Program settings ***/
#define USE_AUTHENTICATION 0x01 // Program supports authentication -> Comment to disable!
#define USE_DATASLOTS 0x02 // Supports Commands >=3
/*** Commands ***/
#define AUTHENTICATE 0x01
#define CAPABILITIES 0x02
#define MY_CAPABILITIES 0x03
#define OPEN_SLOT 0x04
#define DATA_SLOT 0x05
#define CLOSE_SLOT 0x06
|