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: SW_HTTPServer WiflyInterface mbed C12832 IniManager
Examples/DynamicPages.h@15:1f2b62130ffb, 2013-09-01 (annotated)
- Committer:
- WiredHome
- Date:
- Sun Sep 01 19:54:42 2013 +0000
- Revision:
- 15:1f2b62130ffb
- Parent:
- DynamicPages.h@14:85c805890454
- Child:
- 29:14c47d31a9dc
Cleaned up the code, removed some of the debug work.; Hopefully it is easier to follow by others.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| WiredHome | 3:b3e21f3306a1 | 1 | |
| WiredHome | 3:b3e21f3306a1 | 2 | #ifndef DYNAMICPAGES_H |
| WiredHome | 3:b3e21f3306a1 | 3 | #define DYNAMICPAGES_H |
| WiredHome | 3:b3e21f3306a1 | 4 | #include "mbed.h" |
| WiredHome | 3:b3e21f3306a1 | 5 | |
| WiredHome | 3:b3e21f3306a1 | 6 | #include "SW_HTTPServer.h" |
| WiredHome | 3:b3e21f3306a1 | 7 | |
| WiredHome | 4:178df829d62b | 8 | bool SuperSimpleDynamicPage(HTTPServer *svr, HTTPServer::CallBackType type, const char * path, const HTTPServer::namevalue *params, int paramcount); |
| WiredHome | 3:b3e21f3306a1 | 9 | bool SimpleDynamicPage(HTTPServer *svr, HTTPServer::CallBackType type, const char * path, const HTTPServer::namevalue *params, int paramcount); |
| WiredHome | 3:b3e21f3306a1 | 10 | |
| WiredHome | 3:b3e21f3306a1 | 11 | bool SimpleDynamicForm(HTTPServer *svr, HTTPServer::CallBackType type, const char * path, const HTTPServer::namevalue *params, int paramcount); |
| WiredHome | 3:b3e21f3306a1 | 12 | |
| WiredHome | 4:178df829d62b | 13 | #endif // DYNAMICPAGES_H |