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: mbed
globals.h@0:77080c9376de, 2018-04-04 (annotated)
- Committer:
- chromaticdeth87
- Date:
- Wed Apr 04 15:16:19 2018 +0000
- Revision:
- 0:77080c9376de
This is the Test for the Flash to EEPROM operations on STM32F334C8T6
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| chromaticdeth87 | 0:77080c9376de | 1 | #ifndef GLOBALS_H |
| chromaticdeth87 | 0:77080c9376de | 2 | #define GLOBALS_H |
| chromaticdeth87 | 0:77080c9376de | 3 | /* globals.h */ |
| chromaticdeth87 | 0:77080c9376de | 4 | |
| chromaticdeth87 | 0:77080c9376de | 5 | #define EMIT_OFF 0 |
| chromaticdeth87 | 0:77080c9376de | 6 | #define EMIT_ON 1 |
| chromaticdeth87 | 0:77080c9376de | 7 | |
| chromaticdeth87 | 0:77080c9376de | 8 | extern SPI g_SPI1; |
| chromaticdeth87 | 0:77080c9376de | 9 | |
| chromaticdeth87 | 0:77080c9376de | 10 | extern Serial pc; |
| chromaticdeth87 | 0:77080c9376de | 11 | extern int g_rx_char; |
| chromaticdeth87 | 0:77080c9376de | 12 | extern uint32_t g_optics_timer_ms; |
| chromaticdeth87 | 0:77080c9376de | 13 | extern int g_emit_mode; |
| chromaticdeth87 | 0:77080c9376de | 14 | |
| chromaticdeth87 | 0:77080c9376de | 15 | #endif |