fix(cmd): resolve ioProx command ID conflict with #362

This commit is contained in:
Jozef Bernadic
2026-03-19 08:25:59 +01:00
parent 76bb091247
commit e4d70d1417
2 changed files with 4 additions and 4 deletions

View File

@@ -170,7 +170,7 @@
#define DATA_CMD_HIDPROX_GET_EMU_ID (5003)
#define DATA_CMD_VIKING_SET_EMU_ID (5004)
#define DATA_CMD_VIKING_GET_EMU_ID (5005)
#define DATA_CMD_IOPROX_SET_EMU_ID (5006)
#define DATA_CMD_IOPROX_GET_EMU_ID (5007)
#define DATA_CMD_IOPROX_SET_EMU_ID (5008)
#define DATA_CMD_IOPROX_GET_EMU_ID (5009)
#endif

View File

@@ -141,8 +141,8 @@ class Command(enum.IntEnum):
HIDPROX_GET_EMU_ID = 5003
VIKING_SET_EMU_ID = 5004
VIKING_GET_EMU_ID = 5005
IOPROX_SET_EMU_ID = 5006
IOPROX_GET_EMU_ID = 5007
IOPROX_SET_EMU_ID = 5008
IOPROX_GET_EMU_ID = 5009
@enum.unique