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.
Fork of ConfigFile by
Revision 7:c966b18d8d67, committed 2015-05-11
- Comitter:
- OHstin
- Date:
- Mon May 11 15:21:06 2015 +0000
- Parent:
- 6:f6ceafabe9f8
- Commit message:
- Changes made to ConfigFile.h file; static const int MAXCONFIG = 100;; static const int MAXLEN_KEY = 100;
Changed in this revision
| ConfigFile.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ConfigFile.h Wed Sep 15 13:49:15 2010 +0000
+++ b/ConfigFile.h Mon May 11 15:21:06 2015 +0000
@@ -109,8 +109,8 @@
char *value;
} config_t;
config_t **configlist;
- static const int MAXCONFIG = 64;
- static const int MAXLEN_KEY = 64;
+ static const int MAXCONFIG = 100;
+ static const int MAXLEN_KEY = 100;
static const int MAXLEN_VALUE = 128;
static const char SEPARATOR = '=';
