We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3992a52 commit d65a5cbCopy full SHA for d65a5cb
src/ssi.h
@@ -13,11 +13,11 @@ const char * __not_in_flash("httpd") ssi_example_tags[] = {
13
"counter",
14
"GPIO"
15
};
16
-u16_t __not_in_flash_func(ssi_handler)(int iIndex, char *pcInsert, int iInsertLen) {
+u16_t __time_critical_func(ssi_handler)(int iIndex, char *pcInsert, int iInsertLen) {
17
size_t printed;
18
switch (iIndex) {
19
case 0: /* "Hello" */
20
- printed = snprintf(pcInsert, iInsertLen, "Hello World!");
+ printed = snprintf(pcInsert, iInsertLen, "Hello user number %d!", rand());
21
break;
22
case 1: /* "counter" */
23
{
0 commit comments