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: CRC16 FreescaleIAP FreescaleWatchdog GGSProtocol LM75B PIMA Parameters PersistentCircularQueue SerialNumberV2COM mbed-dev-watchdog_2016_03_04
Fork of smartRamalKW by
version.h@8:e8d86c66283c, 2015-07-02 (annotated)
- Committer:
- tpadovani
- Date:
- Thu Jul 02 22:57:47 2015 +0000
- Revision:
- 8:e8d86c66283c
- Parent:
- 0:999112ad27f0
- Child:
- 9:e501499af4ef
Implementa??o inicial de c?lculo de tens?o RMS da carga e linha. Novo comando para obter as tens?es de carga e linha.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
tpadovani | 0:999112ad27f0 | 1 | #ifndef VERSION_H |
tpadovani | 0:999112ad27f0 | 2 | #define VERSION_H |
tpadovani | 0:999112ad27f0 | 3 | |
tpadovani | 0:999112ad27f0 | 4 | #include "settings.h" |
tpadovani | 0:999112ad27f0 | 5 | |
tpadovani | 0:999112ad27f0 | 6 | #ifdef TEST_MODE |
tpadovani | 0:999112ad27f0 | 7 | #define VERSION_LENGTH 20 |
tpadovani | 8:e8d86c66283c | 8 | static const char version[] = "SmartRamal v0.2 TST"; |
tpadovani | 0:999112ad27f0 | 9 | #else |
tpadovani | 0:999112ad27f0 | 10 | #define VERSION_LENGTH 16 |
tpadovani | 8:e8d86c66283c | 11 | static const char version[] = "SmartRamal v0.2"; |
tpadovani | 0:999112ad27f0 | 12 | #endif |
tpadovani | 0:999112ad27f0 | 13 | |
tpadovani | 0:999112ad27f0 | 14 | #endif |