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.
Revision 0:128fdb374972, committed 2017-09-08
- Comitter:
- Komazawa_sun
- Date:
- Fri Sep 08 03:28:41 2017 +0000
- Commit message:
- ????; ;
Changed in this revision
| Alpha.lib | Show annotated file Show diff for this revision Revisions of this file |
| DataPool.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 000000000000 -r 128fdb374972 Alpha.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Alpha.lib Fri Sep 08 03:28:41 2017 +0000 @@ -0,0 +1,1 @@ +https://developer.mbed.org/users/Komazawa_sun/code/Alpha/#51a5a9f66f61
diff -r 000000000000 -r 128fdb374972 DataPool.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/DataPool.h Fri Sep 08 03:28:41 2017 +0000
@@ -0,0 +1,13 @@
+#ifndef DATAPOOL_H
+#define DATAPOOL_H
+
+class DataPool{
+ public:
+ virtual bool set() = 0;
+ virtual void write(int index_num, int data) = 0;
+ virtual int read(int index_num) = 0;
+ virtual void reset() = 0;
+
+};
+
+#endif
\ No newline at end of file