From 72018e24ba218994d85ad609b01f09ed6f5f3009 Mon Sep 17 00:00:00 2001 From: janhauer Date: Fri, 30 May 2008 16:27:05 +0000 Subject: [PATCH] As agreed on last T2 core conference call: adding ENOACK error code denoting that a packet was not acknowledged --- tos/types/TinyError.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tos/types/TinyError.h b/tos/types/TinyError.h index 1f146595..a306ce5a 100644 --- a/tos/types/TinyError.h +++ b/tos/types/TinyError.h @@ -49,7 +49,8 @@ enum { ERESERVE = 8, // Reservation required before usage EALREADY = 9, // The device state you are requesting is already set ENOMEM = 10, // Memory required not available - ELAST = 10 // Last enum value + ENOACK = 11, // A packet was not acknowledged + ELAST = 11 // Last enum value }; typedef uint8_t error_t NESC_COMBINE("ecombine"); -- 2.39.2