Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: UniGraphic mbed vt100
af_utils/pending.h@0:0b6732b53bf4, 2018-04-24 (annotated)
- Committer:
- Rhyme
- Date:
- Tue Apr 24 08:58:33 2018 +0000
- Revision:
- 0:0b6732b53bf4
Temporary Connector Reversed Version
Who changed what in which revision?
| User | Revision | Line number | New 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_ */ |