POC1.5 prototype 2 x color sensor 2 x LM75B 3 x AnalogIn 1 x accel

Dependencies:   mbed vt100

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pending.h Source File

pending.h

00001 #ifndef _PENDING_H_
00002 #define _PENDING_H_
00003 #include "mbed.h"
00004 #include "afLib.h"
00005 #include "af_attributes.h"
00006 
00007 class pending_class {
00008 public:
00009     pending_class() ;
00010     pending_class(
00011         uint8_t     messageType, 
00012         uint16_t    attrId, 
00013         uint8_t     requestId, 
00014         uint16_t    valueLen, 
00015         uint8_t     *value
00016     ) ;
00017     ~pending_class() ;
00018 
00019     request_t *request ;
00020     uint32_t submit_time ;
00021     uint32_t replied_time ;
00022 } ;
00023 #endif /* _PENDING_H_ */