convert 14b raw to use NG

This commit is contained in:
iceman1001 2021-04-21 18:36:21 +02:00
commit b267ee8ef5
11 changed files with 453 additions and 303 deletions

View file

@ -41,4 +41,12 @@ typedef enum ISO14B_COMMAND {
ISO14B_CLEARTRACE = (1 << 11),
} iso14b_command_t;
typedef struct {
uint16_t flags; // the ISO14B_COMMAND enum
uint32_t timeout;
size_t rawlen;
uint8_t raw[];
} PACKED iso14b_raw_cmd_t;
#endif // _ISO14B_H_