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.
defines.h
- Committer:
- ThierryLeonard
- Date:
- 2017-10-25
- Revision:
- 8:7c56fb1ed8c0
- Parent:
- 7:332766fb3114
File content as of revision 8:7c56fb1ed8c0:
#ifndef DEFINES_H #define DEFINES_H // Test for minimal period //#define TESTPERIOD #ifndef TESTPERIOD extern const int us_period ; extern const int us_timeout ; extern const int us_prepare ; #else extern int us_period ; #define us_timeout us_period*5/4 #define us_prepare us_period*3/4 #endif extern const unsigned char preamble_byte ; extern const unsigned char STARTBYTE ; extern const unsigned char ENDBYTE ; #endif