From: janhauer Date: Fri, 30 May 2008 16:27:05 +0000 (+0000) Subject: As agreed on last T2 core conference call: adding ENOACK error code denoting that... X-Git-Tag: release_tinyos_2_1_0_0~355 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=72018e24ba218994d85ad609b01f09ed6f5f3009 As agreed on last T2 core conference call: adding ENOACK error code denoting that a packet was not acknowledged --- 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");