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.
main.cpp@1:40e5ac1119a6, 2022-07-12 (annotated)
- Committer:
- fionalin
- Date:
- Tue Jul 12 13:02:25 2022 -0400
- Revision:
- 1:40e5ac1119a6
- Parent:
- 0:4e3ad938564e
- Child:
- 2:d9745be6c253
updated to macro format
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
fionalin | 1:40e5ac1119a6 | 1 | #define ACTUAL 1 |
fionalin | 1:40e5ac1119a6 | 2 | #define TEST_CAPSENSE 0 |
fionalin | 1:40e5ac1119a6 | 3 | #define TEST_MOTOR 0 |
fionalin | 0:4e3ad938564e | 4 | |
fionalin | 1:40e5ac1119a6 | 5 | #if ACTUAL |
fionalin | 1:40e5ac1119a6 | 6 | #include "actual_main.cpp" |
fionalin | 1:40e5ac1119a6 | 7 | #elif TEST_CAPSENSE |
fionalin | 1:40e5ac1119a6 | 8 | #include "test_capsense_main.cpp" |
fionalin | 1:40e5ac1119a6 | 9 | #elif TEST_MOTOR |
fionalin | 1:40e5ac1119a6 | 10 | #include "test_motor_main.cpp" |
fionalin | 1:40e5ac1119a6 | 11 | #endif |