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: net lpc1768 crypto clock web log
web-derived/nmea/web-nmea-script.c
- Committer:
- andrewboyson
- Date:
- 2019-04-28
- Revision:
- 55:a1bd0572c8b6
- Parent:
- http-derived/nmea/http-nmea-script.c@ 48:9f1ab7784067
- Child:
- 58:3f3e000151cc
File content as of revision 55:a1bd0572c8b6:
#include "http.h"
#include "web-base.h"
//Use http://tomeko.net/online_tools/cpp_text_escape.php to convert from text to c-multiline
//Use http://tomeko.net/online_tools/cpp_text_unescape.php to convert from c-multiline to text
const char* WebNmeaScriptDate = __DATE__;
const char* WebNmeaScriptTime = __TIME__;
static const char* script =
#include "web-nmea-script.inc"
;
void WebNmeaScript()
{
HttpOk("application/javascript; charset=UTF-8", "max-age=3600", WebNmeaScriptDate, WebNmeaScriptTime);
HttpAddText(script);
}