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.
parameters.h@0:249f6f78cd05, 2013-07-12 (annotated)
- Committer:
- yuhangzhu
- Date:
- Fri Jul 12 05:16:46 2013 +0000
- Revision:
- 0:249f6f78cd05
- Child:
- 1:cb6811ef87de
state info not complete will work on it tomorrow;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
yuhangzhu | 0:249f6f78cd05 | 1 | #ifndef PARAMETERS_H |
yuhangzhu | 0:249f6f78cd05 | 2 | #define PARAMETERS_H |
yuhangzhu | 0:249f6f78cd05 | 3 | |
yuhangzhu | 0:249f6f78cd05 | 4 | |
yuhangzhu | 0:249f6f78cd05 | 5 | #define MODE_CHA1PHA 1 |
yuhangzhu | 0:249f6f78cd05 | 6 | #define MODE_CHA1AMP 2 |
yuhangzhu | 0:249f6f78cd05 | 7 | #define MODE_CHA2PHA 3 |
yuhangzhu | 0:249f6f78cd05 | 8 | #define MODE_CHA2AMP 4 |
yuhangzhu | 0:249f6f78cd05 | 9 | #define MODE_DISPLAY 5 |
yuhangzhu | 0:249f6f78cd05 | 10 | #define MODE_SEND 6 |
yuhangzhu | 0:249f6f78cd05 | 11 | #define MODE_ERR 7 |
yuhangzhu | 0:249f6f78cd05 | 12 | |
yuhangzhu | 0:249f6f78cd05 | 13 | |
yuhangzhu | 0:249f6f78cd05 | 14 | int phase1, phase2; |
yuhangzhu | 0:249f6f78cd05 | 15 | int amp1, amp2; |
yuhangzhu | 0:249f6f78cd05 | 16 | int state; |
yuhangzhu | 0:249f6f78cd05 | 17 | |
yuhangzhu | 0:249f6f78cd05 | 18 | |
yuhangzhu | 0:249f6f78cd05 | 19 | #endif |