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.
transition.h@0:6477530de2c0, 2015-11-27 (annotated)
- Committer:
- Huazhi
- Date:
- Fri Nov 27 21:43:33 2015 +0000
- Revision:
- 0:6477530de2c0
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Huazhi | 0:6477530de2c0 | 1 | enum Sync {NONE, APACE, ASENSE, ASIGNAL, VPACE, VSENSE, VSIGNAL}; |
Huazhi | 0:6477530de2c0 | 2 | struct TRANS_T { |
Huazhi | 0:6477530de2c0 | 3 | bool active; |
Huazhi | 0:6477530de2c0 | 4 | int source; |
Huazhi | 0:6477530de2c0 | 5 | int dest; |
Huazhi | 0:6477530de2c0 | 6 | Sync syncid; |
Huazhi | 0:6477530de2c0 | 7 | TRANS_T(): active(false), source(-1), dest(-1), syncid(NONE){}; |
Huazhi | 0:6477530de2c0 | 8 | TRANS_T(bool a, int b, int c, Sync d): active(a), source(b), dest(c), syncid(d) {}; |
Huazhi | 0:6477530de2c0 | 9 | }; |