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.
Dependents: Smart-WiFly-WebServer SignalGenerator WattEye X10Svr
Diff: IniManager.cpp
- Revision:
- 4:70042853d43b
- Parent:
- 3:64fcaf06b012
- Child:
- 5:bfeb0882bd82
diff -r 64fcaf06b012 -r 70042853d43b IniManager.cpp
--- a/IniManager.cpp Fri Jan 03 19:08:12 2014 +0000
+++ b/IniManager.cpp Sun Mar 16 22:23:11 2014 +0000
@@ -245,7 +245,11 @@
remove(bakFile); // remove an old .bak
Rename(iniFile, bakFile); // move the existing .ini to .bak
Rename(newFile, iniFile); // move the new .new to .ini
+ #ifdef RTOS_H
+ Thread::wait(1000);
+ #else
wait(1);
+ #endif
}
free(newFile);
free(bakFile);