La Suno / Mbed 2 deprecated afero_poc15_180403R

Dependencies:   UniGraphic mbed vt100

Committer:
Rhyme
Date:
Tue Apr 24 08:58:33 2018 +0000
Revision:
0:0b6732b53bf4
Temporary Connector Reversed Version

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Rhyme 0:0b6732b53bf4 1 #ifndef _PENDING_H_
Rhyme 0:0b6732b53bf4 2 #define _PENDING_H_
Rhyme 0:0b6732b53bf4 3 #include "mbed.h"
Rhyme 0:0b6732b53bf4 4 #include "afLib.h"
Rhyme 0:0b6732b53bf4 5 #include "af_attributes.h"
Rhyme 0:0b6732b53bf4 6
Rhyme 0:0b6732b53bf4 7 class pending_class {
Rhyme 0:0b6732b53bf4 8 public:
Rhyme 0:0b6732b53bf4 9 pending_class() ;
Rhyme 0:0b6732b53bf4 10 pending_class(
Rhyme 0:0b6732b53bf4 11 uint8_t messageType,
Rhyme 0:0b6732b53bf4 12 uint16_t attrId,
Rhyme 0:0b6732b53bf4 13 uint8_t requestId,
Rhyme 0:0b6732b53bf4 14 uint16_t valueLen,
Rhyme 0:0b6732b53bf4 15 uint8_t *value
Rhyme 0:0b6732b53bf4 16 ) ;
Rhyme 0:0b6732b53bf4 17 ~pending_class() ;
Rhyme 0:0b6732b53bf4 18
Rhyme 0:0b6732b53bf4 19 request_t *request ;
Rhyme 0:0b6732b53bf4 20 uint32_t submit_time ;
Rhyme 0:0b6732b53bf4 21 uint32_t replied_time ;
Rhyme 0:0b6732b53bf4 22 } ;
Rhyme 0:0b6732b53bf4 23 #endif /* _PENDING_H_ */