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: Gamma Beta Alpha
Dependents: 2017_Bteam_I2CTransporter BETA_A ALPHA_A GAMMA_A
DataPool.h@7:b0f7025f6c49, 2017-08-22 (annotated)
- Committer:
- Komazawa_sun
- Date:
- Tue Aug 22 04:39:40 2017 +0000
- Revision:
- 7:b0f7025f6c49
- Parent:
- 1:47ea89b6364e
year;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Komazawa_sun | 0:52b800fb3844 | 1 | #ifndef DATAPOOL_H |
| Komazawa_sun | 0:52b800fb3844 | 2 | #define DATAPOOL_H |
| Komazawa_sun | 0:52b800fb3844 | 3 | |
| Komazawa_sun | 0:52b800fb3844 | 4 | class DataPool{ |
| Komazawa_sun | 0:52b800fb3844 | 5 | public: |
| Komazawa_sun | 0:52b800fb3844 | 6 | virtual bool set() = 0; |
| Komazawa_sun | 7:b0f7025f6c49 | 7 | virtual void write(int index_num, int data) = 0; |
| Komazawa_sun | 1:47ea89b6364e | 8 | virtual int read(int index_num) = 0; |
| Komazawa_sun | 0:52b800fb3844 | 9 | virtual void reset() = 0; |
| Komazawa_sun | 1:47ea89b6364e | 10 | |
| Komazawa_sun | 0:52b800fb3844 | 11 | }; |
| Komazawa_sun | 0:52b800fb3844 | 12 | |
| Komazawa_sun | 0:52b800fb3844 | 13 | #endif |