mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
714 B
C
17 lines
714 B
C
#ifndef SIXLOWERROR_H
|
|
#define SIXLOWERROR_H
|
|
|
|
#define SUCCESS 0
|
|
#define SIXLOWERROR_ARRAYFULL 132 // array is full
|
|
#define SIXLOWERROR_NULLPTR 133 // null pointer error
|
|
#define SIXLOWERROR_VALUE 134 // illegal value
|
|
#define SIXLOWERROR_ADDRESS 135 // illegal address
|
|
#define SIXLOWERROR_DISPATCH 136 // lowpan dispatch unknown
|
|
#define SIXLOWERROR_FSTFRAG 137 // first lowpan fragment not received
|
|
#define SIXLOWERROR_INVFRAG 138 // invalid fragment received
|
|
#define SIXLOWERROR_SCI 139 // source context not found
|
|
#define SIXLOWERROR_DCI 140 // destination context not found
|
|
#define SIXLOWERROR_CSUM 141 // wrong checksum
|
|
|
|
#endif /* SIXLOWERROR_H*/
|