From 6d985ca8735a27c4fba98049648892fd723d835d Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Wed, 16 Jul 2025 11:54:27 -0400 Subject: [PATCH] Communication: Fix neotc10sleepstatus_t --- include/icsneo/communication/tc10.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/icsneo/communication/tc10.h b/include/icsneo/communication/tc10.h index e7fc214..64be44c 100644 --- a/include/icsneo/communication/tc10.h +++ b/include/icsneo/communication/tc10.h @@ -33,8 +33,8 @@ typedef enum _neotc10wakestatus_t { typedef enum _neotc10sleepstatus_t { ICSNEO_TC10_NO_SLEEP_RECEIVED = 0, ICSNEO_TC10_SLEEP_RECEIVED = 1, - ICSNEO_TC10_SLEEP_FAILED = 1, - ICSNEO_TC10_SLEEP_ABORTED = 1, + ICSNEO_TC10_SLEEP_FAILED = 2, + ICSNEO_TC10_SLEEP_ABORTED = 3, } neotc10sleepstatus_t; typedef struct _neotc10status_t {