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
- Committer:
- yuhangzhu
- Date:
- 2013-07-23
- Revision:
- 26:5c264e20402f
- Parent:
- 24:f8fea5e5bf73
File content as of revision 26:5c264e20402f:
//This file defines some macros #ifndef PARAMETERS_H #define PARAMETERS_H #define MODE_IDLE 0 #define MODE_CHA1PHA 1 #define MODE_CHA1AMP 2 #define MODE_CHA2PHA 3 #define MODE_CHA2AMP 4 #define MODE_SPI_RAW 5 #define MODE_DISPLAY 6 #define MODE_SEND 7 #define MODE_HELP 8 #define MODE_ERR 9 #define LINEBUF_EMPTY 0 #define LINEBUF_OK 1 #define LINEBUF_TOOLONG 2 #define PARSE_ERR -2 #define PARSE_LONG -1 #define PARSE_SHORT -3 #define PARSE_OK 0 #define PARSE_EMPTY 1 #define PARSE_ROUNDED 2 #endif