Skip to content

Commit e4d70d1

Browse files
committed
fix(cmd): resolve ioProx command ID conflict with RfidResearchGroup#362
1 parent 76bb091 commit e4d70d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

firmware/application/src/data_cmd.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
#define DATA_CMD_HIDPROX_GET_EMU_ID (5003)
171171
#define DATA_CMD_VIKING_SET_EMU_ID (5004)
172172
#define DATA_CMD_VIKING_GET_EMU_ID (5005)
173-
#define DATA_CMD_IOPROX_SET_EMU_ID (5006)
174-
#define DATA_CMD_IOPROX_GET_EMU_ID (5007)
173+
#define DATA_CMD_IOPROX_SET_EMU_ID (5008)
174+
#define DATA_CMD_IOPROX_GET_EMU_ID (5009)
175175

176176
#endif

software/script/chameleon_enum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ class Command(enum.IntEnum):
141141
HIDPROX_GET_EMU_ID = 5003
142142
VIKING_SET_EMU_ID = 5004
143143
VIKING_GET_EMU_ID = 5005
144-
IOPROX_SET_EMU_ID = 5006
145-
IOPROX_GET_EMU_ID = 5007
144+
IOPROX_SET_EMU_ID = 5008
145+
IOPROX_GET_EMU_ID = 5009
146146

147147

148148
@enum.unique

0 commit comments

Comments
 (0)