Unverified Commit 310faf7f authored by Terry Ellison's avatar Terry Ellison Committed by GitHub
Browse files

Merge pull request #2886 from nodemcu/dev

Next master drop
parents 68c425c0 a08e74d9
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
#include "module.h" #include "module.h"
#include "lauxlib.h" #include "lauxlib.h"
#include "lmem.h" #include "lmem.h"
#include "c_string.h" #include <string.h>
#define BASE64_INVALID '\xff' #define BASE64_INVALID '\xff'
#define BASE64_PADDING '=' #define BASE64_PADDING '='
#define ISBASE64(c) (unbytes64[c] != BASE64_INVALID) #define ISBASE64(c) (unbytes64[c] != BASE64_INVALID)
...@@ -19,7 +19,7 @@ static uint8 *toBase64 ( lua_State* L, const uint8 *msg, size_t *len){ ...@@ -19,7 +19,7 @@ static uint8 *toBase64 ( lua_State* L, const uint8 *msg, size_t *len){
int buf_size = (n + 2) / 3 * 4; // estimated encoded size int buf_size = (n + 2) / 3 * 4; // estimated encoded size
uint8 * q, *out = (uint8 *)luaM_malloc(L, buf_size); uint8 * q, *out = (uint8 *)luaM_malloc(L, buf_size);
uint8 bytes64[sizeof(b64)]; uint8 bytes64[sizeof(b64)];
c_memcpy(bytes64, b64, sizeof(b64)); //Avoid lots of flash unaligned fetches memcpy(bytes64, b64, sizeof(b64)); //Avoid lots of flash unaligned fetches
for (i = 0, q = out; i < n; i += 3) { for (i = 0, q = out; i < n; i += 3) {
int a = msg[i]; int a = msg[i];
...@@ -46,7 +46,7 @@ static uint8 *fromBase64 ( lua_State* L, const uint8 *enc_msg, size_t *len){ ...@@ -46,7 +46,7 @@ static uint8 *fromBase64 ( lua_State* L, const uint8 *enc_msg, size_t *len){
if (n & 3) if (n & 3)
luaL_error (L, "Invalid base64 string"); luaL_error (L, "Invalid base64 string");
c_memset(unbytes64, BASE64_INVALID, sizeof(unbytes64)); memset(unbytes64, BASE64_INVALID, sizeof(unbytes64));
for (i = 0; i < sizeof(b64)-1; i++) unbytes64[b64[i]] = i; // sequential so no exceptions for (i = 0; i < sizeof(b64)-1; i++) unbytes64[b64[i]] = i; // sequential so no exceptions
if (enc_msg[n-1] == BASE64_PADDING) { if (enc_msg[n-1] == BASE64_PADDING) {
...@@ -153,12 +153,12 @@ static int do_func (lua_State *L, uint8 * (*conv_func)(lua_State *, const uint8 ...@@ -153,12 +153,12 @@ static int do_func (lua_State *L, uint8 * (*conv_func)(lua_State *, const uint8
DECLARE_FUNCTION(toHex); DECLARE_FUNCTION(toHex);
// Module function map // Module function map
static const LUA_REG_TYPE encoder_map[] = { LROT_BEGIN(encoder)
{ LSTRKEY("fromBase64"), LFUNCVAL(encoder_fromBase64) }, LROT_FUNCENTRY( fromBase64, encoder_fromBase64 )
{ LSTRKEY("toBase64"), LFUNCVAL(encoder_toBase64) }, LROT_FUNCENTRY( toBase64, encoder_toBase64 )
{ LSTRKEY("fromHex"), LFUNCVAL(encoder_fromHex) }, LROT_FUNCENTRY( fromHex, encoder_fromHex )
{ LSTRKEY("toHex"), LFUNCVAL(encoder_toHex) }, LROT_FUNCENTRY( toHex, encoder_toHex )
{ LNILKEY, LNILVAL } LROT_END( encoder, NULL, 0 )
};
NODEMCU_MODULE(ENCODER, "encoder", encoder_map, NULL); NODEMCU_MODULE(ENCODER, "encoder", encoder, NULL);
...@@ -38,9 +38,9 @@ ...@@ -38,9 +38,9 @@
#include "lauxlib.h" #include "lauxlib.h"
#include "lmem.h" #include "lmem.h"
#include "platform.h" #include "platform.h"
#include "c_stdlib.h" #include <stdlib.h>
#include "c_stdio.h" #include <stdio.h>
#include "c_string.h" #include <string.h>
#include "ctype.h" #include "ctype.h"
#include "user_interface.h" #include "user_interface.h"
#include "espconn.h" #include "espconn.h"
...@@ -93,6 +93,7 @@ static const char http_html_filename[] = "enduser_setup.html"; ...@@ -93,6 +93,7 @@ static const char http_html_filename[] = "enduser_setup.html";
static const char http_header_200[] = "HTTP/1.1 200 OK\r\nCache-control:no-cache\r\nConnection:close\r\nContent-Type:text/html\r\n"; /* Note single \r\n here! */ static const char http_header_200[] = "HTTP/1.1 200 OK\r\nCache-control:no-cache\r\nConnection:close\r\nContent-Type:text/html\r\n"; /* Note single \r\n here! */
static const char http_header_204[] = "HTTP/1.1 204 No Content\r\nContent-Length:0\r\nConnection:close\r\n\r\n"; static const char http_header_204[] = "HTTP/1.1 204 No Content\r\nContent-Length:0\r\nConnection:close\r\n\r\n";
static const char http_header_302[] = "HTTP/1.1 302 Moved\r\nLocation: /\r\nContent-Length:0\r\nConnection:close\r\n\r\n"; static const char http_header_302[] = "HTTP/1.1 302 Moved\r\nLocation: /\r\nContent-Length:0\r\nConnection:close\r\n\r\n";
static const char http_header_302_trying[] = "HTTP/1.1 302 Moved\r\nLocation: /?trying=true\r\nContent-Length:0\r\nConnection:close\r\n\r\n";
static const char http_header_400[] = "HTTP/1.1 400 Bad request\r\nContent-Length:0\r\nConnection:close\r\n\r\n"; static const char http_header_400[] = "HTTP/1.1 400 Bad request\r\nContent-Length:0\r\nConnection:close\r\n\r\n";
static const char http_header_404[] = "HTTP/1.1 404 Not found\r\nContent-Length:0\r\nConnection:close\r\n\r\n"; static const char http_header_404[] = "HTTP/1.1 404 Not found\r\nContent-Length:0\r\nConnection:close\r\n\r\n";
static const char http_header_405[] = "HTTP/1.1 405 Method Not Allowed\r\nContent-Length:0\r\nConnection:close\r\n\r\n"; static const char http_header_405[] = "HTTP/1.1 405 Method Not Allowed\r\nContent-Length:0\r\nConnection:close\r\n\r\n";
...@@ -101,8 +102,8 @@ static const char http_header_500[] = "HTTP/1.1 500 Internal Error\r\nContent-Le ...@@ -101,8 +102,8 @@ static const char http_header_500[] = "HTTP/1.1 500 Internal Error\r\nContent-Le
static const char http_header_content_len_fmt[] = "Content-length:%5d\r\n\r\n"; static const char http_header_content_len_fmt[] = "Content-length:%5d\r\n\r\n";
static const char http_html_gzip_contentencoding[] = "Content-Encoding: gzip\r\n"; static const char http_html_gzip_contentencoding[] = "Content-Encoding: gzip\r\n";
/* Externally defined: static const char http_html_backup[] = ... */ /* Externally defined: static const char enduser_setup_html_default[] = ... */
#include "eus/http_html_backup.def" #include "enduser_setup/enduser_setup.html.gz.def.h"
typedef struct scan_listener typedef struct scan_listener
{ {
...@@ -247,7 +248,7 @@ static void enduser_setup_check_station(void *p) ...@@ -247,7 +248,7 @@ static void enduser_setup_check_station(void *p)
(void)p; (void)p;
struct ip_info ip; struct ip_info ip;
c_memset(&ip, 0, sizeof(struct ip_info)); memset(&ip, 0, sizeof(struct ip_info));
wifi_get_ip_info(STATION_IF, &ip); wifi_get_ip_info(STATION_IF, &ip);
...@@ -265,7 +266,7 @@ static void enduser_setup_check_station(void *p) ...@@ -265,7 +266,7 @@ static void enduser_setup_check_station(void *p)
/* No IP Address yet, so check the reported status */ /* No IP Address yet, so check the reported status */
uint8_t curr_status = wifi_station_get_connect_status(); uint8_t curr_status = wifi_station_get_connect_status();
char buf[20]; char buf[20];
c_sprintf(buf, "status=%d,chan=%d", curr_status, currChan); sprintf(buf, "status=%d,chan=%d", curr_status, currChan);
ENDUSER_SETUP_DEBUG(buf); ENDUSER_SETUP_DEBUG(buf);
if (curr_status == 2 || curr_status == 3 || curr_status == 4) if (curr_status == 2 || curr_status == 3 || curr_status == 4)
...@@ -289,7 +290,7 @@ static void enduser_setup_check_station(void *p) ...@@ -289,7 +290,7 @@ static void enduser_setup_check_station(void *p)
return; return;
} }
c_sprintf (ipaddr, "%d.%d.%d.%d", IP2STR(&ip.ip.addr)); sprintf (ipaddr, "%d.%d.%d.%d", IP2STR(&ip.ip.addr));
state->success = 1; state->success = 1;
state->lastStationStatus = 5; /* We have an IP Address, so the status is 5 (as of SDK 1.5.1) */ state->lastStationStatus = 5; /* We have an IP Address, so the status is 5 (as of SDK 1.5.1) */
...@@ -297,7 +298,7 @@ static void enduser_setup_check_station(void *p) ...@@ -297,7 +298,7 @@ static void enduser_setup_check_station(void *p)
#if ENDUSER_SETUP_DEBUG_ENABLE #if ENDUSER_SETUP_DEBUG_ENABLE
char debuginfo[100]; char debuginfo[100];
c_sprintf(debuginfo, "AP_CHAN: %d, STA_CHAN: %d", state->softAPchannel, currChan); sprintf(debuginfo, "AP_CHAN: %d, STA_CHAN: %d", state->softAPchannel, currChan);
ENDUSER_SETUP_DEBUG(debuginfo); ENDUSER_SETUP_DEBUG(debuginfo);
#endif #endif
...@@ -396,18 +397,25 @@ static err_t close_once_sent (void *arg, struct tcp_pcb *pcb, u16_t len) ...@@ -396,18 +397,25 @@ static err_t close_once_sent (void *arg, struct tcp_pcb *pcb, u16_t len)
/* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */
/** /**
* Search String * Get length of param value
* *
* Search string for first occurance of any char in srch_str. * This is being called with a fragment of the parameters passed in the
* URL for GET requests or part of the body of a POST request.
* The string will look like one of these
* "SecretPassword HTTP/1.1"
* "SecretPassword&wifi_ssid=..."
* "SecretPassword"
* The string is searched for the first occurence of deliemiter '&' or ' '.
* If found return the length up to that position.
* If not found return the length of the string.
* *
* @return -1 iff no occurance of char was found.
*/ */
static int enduser_setup_srch_str(const char *str, const char *srch_str) static int enduser_setup_get_lenth_of_param_value(const char *str)
{ {
char *found = strpbrk (str, srch_str); char *found = strpbrk (str, "& ");
if (!found) if (!found)
{ {
return -1; return strlen(str);
} }
else else
{ {
...@@ -418,9 +426,9 @@ static int enduser_setup_srch_str(const char *str, const char *srch_str) ...@@ -418,9 +426,9 @@ static int enduser_setup_srch_str(const char *str, const char *srch_str)
/** /**
* Load HTTP Payload * Load HTTP Payload
* *
* @return - 0 iff payload loaded successfully * @return - 0 if payload loaded successfully
* 1 iff backup html was loaded * 1 if default html was loaded
* 2 iff out of memory * 2 if out of memory
*/ */
static int enduser_setup_http_load_payload(void) static int enduser_setup_http_load_payload(void)
{ {
...@@ -461,27 +469,32 @@ static int enduser_setup_http_load_payload(void) ...@@ -461,27 +469,32 @@ static int enduser_setup_http_load_payload(void)
char cl_hdr[30]; char cl_hdr[30];
size_t ce_len = 0; size_t ce_len = 0;
c_sprintf(cl_hdr, http_header_content_len_fmt, file_len); sprintf(cl_hdr, http_header_content_len_fmt, file_len);
size_t cl_len = c_strlen(cl_hdr); size_t cl_len = strlen(cl_hdr);
if (!f || err == VFS_RES_ERR || err2 == VFS_RES_ERR) if (!f || err == VFS_RES_ERR || err2 == VFS_RES_ERR)
{ {
ENDUSER_SETUP_DEBUG("Unable to load file enduser_setup.html, loading backup HTML..."); ENDUSER_SETUP_DEBUG("Unable to load file enduser_setup.html, loading default HTML...");
c_sprintf(cl_hdr, http_header_content_len_fmt, sizeof(http_html_backup)); if (f)
cl_len = c_strlen(cl_hdr); {
int html_len = LITLEN(http_html_backup); vfs_close(f);
}
sprintf(cl_hdr, http_header_content_len_fmt, sizeof(enduser_setup_html_default));
cl_len = strlen(cl_hdr);
int html_len = LITLEN(enduser_setup_html_default);
if (http_html_backup[0] == 0x1f && http_html_backup[1] == 0x8b) if (enduser_setup_html_default[0] == 0x1f && enduser_setup_html_default[1] == 0x8b)
{ {
ce_len = c_strlen(http_html_gzip_contentencoding); ce_len = strlen(http_html_gzip_contentencoding);
html_len = http_html_backup_len; /* Defined in eus/http_html_backup.def by xxd -i */ html_len = enduser_setup_html_default_len; /* Defined in enduser_setup/enduser_setup.html.gz.def.h by xxd -i */
ENDUSER_SETUP_DEBUG("Content is gzipped"); ENDUSER_SETUP_DEBUG("Content is gzipped");
} }
int payload_len = LITLEN(http_header_200) + cl_len + ce_len + html_len; int payload_len = LITLEN(http_header_200) + cl_len + ce_len + html_len;
state->http_payload_len = payload_len; state->http_payload_len = payload_len;
state->http_payload_data = (char *) c_malloc(payload_len); state->http_payload_data = (char *) malloc(payload_len);
if (state->http_payload_data == NULL) if (state->http_payload_data == NULL)
{ {
...@@ -489,17 +502,17 @@ static int enduser_setup_http_load_payload(void) ...@@ -489,17 +502,17 @@ static int enduser_setup_http_load_payload(void)
} }
int offset = 0; int offset = 0;
c_memcpy(&(state->http_payload_data[offset]), &(http_header_200), LITLEN(http_header_200)); memcpy(&(state->http_payload_data[offset]), &(http_header_200), LITLEN(http_header_200));
offset += LITLEN(http_header_200); offset += LITLEN(http_header_200);
if (ce_len > 0) if (ce_len > 0)
{ {
offset += c_sprintf(state->http_payload_data + offset, http_html_gzip_contentencoding, ce_len); offset += sprintf(state->http_payload_data + offset, http_html_gzip_contentencoding, ce_len);
} }
c_memcpy(&(state->http_payload_data[offset]), &(cl_hdr), cl_len); memcpy(&(state->http_payload_data[offset]), &(cl_hdr), cl_len);
offset += cl_len; offset += cl_len;
c_memcpy(&(state->http_payload_data[offset]), &(http_html_backup), sizeof(http_html_backup)); memcpy(&(state->http_payload_data[offset]), &(enduser_setup_html_default), sizeof(enduser_setup_html_default));
return 1; return 1;
} }
...@@ -509,13 +522,13 @@ static int enduser_setup_http_load_payload(void) ...@@ -509,13 +522,13 @@ static int enduser_setup_http_load_payload(void)
if (magic[0] == 0x1f && magic[1] == 0x8b) if (magic[0] == 0x1f && magic[1] == 0x8b)
{ {
ce_len = c_strlen(http_html_gzip_contentencoding); ce_len = strlen(http_html_gzip_contentencoding);
ENDUSER_SETUP_DEBUG("Content is gzipped"); ENDUSER_SETUP_DEBUG("Content is gzipped");
} }
int payload_len = LITLEN(http_header_200) + cl_len + ce_len + file_len; int payload_len = LITLEN(http_header_200) + cl_len + ce_len + file_len;
state->http_payload_len = payload_len; state->http_payload_len = payload_len;
state->http_payload_data = (char *) c_malloc(payload_len); state->http_payload_data = (char *) malloc(payload_len);
if (state->http_payload_data == NULL) if (state->http_payload_data == NULL)
{ {
...@@ -526,15 +539,15 @@ static int enduser_setup_http_load_payload(void) ...@@ -526,15 +539,15 @@ static int enduser_setup_http_load_payload(void)
int offset = 0; int offset = 0;
c_memcpy(&(state->http_payload_data[offset]), &(http_header_200), LITLEN(http_header_200)); memcpy(&(state->http_payload_data[offset]), &(http_header_200), LITLEN(http_header_200));
offset += LITLEN(http_header_200); offset += LITLEN(http_header_200);
if (ce_len > 0) if (ce_len > 0)
{ {
offset += c_sprintf(state->http_payload_data + offset, http_html_gzip_contentencoding, ce_len); offset += sprintf(state->http_payload_data + offset, http_html_gzip_contentencoding, ce_len);
} }
c_memcpy(&(state->http_payload_data[offset]), &(cl_hdr), cl_len); memcpy(&(state->http_payload_data[offset]), &(cl_hdr), cl_len);
offset += cl_len; offset += cl_len;
vfs_read(f, &(state->http_payload_data[offset]), file_len); vfs_read(f, &(state->http_payload_data[offset]), file_len);
vfs_close(f); vfs_close(f);
...@@ -548,7 +561,7 @@ static int enduser_setup_http_load_payload(void) ...@@ -548,7 +561,7 @@ static int enduser_setup_http_load_payload(void)
* *
* Parse escaped and form encoded data of request. * Parse escaped and form encoded data of request.
* *
* @return - return 0 iff the HTTP parameter is decoded into a valid string. * @return - return 0 if the HTTP parameter is decoded into a valid string.
*/ */
static int enduser_setup_http_urldecode(char *dst, const char *src, int src_len, int dst_len) static int enduser_setup_http_urldecode(char *dst, const char *src, int src_len, int dst_len)
{ {
...@@ -631,13 +644,167 @@ static void do_station_cfg (task_param_t param, uint8_t prio) ...@@ -631,13 +644,167 @@ static void do_station_cfg (task_param_t param, uint8_t prio)
luaM_free(lua_getstate(), cnf); luaM_free(lua_getstate(), cnf);
} }
/**
* Count the number of occurences of a character in a string
*
* return the number of times the character was encountered in the string
*/
static int count_char_occurence(const char *input, const char char_to_count) {
const char *current = input;
int occur = 0;
while (*current != 0) {
if (*current == char_to_count) occur++;
current++;
}
return occur;
}
/* structure used to store the key/value pairs that we find in a HTTP POST body */
struct keypairs_t {
char **keypairs;
int keypairs_nb;
};
static void enduser_setup_free_keypairs(struct keypairs_t *kp) {
if (kp == NULL) return;
if (kp->keypairs != NULL) {
for (int i = 0; i < kp->keypairs_nb * 2; i++) {
free(kp->keypairs[i]);
}
}
free(kp->keypairs);
free(kp);
}
static struct keypairs_t * enduser_setup_alloc_keypairs(int kp_number ){
struct keypairs_t *kp = malloc(sizeof(struct keypairs_t));
os_memset(kp, 0, sizeof(struct keypairs_t));
kp->keypairs = malloc(kp_number * 2 * sizeof(char *));
kp->keypairs_nb = kp_number;
return kp;
}
/**
* Parses a form-urlencoded body into a struct keypairs_t, which contains an array of key,values strings and the size of the array.
*/
static struct keypairs_t *enduser_setup_get_keypairs_from_form(char *form_body, int form_length) {
int keypair_nb = count_char_occurence(form_body, '&') + 1;
int equal_nb = count_char_occurence(form_body, '=');
if (keypair_nb == 1 && equal_nb == 0) {
ENDUSER_SETUP_DEBUG("No keypair in form body");
return NULL;
}
struct keypairs_t *kp = enduser_setup_alloc_keypairs(keypair_nb);
int current_idx = 0;
int err;
char *body_copy = malloc(form_length+1);
os_bzero(body_copy, form_length+1);
os_memcpy(body_copy, form_body, form_length);
char *tok = strtok(body_copy, "=");
char last_tok = '=';
while (tok) {
size_t len = strlen(tok);
kp->keypairs[current_idx] = malloc(len + 1);
err = enduser_setup_http_urldecode(kp->keypairs[current_idx], tok, len, len + 1);
if (err) {
ENDUSER_SETUP_DEBUG("Unable to decode parameter");
enduser_setup_free_keypairs(kp);
free(body_copy);
return NULL;
}
current_idx++;
if (current_idx > keypair_nb*2) {
ENDUSER_SETUP_DEBUG("Too many keypairs!");
enduser_setup_free_keypairs(kp);
free(body_copy);
return NULL;
}
if (last_tok == '=') {
tok = strtok(NULL, "&"); // now search for the '&'
last_tok='&';
} else {
tok = strtok(NULL, "="); // search for the next '='
last_tok='=';
}
}
free(body_copy);
return kp;
}
/**
* This function saves the form data received when the configuration is sent to the ESP into a eus_params.lua file
*/
static int enduser_setup_write_file_with_extra_configuration_data(char *form_body, int form_length) {
ENDUSER_SETUP_DEBUG("enduser: write data from posted form");
ENDUSER_SETUP_DEBUG(form_body);
// We will save the form data into a file in the LUA format: KEY="VALUE", so that configuration data is available for load in the lua code.
// As input, we have a string as such: "key1=value1&key2=value2&key3=value%203" (urlencoded), the number of '&' tells us how many keypairs there are (the count + 1)
struct keypairs_t *kp = enduser_setup_get_keypairs_from_form(form_body, form_length);
if (kp == NULL || kp->keypairs_nb == 0) {
ENDUSER_SETUP_DEBUG("enduser: No extra configuration.");
if (kp != NULL) enduser_setup_free_keypairs(kp);
return 1;
}
// Now that we have the keys and the values, let's save them in a lua file
int p_file = vfs_open("eus_params.lua", "w");
if (p_file == 0)
{
ENDUSER_SETUP_DEBUG("Can't open file in write mode!");
enduser_setup_free_keypairs(kp);
return 1;
}
// write all key pairs as KEY="VALUE"\n into a Lua table, example:
// local p = {}
// p.wifi_ssid="ssid"
// p.wifi_password="password"
// p.device_name="foo-node"
// return p
vfs_write(p_file, "local p={}\n", 11);
int idx = 0;
for( idx = 0; idx < kp->keypairs_nb*2; idx=idx+2){
char* to_write = kp->keypairs[idx];
size_t length = strlen(to_write);
vfs_write(p_file, "p.", 2);
vfs_write(p_file, to_write, length);
vfs_write(p_file, "=\"", 2);
to_write = kp->keypairs[idx+1];
length = strlen(to_write);
vfs_write(p_file, to_write, length);
vfs_write(p_file, "\"\n", 2);
}
vfs_write(p_file, "return p\n", 9);
vfs_close(p_file);
enduser_setup_free_keypairs(kp);
// TODO: we could call back in the LUA with an associative table setup, but this is MVP2...
return 0;
}
/** /**
* Handle HTTP Credentials * Handle HTTP Credentials
* *
* @return - return 0 iff credentials are found and handled successfully * @return - return 0 if credentials are found and handled successfully
* return 1 iff credentials aren't found * return 1 if credentials aren't found
* return 2 iff an error occured * return 2 if an error occured
*/ */
static int enduser_setup_http_handle_credentials(char *data, unsigned short data_len) static int enduser_setup_http_handle_credentials(char *data, unsigned short data_len)
{ {
...@@ -646,8 +813,8 @@ static int enduser_setup_http_handle_credentials(char *data, unsigned short data ...@@ -646,8 +813,8 @@ static int enduser_setup_http_handle_credentials(char *data, unsigned short data
state->success = 0; state->success = 0;
state->lastStationStatus = 0; state->lastStationStatus = 0;
char *name_str = (char *) ((uint32_t)strstr(&(data[6]), "wifi_ssid=")); char *name_str = strstr(data, "wifi_ssid=");
char *pwd_str = (char *) ((uint32_t)strstr(&(data[6]), "wifi_password=")); char *pwd_str = strstr(data, "wifi_password=");
if (name_str == NULL || pwd_str == NULL) if (name_str == NULL || pwd_str == NULL)
{ {
ENDUSER_SETUP_DEBUG("Password or SSID string not found"); ENDUSER_SETUP_DEBUG("Password or SSID string not found");
...@@ -659,30 +826,24 @@ static int enduser_setup_http_handle_credentials(char *data, unsigned short data ...@@ -659,30 +826,24 @@ static int enduser_setup_http_handle_credentials(char *data, unsigned short data
char *name_str_start = name_str + name_field_len; char *name_str_start = name_str + name_field_len;
char *pwd_str_start = pwd_str + pwd_field_len; char *pwd_str_start = pwd_str + pwd_field_len;
int name_str_len = enduser_setup_srch_str(name_str_start, "& "); int name_str_len = enduser_setup_get_lenth_of_param_value(name_str_start);
int pwd_str_len = enduser_setup_srch_str(pwd_str_start, "& "); int pwd_str_len = enduser_setup_get_lenth_of_param_value(pwd_str_start);
if (name_str_len == -1 || pwd_str_len == -1)
{
ENDUSER_SETUP_DEBUG("Password or SSID HTTP paramter divider not found");
return 1;
}
struct station_config *cnf = luaM_malloc(lua_getstate(), sizeof(struct station_config)); struct station_config *cnf = luaM_malloc(lua_getstate(), sizeof(struct station_config));
c_memset(cnf, 0, sizeof(struct station_config)); memset(cnf, 0, sizeof(struct station_config));
cnf->threshold.rssi = -127; cnf->threshold.rssi = -127;
cnf->threshold.authmode = AUTH_OPEN; cnf->threshold.authmode = AUTH_OPEN;
int err; int err;
err = enduser_setup_http_urldecode(cnf->ssid, name_str_start, name_str_len, sizeof(cnf->ssid)); err = enduser_setup_http_urldecode(cnf->ssid, name_str_start, name_str_len, sizeof(cnf->ssid));
err |= enduser_setup_http_urldecode(cnf->password, pwd_str_start, pwd_str_len, sizeof(cnf->password)); err |= enduser_setup_http_urldecode(cnf->password, pwd_str_start, pwd_str_len, sizeof(cnf->password));
if (err != 0 || c_strlen(cnf->ssid) == 0) if (err != 0 || strlen(cnf->ssid) == 0)
{ {
ENDUSER_SETUP_DEBUG("Unable to decode HTTP parameter to valid password or SSID"); ENDUSER_SETUP_DEBUG("Unable to decode HTTP parameter to valid password or SSID");
return 1; return 1;
} }
ENDUSER_SETUP_DEBUG(""); ENDUSER_SETUP_DEBUG("");
ENDUSER_SETUP_DEBUG("WiFi Credentials Stored"); ENDUSER_SETUP_DEBUG("WiFi Credentials Stored");
ENDUSER_SETUP_DEBUG("-----------------------"); ENDUSER_SETUP_DEBUG("-----------------------");
...@@ -702,7 +863,7 @@ static int enduser_setup_http_handle_credentials(char *data, unsigned short data ...@@ -702,7 +863,7 @@ static int enduser_setup_http_handle_credentials(char *data, unsigned short data
/** /**
* Serve HTML * Serve HTML
* *
* @return - return 0 iff html was served successfully * @return - return 0 if html was served successfully
*/ */
static int enduser_setup_http_serve_header(struct tcp_pcb *http_client, const char *header, uint32_t header_len) static int enduser_setup_http_serve_header(struct tcp_pcb *http_client, const char *header, uint32_t header_len)
{ {
...@@ -763,7 +924,7 @@ static err_t streamout_sent (void *arg, struct tcp_pcb *pcb, u16_t len) ...@@ -763,7 +924,7 @@ static err_t streamout_sent (void *arg, struct tcp_pcb *pcb, u16_t len)
/** /**
* Serve HTML * Serve HTML
* *
* @return - return 0 iff html was served successfully * @return - return 0 if html was served successfully
*/ */
static int enduser_setup_http_serve_html(struct tcp_pcb *http_client) static int enduser_setup_http_serve_html(struct tcp_pcb *http_client)
{ {
...@@ -836,21 +997,21 @@ static void enduser_setup_serve_status(struct tcp_pcb *conn) ...@@ -836,21 +997,21 @@ static void enduser_setup_serve_status(struct tcp_pcb *conn)
ip_addr[0] = '\0'; ip_addr[0] = '\0';
if (curr_state == STATION_GOT_IP) if (curr_state == STATION_GOT_IP)
{ {
c_sprintf (ip_addr, "%d.%d.%d.%d", IP2STR(&ip_info.ip.addr)); sprintf (ip_addr, "%d.%d.%d.%d", IP2STR(&ip_info.ip.addr));
} }
int state_len = c_strlen(s); int state_len = strlen(s);
int ip_len = c_strlen(ip_addr); int ip_len = strlen(ip_addr);
int ssid_len = c_strlen(config.ssid); int ssid_len = strlen(config.ssid);
int status_len = state_len + ssid_len + ip_len + 1; int status_len = state_len + ssid_len + ip_len + 1;
char status_buf[status_len]; char status_buf[status_len];
memset(status_buf, 0, status_len); memset(status_buf, 0, status_len);
status_len = c_sprintf(status_buf, s, config.ssid, ip_addr); status_len = sprintf(status_buf, s, config.ssid, ip_addr);
int buf_len = sizeof(fmt) + status_len + 10; /* 10 = (9+1), 1 byte is '\0' and 9 are reserved for length field */ int buf_len = sizeof(fmt) + status_len + 10; /* 10 = (9+1), 1 byte is '\0' and 9 are reserved for length field */
char buf[buf_len]; char buf[buf_len];
memset(buf, 0, buf_len); memset(buf, 0, buf_len);
int output_len = c_sprintf(buf, fmt, status_len, status_buf); int output_len = sprintf(buf, fmt, status_len, status_buf);
enduser_setup_http_serve_header(conn, buf, output_len); enduser_setup_http_serve_header(conn, buf, output_len);
} }
...@@ -860,11 +1021,11 @@ static void enduser_setup_serve_status(struct tcp_pcb *conn) ...@@ -860,11 +1021,11 @@ static void enduser_setup_serve_status(struct tcp_pcb *conn)
default: default:
{ {
const char *s = states[curr_state]; const char *s = states[curr_state];
int status_len = c_strlen(s); int status_len = strlen(s);
int buf_len = sizeof(fmt) + status_len + 10; /* 10 = (9+1), 1 byte is '\0' and 9 are reserved for length field */ int buf_len = sizeof(fmt) + status_len + 10; /* 10 = (9+1), 1 byte is '\0' and 9 are reserved for length field */
char buf[buf_len]; char buf[buf_len];
memset(buf, 0, buf_len); memset(buf, 0, buf_len);
int output_len = c_sprintf(buf, fmt, status_len, s); int output_len = sprintf(buf, fmt, status_len, s);
enduser_setup_http_serve_header(conn, buf, output_len); enduser_setup_http_serve_header(conn, buf, output_len);
} }
...@@ -894,13 +1055,13 @@ static void enduser_setup_serve_status_as_json (struct tcp_pcb *http_client) ...@@ -894,13 +1055,13 @@ static void enduser_setup_serve_status_as_json (struct tcp_pcb *http_client)
/* If IP address not yet available, get now */ /* If IP address not yet available, get now */
if (strlen(ipaddr) == 0) if (strlen(ipaddr) == 0)
{ {
c_sprintf(ipaddr, "%d.%d.%d.%d", IP2STR(&ip_info.ip.addr)); sprintf(ipaddr, "%d.%d.%d.%d", IP2STR(&ip_info.ip.addr));
} }
c_sprintf(json_payload, "{\"deviceid\":\"%s\", \"status\":%d}", ipaddr, curr_status); sprintf(json_payload, "{\"deviceid\":\"%s\", \"status\":%d}", ipaddr, curr_status);
} }
else else
{ {
c_sprintf(json_payload, "{\"deviceid\":\"%06X\", \"status\":%d}", system_get_chip_id(), curr_status); sprintf(json_payload, "{\"deviceid\":\"%06X\", \"status\":%d}", system_get_chip_id(), curr_status);
} }
const char fmt[] = const char fmt[] =
...@@ -913,9 +1074,9 @@ static void enduser_setup_serve_status_as_json (struct tcp_pcb *http_client) ...@@ -913,9 +1074,9 @@ static void enduser_setup_serve_status_as_json (struct tcp_pcb *http_client)
"\r\n" "\r\n"
"%s"; "%s";
int len = c_strlen(json_payload); int len = strlen(json_payload);
char buf[c_strlen(fmt) + NUMLEN(len) + len - 4]; char buf[strlen(fmt) + NUMLEN(len) + len - 4];
len = c_sprintf (buf, fmt, len, json_payload); len = sprintf (buf, fmt, len, json_payload);
enduser_setup_http_serve_header (http_client, buf, len); enduser_setup_http_serve_header (http_client, buf, len);
} }
...@@ -944,16 +1105,50 @@ static void enduser_setup_handle_OPTIONS (struct tcp_pcb *http_client, char *dat ...@@ -944,16 +1105,50 @@ static void enduser_setup_handle_OPTIONS (struct tcp_pcb *http_client, char *dat
int type = 0; int type = 0;
if (c_strncmp(data, "GET ", 4) == 0) if (strncmp(data, "GET ", 4) == 0)
{ {
if (c_strncmp(data + 4, "/aplist", 7) == 0 || c_strncmp(data + 4, "/setwifi?", 9) == 0 || c_strncmp(data + 4, "/status.json", 12) == 0) if (strncmp(data + 4, "/aplist", 7) == 0 || strncmp(data + 4, "/setwifi?", 9) == 0 || strncmp(data + 4, "/status.json", 12) == 0)
{ {
enduser_setup_http_serve_header (http_client, json, c_strlen(json)); enduser_setup_http_serve_header (http_client, json, strlen(json));
return; return;
} }
} }
enduser_setup_http_serve_header (http_client, others, c_strlen(others)); enduser_setup_http_serve_header (http_client, others, strlen(others));
return;
}
static void enduser_setup_handle_POST(struct tcp_pcb *http_client, char* data, size_t data_len)
{
ENDUSER_SETUP_DEBUG("Handling POST");
if (strncmp(data + 5, "/setwifi ", 9) == 0) // User clicked the submit button
{
char* body=strstr(data, "\r\n\r\n");
char *content_length_str = strstr(data, "Content-Length: ");
if( body == NULL || content_length_str == NULL)
{
enduser_setup_http_serve_header(http_client, http_header_400, LITLEN(http_header_400));
return; return;
}
int bodylength = atoi(content_length_str + 16);
body += 4; // length of the double CRLF found above
switch (enduser_setup_http_handle_credentials(body, bodylength))
{
case 0: {
// all went fine, extract all the form data into a file
enduser_setup_write_file_with_extra_configuration_data(body, bodylength);
// redirect user to the base page with the trying flag
enduser_setup_http_serve_header(http_client, http_header_302_trying, LITLEN(http_header_302_trying));
break;
}
case 1:
enduser_setup_http_serve_header(http_client, http_header_400, LITLEN(http_header_400));
break;
default:
ENDUSER_SETUP_ERROR_VOID("http_recvcb failed. Failed to handle wifi credentials.", ENDUSER_SETUP_ERR_UNKOWN_ERROR, ENDUSER_SETUP_ERR_NONFATAL);
break;
}
}
} }
...@@ -972,7 +1167,7 @@ static void free_scan_listeners (void) ...@@ -972,7 +1167,7 @@ static void free_scan_listeners (void)
while (l) while (l)
{ {
next = l->next; next = l->next;
c_free (l); free (l);
l = next; l = next;
} }
state->scan_listeners = 0; state->scan_listeners = 0;
...@@ -992,7 +1187,7 @@ static void remove_scan_listener (scan_listener_t *l) ...@@ -992,7 +1187,7 @@ static void remove_scan_listener (scan_listener_t *l)
if (*sl == l) if (*sl == l)
{ {
*sl = l->next; *sl = l->next;
c_free (l); free (l);
/* No early exit to guard against multi-entry on list */ /* No early exit to guard against multi-entry on list */
} }
else else
...@@ -1071,7 +1266,7 @@ static void on_scan_done (void *arg, STATUS status) ...@@ -1071,7 +1266,7 @@ static void on_scan_done (void *arg, STATUS status)
/* To be able to safely escape a pathological SSID, we need 2*32 bytes */ /* To be able to safely escape a pathological SSID, we need 2*32 bytes */
const size_t max_entry_sz = 27 + 2*32 + 6; /* {"ssid":"","rssi":,"chan":} */ const size_t max_entry_sz = 27 + 2*32 + 6; /* {"ssid":"","rssi":,"chan":} */
const size_t alloc_sz = hdr_sz + num_nets * max_entry_sz + 3; const size_t alloc_sz = hdr_sz + num_nets * max_entry_sz + 3;
char *http = os_zalloc (alloc_sz); char *http = calloc (1, alloc_sz);
if (!http) if (!http)
{ {
goto serve_500; goto serve_500;
...@@ -1097,26 +1292,26 @@ static void on_scan_done (void *arg, STATUS status) ...@@ -1097,26 +1292,26 @@ static void on_scan_done (void *arg, STATUS status)
strcpy (p, entry_mid); strcpy (p, entry_mid);
p += sizeof (entry_mid) -1; p += sizeof (entry_mid) -1;
p += c_sprintf (p, "%d", wn->rssi); p += sprintf (p, "%d", wn->rssi);
const char entry_chan[] = ",\"chan\":"; const char entry_chan[] = ",\"chan\":";
strcpy (p, entry_chan); strcpy (p, entry_chan);
p += sizeof (entry_chan) -1; p += sizeof (entry_chan) -1;
p += c_sprintf (p, "%d", wn->channel); p += sprintf (p, "%d", wn->channel);
*p++ = '}'; *p++ = '}';
} }
*p++ = ']'; *p++ = ']';
size_t body_sz = (p - http) - hdr_sz; size_t body_sz = (p - http) - hdr_sz;
c_sprintf (http, header_fmt, body_sz); sprintf (http, header_fmt, body_sz);
http[hdr_sz] = '['; /* Rewrite the \0 with the correct start of body */ http[hdr_sz] = '['; /* Rewrite the \0 with the correct start of body */
notify_scan_listeners (http, hdr_sz + body_sz); notify_scan_listeners (http, hdr_sz + body_sz);
ENDUSER_SETUP_DEBUG(http + hdr_sz); ENDUSER_SETUP_DEBUG(http + hdr_sz);
c_free (http); free (http);
return; return;
} }
...@@ -1149,7 +1344,7 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s ...@@ -1149,7 +1344,7 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s
return ERR_OK; return ERR_OK;
} }
char *data = os_zalloc (p->tot_len + 1); char *data = calloc (1, p->tot_len + 1);
if (!data) if (!data)
return ERR_MEM; return ERR_MEM;
...@@ -1163,9 +1358,9 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s ...@@ -1163,9 +1358,9 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s
ENDUSER_SETUP_DEBUG(data); ENDUSER_SETUP_DEBUG(data);
#endif #endif
if (c_strncmp(data, "GET ", 4) == 0) if (strncmp(data, "GET ", 4) == 0)
{ {
if (c_strncmp(data + 4, "/ ", 2) == 0) if (strncmp(data + 4, "/ ", 2) == 0 || strncmp(data + 4, "/?", 2) == 0)
{ {
if (enduser_setup_http_serve_html(http_client) != 0) if (enduser_setup_http_serve_html(http_client) != 0)
{ {
...@@ -1176,12 +1371,12 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s ...@@ -1176,12 +1371,12 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s
goto free_out; /* streaming now in progress */ goto free_out; /* streaming now in progress */
} }
} }
else if (c_strncmp(data + 4, "/aplist", 7) == 0) else if (strncmp(data + 4, "/aplist", 7) == 0)
{ {
/* Don't do an AP Scan while station is trying to connect to Wi-Fi */ /* Don't do an AP Scan while station is trying to connect to Wi-Fi */
if (state->connecting == 0) if (state->connecting == 0)
{ {
scan_listener_t *l = os_malloc (sizeof (scan_listener_t)); scan_listener_t *l = malloc (sizeof (scan_listener_t));
if (!l) if (!l)
{ {
ENDUSER_SETUP_ERROR("out of memory", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_NONFATAL); ENDUSER_SETUP_ERROR("out of memory", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_NONFATAL);
...@@ -1213,16 +1408,16 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s ...@@ -1213,16 +1408,16 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s
enduser_setup_http_serve_header(http_client, http_header_204, LITLEN(http_header_204)); enduser_setup_http_serve_header(http_client, http_header_204, LITLEN(http_header_204));
} }
} }
else if (c_strncmp(data + 4, "/status.json", 12) == 0) else if (strncmp(data + 4, "/status.json", 12) == 0)
{ {
enduser_setup_serve_status_as_json(http_client); enduser_setup_serve_status_as_json(http_client);
} }
else if (c_strncmp(data + 4, "/status", 7) == 0) else if (strncmp(data + 4, "/status", 7) == 0)
{ {
enduser_setup_serve_status(http_client); enduser_setup_serve_status(http_client);
} }
else if (c_strncmp(data + 4, "/update?", 8) == 0) else if (strncmp(data + 4, "/update?", 8) == 0)
{ {
switch (enduser_setup_http_handle_credentials(data, data_len)) switch (enduser_setup_http_handle_credentials(data, data_len))
{ {
...@@ -1237,22 +1432,7 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s ...@@ -1237,22 +1432,7 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s
break; break;
} }
} }
else if (c_strncmp(data + 4, "/setwifi?", 9) == 0) else if (strncmp(data + 4, "/generate_204", 13) == 0)
{
switch (enduser_setup_http_handle_credentials(data, data_len))
{
case 0:
enduser_setup_serve_status_as_json(http_client);
break;
case 1:
enduser_setup_http_serve_header(http_client, http_header_400, LITLEN(http_header_400));
break;
default:
ENDUSER_SETUP_ERROR("http_recvcb failed. Failed to handle wifi credentials.", ENDUSER_SETUP_ERR_UNKOWN_ERROR, ENDUSER_SETUP_ERR_NONFATAL);
break;
}
}
else if (c_strncmp(data + 4, "/generate_204", 13) == 0)
{ {
/* Convince Android devices that they have internet access to avoid pesky dialogues. */ /* Convince Android devices that they have internet access to avoid pesky dialogues. */
enduser_setup_http_serve_header(http_client, http_header_204, LITLEN(http_header_204)); enduser_setup_http_serve_header(http_client, http_header_204, LITLEN(http_header_204));
...@@ -1263,10 +1443,14 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s ...@@ -1263,10 +1443,14 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s
enduser_setup_http_serve_header(http_client, http_header_404, LITLEN(http_header_404)); enduser_setup_http_serve_header(http_client, http_header_404, LITLEN(http_header_404));
} }
} }
else if (c_strncmp(data, "OPTIONS ", 8) == 0) else if (strncmp(data, "OPTIONS ", 8) == 0)
{ {
enduser_setup_handle_OPTIONS(http_client, data, data_len); enduser_setup_handle_OPTIONS(http_client, data, data_len);
} }
else if (strncmp(data, "POST ", 5) == 0)
{
enduser_setup_handle_POST(http_client, data, data_len);
}
else /* not GET or OPTIONS */ else /* not GET or OPTIONS */
{ {
enduser_setup_http_serve_header(http_client, http_header_405, LITLEN(http_header_405)); enduser_setup_http_serve_header(http_client, http_header_405, LITLEN(http_header_405));
...@@ -1275,10 +1459,11 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s ...@@ -1275,10 +1459,11 @@ static err_t enduser_setup_http_recvcb(void *arg, struct tcp_pcb *http_client, s
deferred_close (http_client); deferred_close (http_client);
free_out: free_out:
os_free (data); free (data);
return ret; return ret;
} }
static err_t enduser_setup_http_connectcb(void *arg, struct tcp_pcb *pcb, err_t err) static err_t enduser_setup_http_connectcb(void *arg, struct tcp_pcb *pcb, err_t err)
{ {
ENDUSER_SETUP_DEBUG("enduser_setup_http_connectcb"); ENDUSER_SETUP_DEBUG("enduser_setup_http_connectcb");
...@@ -1332,7 +1517,7 @@ static int enduser_setup_http_start(void) ...@@ -1332,7 +1517,7 @@ static int enduser_setup_http_start(void)
int err = enduser_setup_http_load_payload(); int err = enduser_setup_http_load_payload();
if (err == 1) if (err == 1)
{ {
ENDUSER_SETUP_DEBUG("enduser_setup_http_start info. Loaded backup HTML."); ENDUSER_SETUP_DEBUG("enduser_setup_http_start info. Loaded default HTML.");
} }
else if (err == 2) else if (err == 2)
{ {
...@@ -1367,20 +1552,20 @@ static void enduser_setup_ap_start(void) ...@@ -1367,20 +1552,20 @@ static void enduser_setup_ap_start(void)
ENDUSER_SETUP_DEBUG("enduser_setup_ap_start"); ENDUSER_SETUP_DEBUG("enduser_setup_ap_start");
struct softap_config cnf; struct softap_config cnf;
c_memset(&(cnf), 0, sizeof(struct softap_config)); memset(&(cnf), 0, sizeof(struct softap_config));
#ifndef ENDUSER_SETUP_AP_SSID #ifndef ENDUSER_SETUP_AP_SSID
#define ENDUSER_SETUP_AP_SSID "SetupGadget" #define ENDUSER_SETUP_AP_SSID "SetupGadget"
#endif #endif
char ssid[] = ENDUSER_SETUP_AP_SSID; char ssid[] = ENDUSER_SETUP_AP_SSID;
int ssid_name_len = c_strlen(ssid); int ssid_name_len = strlen(ssid);
c_memcpy(&(cnf.ssid), ssid, ssid_name_len); memcpy(&(cnf.ssid), ssid, ssid_name_len);
uint8_t mac[6]; uint8_t mac[6];
wifi_get_macaddr(SOFTAP_IF, mac); wifi_get_macaddr(SOFTAP_IF, mac);
cnf.ssid[ssid_name_len] = '_'; cnf.ssid[ssid_name_len] = '_';
c_sprintf(cnf.ssid + ssid_name_len + 1, "%02X%02X%02X", mac[3], mac[4], mac[5]); sprintf(cnf.ssid + ssid_name_len + 1, "%02X%02X%02X", mac[3], mac[4], mac[5]);
cnf.ssid_len = ssid_name_len + 7; cnf.ssid_len = ssid_name_len + 7;
cnf.channel = state == NULL? 1 : state->softAPchannel; cnf.channel = state == NULL? 1 : state->softAPchannel;
cnf.authmode = AUTH_OPEN; cnf.authmode = AUTH_OPEN;
...@@ -1392,7 +1577,7 @@ static void enduser_setup_ap_start(void) ...@@ -1392,7 +1577,7 @@ static void enduser_setup_ap_start(void)
#if ENDUSER_SETUP_DEBUG_ENABLE #if ENDUSER_SETUP_DEBUG_ENABLE
char debuginfo[100]; char debuginfo[100];
c_sprintf(debuginfo, "SSID: %s, CHAN: %d", cnf.ssid, cnf.channel); sprintf(debuginfo, "SSID: %s, CHAN: %d", cnf.ssid, cnf.channel);
ENDUSER_SETUP_DEBUG(debuginfo); ENDUSER_SETUP_DEBUG(debuginfo);
#endif #endif
} }
...@@ -1439,15 +1624,15 @@ static void enduser_setup_dns_recv_callback(void *arg, char *recv_data, unsigned ...@@ -1439,15 +1624,15 @@ static void enduser_setup_dns_recv_callback(void *arg, char *recv_data, unsigned
struct espconn *callback_espconn = arg; struct espconn *callback_espconn = arg;
struct ip_info ip_info; struct ip_info ip_info;
uint32_t qname_len = c_strlen(&(recv_data[12])) + 1; /* \0=1byte */ uint32_t qname_len = strlen(&(recv_data[12])) + 1; /* \0=1byte */
uint32_t dns_reply_static_len = (uint32_t) sizeof(dns_header) + (uint32_t) sizeof(dns_body) + 2 + 4; /* dns_id=2bytes, ip=4bytes */ uint32_t dns_reply_static_len = (uint32_t) sizeof(dns_header) + (uint32_t) sizeof(dns_body) + 2 + 4; /* dns_id=2bytes, ip=4bytes */
uint32_t dns_reply_len = dns_reply_static_len + qname_len; uint32_t dns_reply_len = dns_reply_static_len + qname_len;
#if ENDUSER_SETUP_DEBUG_ENABLE #if ENDUSER_SETUP_DEBUG_ENABLE
char *qname = c_malloc(qname_len + 12); char *qname = malloc(qname_len + 12);
if (qname != NULL) if (qname != NULL)
{ {
c_sprintf(qname, "DNS QUERY = %s", &(recv_data[12])); sprintf(qname, "DNS QUERY = %s", &(recv_data[12]));
uint32_t p; uint32_t p;
int i, j; int i, j;
...@@ -1464,7 +1649,7 @@ static void enduser_setup_dns_recv_callback(void *arg, char *recv_data, unsigned ...@@ -1464,7 +1649,7 @@ static void enduser_setup_dns_recv_callback(void *arg, char *recv_data, unsigned
} }
qname[i-1]='\0'; qname[i-1]='\0';
ENDUSER_SETUP_DEBUG(qname); ENDUSER_SETUP_DEBUG(qname);
c_free(qname); free(qname);
} }
#endif #endif
...@@ -1481,22 +1666,22 @@ static void enduser_setup_dns_recv_callback(void *arg, char *recv_data, unsigned ...@@ -1481,22 +1666,22 @@ static void enduser_setup_dns_recv_callback(void *arg, char *recv_data, unsigned
} }
char *dns_reply = (char *) c_malloc(dns_reply_len); char *dns_reply = (char *) malloc(dns_reply_len);
if (dns_reply == NULL) if (dns_reply == NULL)
{ {
ENDUSER_SETUP_ERROR_VOID("dns_recv_callback failed. Failed to allocate memory.", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_NONFATAL); ENDUSER_SETUP_ERROR_VOID("dns_recv_callback failed. Failed to allocate memory.", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_NONFATAL);
} }
uint32_t insert_byte = 0; uint32_t insert_byte = 0;
c_memcpy(&(dns_reply[insert_byte]), recv_data, 2); memcpy(&(dns_reply[insert_byte]), recv_data, 2);
insert_byte += 2; insert_byte += 2;
c_memcpy(&(dns_reply[insert_byte]), dns_header, sizeof(dns_header)); memcpy(&(dns_reply[insert_byte]), dns_header, sizeof(dns_header));
insert_byte += (uint32_t) sizeof(dns_header); insert_byte += (uint32_t) sizeof(dns_header);
c_memcpy(&(dns_reply[insert_byte]), &(recv_data[12]), qname_len); memcpy(&(dns_reply[insert_byte]), &(recv_data[12]), qname_len);
insert_byte += qname_len; insert_byte += qname_len;
c_memcpy(&(dns_reply[insert_byte]), dns_body, sizeof(dns_body)); memcpy(&(dns_reply[insert_byte]), dns_body, sizeof(dns_body));
insert_byte += (uint32_t) sizeof(dns_body); insert_byte += (uint32_t) sizeof(dns_body);
c_memcpy(&(dns_reply[insert_byte]), &(ip_info.ip), 4); memcpy(&(dns_reply[insert_byte]), &(ip_info.ip), 4);
/* SDK 1.4.0 changed behaviour, for UDP server need to look up remote ip/port */ /* SDK 1.4.0 changed behaviour, for UDP server need to look up remote ip/port */
remot_info *pr = 0; remot_info *pr = 0;
...@@ -1509,7 +1694,7 @@ static void enduser_setup_dns_recv_callback(void *arg, char *recv_data, unsigned ...@@ -1509,7 +1694,7 @@ static void enduser_setup_dns_recv_callback(void *arg, char *recv_data, unsigned
int8_t err; int8_t err;
err = espconn_send(callback_espconn, dns_reply, dns_reply_len); err = espconn_send(callback_espconn, dns_reply, dns_reply_len);
c_free(dns_reply); free(dns_reply);
if (err == ESPCONN_MEM) if (err == ESPCONN_MEM)
{ {
ENDUSER_SETUP_ERROR_VOID("dns_recv_callback failed. Failed to allocate memory for send.", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_FATAL); ENDUSER_SETUP_ERROR_VOID("dns_recv_callback failed. Failed to allocate memory for send.", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_FATAL);
...@@ -1550,16 +1735,16 @@ static void enduser_setup_free(void) ...@@ -1550,16 +1735,16 @@ static void enduser_setup_free(void)
{ {
if (state->espconn_dns_udp->proto.udp != NULL) if (state->espconn_dns_udp->proto.udp != NULL)
{ {
c_free(state->espconn_dns_udp->proto.udp); free(state->espconn_dns_udp->proto.udp);
} }
c_free(state->espconn_dns_udp); free(state->espconn_dns_udp);
} }
c_free(state->http_payload_data); free(state->http_payload_data);
free_scan_listeners (); free_scan_listeners ();
c_free(state); free(state);
state = NULL; state = NULL;
} }
...@@ -1572,20 +1757,20 @@ static int enduser_setup_dns_start(void) ...@@ -1572,20 +1757,20 @@ static int enduser_setup_dns_start(void)
{ {
ENDUSER_SETUP_ERROR("dns_start failed. Appears to already be started (espconn_dns_udp != NULL).", ENDUSER_SETUP_ERR_ALREADY_INITIALIZED, ENDUSER_SETUP_ERR_FATAL); ENDUSER_SETUP_ERROR("dns_start failed. Appears to already be started (espconn_dns_udp != NULL).", ENDUSER_SETUP_ERR_ALREADY_INITIALIZED, ENDUSER_SETUP_ERR_FATAL);
} }
state->espconn_dns_udp = (struct espconn *) c_malloc(sizeof(struct espconn)); state->espconn_dns_udp = (struct espconn *) malloc(sizeof(struct espconn));
if (state->espconn_dns_udp == NULL) if (state->espconn_dns_udp == NULL)
{ {
ENDUSER_SETUP_ERROR("dns_start failed. Memory allocation failed (espconn_dns_udp == NULL).", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_FATAL); ENDUSER_SETUP_ERROR("dns_start failed. Memory allocation failed (espconn_dns_udp == NULL).", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_FATAL);
} }
esp_udp *esp_udp_data = (esp_udp *) c_malloc(sizeof(esp_udp)); esp_udp *esp_udp_data = (esp_udp *) malloc(sizeof(esp_udp));
if (esp_udp_data == NULL) if (esp_udp_data == NULL)
{ {
ENDUSER_SETUP_ERROR("dns_start failed. Memory allocation failed (esp_udp == NULL).", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_FATAL); ENDUSER_SETUP_ERROR("dns_start failed. Memory allocation failed (esp_udp == NULL).", ENDUSER_SETUP_ERR_OUT_OF_MEMORY, ENDUSER_SETUP_ERR_FATAL);
} }
c_memset(state->espconn_dns_udp, 0, sizeof(struct espconn)); memset(state->espconn_dns_udp, 0, sizeof(struct espconn));
c_memset(esp_udp_data, 0, sizeof(esp_udp)); memset(esp_udp_data, 0, sizeof(esp_udp));
state->espconn_dns_udp->proto.udp = esp_udp_data; state->espconn_dns_udp->proto.udp = esp_udp_data;
state->espconn_dns_udp->type = ESPCONN_UDP; state->espconn_dns_udp->type = ESPCONN_UDP;
state->espconn_dns_udp->state = ESPCONN_NONE; state->espconn_dns_udp->state = ESPCONN_NONE;
...@@ -1641,7 +1826,7 @@ static int enduser_setup_init(lua_State *L) ...@@ -1641,7 +1826,7 @@ static int enduser_setup_init(lua_State *L)
} }
else else
{ {
state = (enduser_setup_state_t *) os_zalloc(sizeof(enduser_setup_state_t)); state = (enduser_setup_state_t *) calloc(1, sizeof(enduser_setup_state_t));
if (state == NULL) if (state == NULL)
{ {
...@@ -1649,7 +1834,7 @@ static int enduser_setup_init(lua_State *L) ...@@ -1649,7 +1834,7 @@ static int enduser_setup_init(lua_State *L)
} }
else else
{ {
c_memset(state, 0, sizeof(enduser_setup_state_t)); memset(state, 0, sizeof(enduser_setup_state_t));
state->lua_connected_cb_ref = LUA_NOREF; state->lua_connected_cb_ref = LUA_NOREF;
state->lua_err_cb_ref = LUA_NOREF; state->lua_err_cb_ref = LUA_NOREF;
...@@ -1784,11 +1969,11 @@ static int enduser_setup_stop(lua_State* L) ...@@ -1784,11 +1969,11 @@ static int enduser_setup_stop(lua_State* L)
} }
static const LUA_REG_TYPE enduser_setup_map[] = { LROT_BEGIN(enduser_setup)
{ LSTRKEY( "manual" ), LFUNCVAL( enduser_setup_manual )}, LROT_FUNCENTRY( manual, enduser_setup_manual )
{ LSTRKEY( "start" ), LFUNCVAL( enduser_setup_start )}, LROT_FUNCENTRY( start, enduser_setup_start )
{ LSTRKEY( "stop" ), LFUNCVAL( enduser_setup_stop )}, LROT_FUNCENTRY( stop, enduser_setup_stop )
{ LNILKEY, LNILVAL} LROT_END( enduser_setup, NULL, 0 )
};
NODEMCU_MODULE(ENDUSER_SETUP, "enduser_setup", enduser_setup_map, NULL); NODEMCU_MODULE(ENDUSER_SETUP, "enduser_setup", enduser_setup, NULL);
...@@ -153,14 +153,17 @@ ...@@ -153,14 +153,17 @@
<div id=deviceId></div> <div id=deviceId></div>
<div id=f1> <div id=f1>
<h3>Connect device to your Wi-Fi</h3> <h3>Connect device to your Wi-Fi</h3>
<form action="/setwifi" method="POST">
<button id=networks type=button class=utility></button> <button id=networks type=button class=utility></button>
<div id=dropdown> <div id=dropdown>
<span id=arrow>&#x25bc;</span> <span id=arrow>&#x25bc;</span>
<select id=aplist name=aplist></select> <select id=aplist name=aplist></select>
</div> </div>
<input id=ssid type=text autocorrect=off autocapitalize=none placeholder='Wi-Fi Name' /> <input id=ssid name=wifi_ssid type=text autocorrect=off autocapitalize=none placeholder='Wi-Fi Name' />
<input id=wifi_password type=text autocorrect=off autocapitalize=none autocomplete=off placeholder=Password /> <input name=wifi_password type=password autocorrect=off autocapitalize=none autocomplete=off placeholder=Password />
<button id=submit type=button>Save</button> <!-- You can add inputs here and have them pop up in your lua code through the file eus_params.lua -->
<input type="submit" value="Save"/>
</form>
</div> </div>
<div id=f2> <div id=f2>
<h1>Success!</h1> <h1>Success!</h1>
...@@ -180,6 +183,11 @@ ...@@ -180,6 +183,11 @@
var ab = $('#networks'), ap = $('#aplist'); var ab = $('#networks'), ap = $('#aplist');
var stopAll = false, ra, rs, submitted = false; var stopAll = false, ra, rs, submitted = false;
$.urlParam = function (name) {
var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href);
if (results == null) { return null;}
else { return decodeURI(results[1]) || 0;}
}
function show(f, y) { function show(f, y) {
if (y == null) y = f; if (y == null) y = f;
$(f).style.display = y == f ? 'block' : 'none'; $(f).style.display = y == f ? 'block' : 'none';
...@@ -240,13 +248,6 @@ ...@@ -240,13 +248,6 @@
} }
} }
} }
function submit() {
submitted = true;
var url = '/setwifi?wifi_ssid=' + encodeURIComponent($('#ssid').value) + '&wifi_password=' + encodeURIComponent($('#wifi_password').value);
clearTimeout(rs);
fetch(url, 'GET', newSt, 2);
cur('#f3');
}
function fetch(url, method, callback, time_out) { function fetch(url, method, callback, time_out) {
var xhr = new XMLHttpRequest(); var xhr = new XMLHttpRequest();
xhr.onloadend = function () { xhr.onloadend = function () {
...@@ -305,16 +306,17 @@ ...@@ -305,16 +306,17 @@
fetch('/aplist?n=' + Math.random(), 'GET', gotAp, 10); fetch('/aplist?n=' + Math.random(), 'GET', gotAp, 10);
} }
window.onload = function() { window.onload = function() {
let trying = $.urlParam('trying');
ab.innerText = 'Scan for Networks'; ab.innerText = 'Scan for Networks';
ab.onclick = refrAp; ab.onclick = refrAp;
$('#aplist').onchange = function () { $('#aplist').onchange = function () {
$('#ssid').value = $('#aplist').value; $('#ssid').value = $('#aplist').value;
}; };
$('#submit').onclick = submit;
$('#bk2').onclick = function () { $('#bk2').onclick = function () {
cur('#f1') cur('#f1')
} }
rs = to(refr, 0.5); rs = to(refr, 0.5);
if( trying ) cur("#f3");
} }
</script> </script>
</body> </body>
......
static const char enduser_setup_html_default[] = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0x95, 0x59,
0x7d, 0x73, 0xdc, 0xb6, 0xd1, 0xff, 0x5b, 0xcf, 0xcc, 0xf3, 0x1d, 0x56,
0x92, 0x6b, 0x52, 0xf6, 0x1d, 0x4f, 0xa7, 0x17, 0xc7, 0x23, 0xdd, 0x29,
0xe3, 0x26, 0xce, 0x4b, 0x27, 0x76, 0x3c, 0x91, 0x33, 0x69, 0xc6, 0x75,
0x33, 0x38, 0x12, 0x14, 0x11, 0xf3, 0x08, 0x16, 0x00, 0x25, 0x5d, 0x13,
0x7f, 0xf7, 0xee, 0x12, 0x8b, 0xe3, 0xd1, 0x64, 0xd4, 0x74, 0x12, 0x89,
0x04, 0xb0, 0xef, 0xfb, 0xc3, 0xee, 0x52, 0x5e, 0xec, 0x7f, 0xf9, 0xfd,
0x17, 0x6f, 0x7f, 0x7e, 0xf3, 0x12, 0x0a, 0xb7, 0x2e, 0xaf, 0xfe, 0xff,
0xff, 0x16, 0xfc, 0xa4, 0x37, 0x29, 0x32, 0x7c, 0xdb, 0x5b, 0xac, 0xa5,
0x13, 0x50, 0x89, 0xb5, 0x5c, 0x46, 0xb7, 0x4a, 0xde, 0xd5, 0xda, 0xb8,
0x08, 0x52, 0x5d, 0x39, 0x59, 0xb9, 0x65, 0x74, 0xa7, 0x32, 0x57, 0x2c,
0x33, 0x79, 0xab, 0x52, 0x39, 0x6d, 0x17, 0x13, 0x50, 0x95, 0x72, 0x4a,
0x94, 0x53, 0x9b, 0x8a, 0x52, 0x2e, 0xe7, 0xc9, 0x71, 0xd4, 0x0a, 0x72,
0xca, 0x95, 0xf2, 0xea, 0x27, 0xf5, 0x95, 0x82, 0xef, 0xf4, 0x8d, 0xaa,
0x16, 0x33, 0xbf, 0x43, 0x67, 0xd6, 0x6d, 0x4a, 0x09, 0x6e, 0x53, 0xcb,
0xa5, 0x93, 0xf7, 0x6e, 0x96, 0x5a, 0x4b, 0xfb, 0x7b, 0x4f, 0xe0, 0x37,
0x7a, 0xec, 0xad, 0x85, 0x41, 0x8e, 0x0b, 0x38, 0xbe, 0x6c, 0x97, 0xb5,
0xc8, 0x32, 0x55, 0xdd, 0x84, 0xf5, 0x47, 0xfa, 0x45, 0x3f, 0x64, 0xfe,
0x84, 0x5e, 0x56, 0x3a, 0xdb, 0x30, 0x6b, 0x21, 0xd5, 0x4d, 0xe1, 0x2e,
0x60, 0x7e, 0x7c, 0xfc, 0x17, 0xcf, 0x9d, 0xa3, 0xf1, 0xd3, 0x5c, 0xac,
0x55, 0xb9, 0xb9, 0x00, 0x2b, 0x2a, 0x3b, 0xb5, 0xd2, 0xa8, 0xdc, 0x1f,
0x92, 0xfa, 0xa9, 0x28, 0xd5, 0x0d, 0x6a, 0x4b, 0x25, 0x7a, 0x69, 0xfc,
0xfe, 0x4a, 0xa4, 0x1f, 0x6e, 0x8c, 0x6e, 0xaa, 0xec, 0x02, 0x0e, 0xcf,
0xce, 0xce, 0xb2, 0xb3, 0xb3, 0xbe, 0xee, 0x43, 0x8e, 0x09, 0xab, 0xad,
0xb5, 0xc5, 0x28, 0x68, 0x94, 0x22, 0x56, 0x56, 0x97, 0x8d, 0x93, 0x2c,
0x5f, 0xd7, 0x5b, 0x37, 0x8c, 0xb7, 0x8c, 0x57, 0x2b, 0xed, 0x9c, 0x5e,
0x6f, 0x97, 0xa5, 0xcc, 0xbb, 0xb3, 0x36, 0xb2, 0x17, 0x70, 0x7a, 0x72,
0x5c, 0xdf, 0x5f, 0xf6, 0xdc, 0x3a, 0x7b, 0xce, 0x5b, 0x5d, 0x90, 0x44,
0xe3, 0x74, 0xdf, 0x36, 0x55, 0xd5, 0x8d, 0xf3, 0x81, 0x69, 0x50, 0x49,
0xd5, 0xbe, 0x5a, 0x59, 0xca, 0x34, 0x98, 0x3b, 0xbd, 0x93, 0xab, 0x0f,
0x0a, 0x3d, 0xaf, 0x6b, 0x29, 0x8c, 0xa8, 0x52, 0x79, 0x01, 0x95, 0xae,
0x64, 0x30, 0xcd, 0x64, 0xd2, 0x4c, 0x8d, 0xc8, 0x54, 0x63, 0x07, 0x51,
0xcf, 0x95, 0x2c, 0x33, 0x2b, 0x59, 0x14, 0x13, 0xef, 0xb8, 0x75, 0x3f,
0xb5, 0x85, 0xc8, 0xf4, 0x1d, 0x6e, 0xe1, 0x7f, 0xf3, 0xf3, 0xfa, 0x1e,
0xe6, 0xf8, 0x63, 0x6e, 0x56, 0x22, 0x3e, 0x9e, 0x80, 0xff, 0x3f, 0x39,
0x3b, 0xda, 0xa1, 0x57, 0xff, 0x6e, 0xd3, 0xcb, 0x7a, 0x71, 0xeb, 0x93,
0xbc, 0x53, 0x1c, 0xe0, 0x14, 0x7f, 0x8d, 0x24, 0x27, 0xcf, 0x73, 0x8e,
0x87, 0xaa, 0xa6, 0x1c, 0x26, 0x8c, 0xdc, 0x20, 0x4c, 0x53, 0x34, 0x62,
0x24, 0x4c, 0x7d, 0x2f, 0x5a, 0x4b, 0x31, 0x7f, 0x2a, 0x83, 0xc3, 0x34,
0x4d, 0x77, 0x25, 0x4c, 0x43, 0xc2, 0xe6, 0x2c, 0x9a, 0xd3, 0xd4, 0x41,
0xed, 0x61, 0x67, 0x52, 0x5d, 0x6a, 0x83, 0xf6, 0x9e, 0x9c, 0x9c, 0x74,
0xb8, 0x44, 0xe6, 0x67, 0xa8, 0x71, 0xad, 0x2b, 0x6d, 0x6b, 0x91, 0xca,
0xbe, 0xdf, 0x14, 0xbc, 0xbe, 0xcd, 0xfd, 0x2c, 0x8e, 0x4b, 0xe8, 0x47,
0x68, 0xca, 0x7a, 0x1d, 0x66, 0x19, 0x09, 0x8c, 0xac, 0xdc, 0x83, 0x4a,
0x3a, 0xd4, 0xb0, 0x12, 0xe6, 0xf7, 0x71, 0x1e, 0x24, 0x7c, 0x00, 0x96,
0xd3, 0x3a, 0xf8, 0xdb, 0x18, 0x4b, 0x8c, 0xb5, 0x56, 0xdd, 0xb5, 0xca,
0x94, 0xad, 0x4b, 0xb1, 0xc1, 0xe8, 0x94, 0x3a, 0xfd, 0x30, 0x88, 0xc3,
0xe8, 0xed, 0xcc, 0x64, 0xaa, 0x8d, 0xf0, 0x97, 0x8b, 0x31, 0xda, 0x33,
0x9f, 0xb0, 0x71, 0x3e, 0x0a, 0x8d, 0xd3, 0xf9, 0xea, 0xec, 0xfc, 0xb3,
0x91, 0x5c, 0x0d, 0x9d, 0xbd, 0xc8, 0x75, 0xda, 0xd8, 0xc9, 0xce, 0x46,
0xa1, 0x6f, 0xa5, 0x81, 0xdf, 0x46, 0x41, 0x7d, 0x0c, 0x27, 0xa8, 0x94,
0x42, 0x32, 0xe1, 0x35, 0xba, 0xdd, 0xd3, 0xd7, 0xd5, 0xa8, 0xd3, 0x9d,
0x64, 0x11, 0x38, 0xa4, 0xf7, 0xb5, 0x0f, 0x8a, 0x67, 0xcf, 0x9e, 0x8d,
0x62, 0xcd, 0xc3, 0xb8, 0x27, 0xef, 0xac, 0x97, 0x17, 0x86, 0xe9, 0x20,
0x22, 0x7d, 0xa6, 0xa4, 0x71, 0xaa, 0x54, 0x6e, 0x13, 0x4c, 0x29, 0xb5,
0xc0, 0x90, 0xb7, 0xf5, 0x88, 0xed, 0x28, 0xa5, 0x40, 0x61, 0xa8, 0xb6,
0x08, 0x76, 0xdc, 0x4f, 0x39, 0x64, 0x9f, 0x9d, 0xfb, 0x88, 0xf5, 0x3c,
0x40, 0x7f, 0xc7, 0x61, 0xcd, 0x1e, 0x78, 0x2b, 0x06, 0x05, 0xbc, 0x2d,
0x06, 0xe3, 0xf7, 0x98, 0xfd, 0x18, 0x1a, 0xcd, 0xa9, 0xe9, 0x6d, 0xfd,
0xef, 0xc9, 0x19, 0xca, 0x3f, 0xcc, 0x8c, 0xae, 0x91, 0xab, 0x9a, 0xb4,
0xab, 0xfc, 0x84, 0x9f, 0xa7, 0xfe, 0xb9, 0xfa, 0x70, 0xc2, 0x0a, 0x18,
0xb4, 0x8c, 0xbe, 0x71, 0x19, 0x83, 0x36, 0x60, 0x64, 0x29, 0x9c, 0xba,
0x95, 0x7f, 0x50, 0x29, 0xc8, 0x7e, 0x4c, 0xc3, 0x1d, 0x97, 0xef, 0x5e,
0x8d, 0x3f, 0xe7, 0x4a, 0x35, 0x5e, 0x79, 0xfa, 0xfa, 0x45, 0x5d, 0x2a,
0xfb, 0x70, 0x13, 0x1a, 0x6a, 0x1f, 0x36, 0x49, 0xee, 0x53, 0x83, 0x56,
0x34, 0x68, 0x53, 0xe3, 0x75, 0x72, 0xd8, 0x68, 0x07, 0x25, 0x6d, 0x78,
0x5d, 0xfb, 0x7e, 0x18, 0xa3, 0xef, 0x3e, 0x41, 0xf6, 0xf3, 0xe7, 0xcf,
0x2f, 0x1f, 0xf4, 0x8b, 0x1b, 0xea, 0x73, 0x96, 0xe6, 0x9d, 0x98, 0x0f,
0x85, 0x2b, 0x16, 0x3c, 0xd6, 0xec, 0x99, 0x70, 0x31, 0x6b, 0x67, 0x12,
0x1a, 0x8a, 0x66, 0x3c, 0x0b, 0xe1, 0x2b, 0xcd, 0x15, 0x57, 0x74, 0x9a,
0xa9, 0x5b, 0x50, 0xd9, 0x92, 0x7b, 0x3e, 0x6d, 0xed, 0x2d, 0xb8, 0x0f,
0xfa, 0x55, 0x20, 0xe1, 0xd9, 0xe8, 0xdb, 0xec, 0x6a, 0x31, 0xc3, 0x9d,
0xfe, 0x59, 0x3e, 0xa7, 0x35, 0x6d, 0x14, 0xa7, 0x57, 0x5f, 0xe8, 0xaa,
0xa2, 0x52, 0xee, 0x19, 0xc0, 0x69, 0xd8, 0xe8, 0xc6, 0xc0, 0x4f, 0x6a,
0xfa, 0x95, 0x42, 0x1b, 0x4e, 0x03, 0x69, 0xae, 0xcd, 0x1a, 0x44, 0x4a,
0xfe, 0x2f, 0x0f, 0x66, 0xa8, 0xef, 0x4e, 0xe5, 0xea, 0x00, 0xd6, 0xd2,
0x15, 0x3a, 0x5b, 0x1e, 0xbc, 0xf9, 0xfe, 0xfa, 0xed, 0x81, 0xa7, 0x45,
0x62, 0xae, 0xdc, 0xa8, 0xab, 0x42, 0x42, 0x6d, 0x3e, 0x58, 0x3f, 0x65,
0xf1, 0x7e, 0x5a, 0x0a, 0x6b, 0x97, 0x7c, 0x89, 0xd0, 0x42, 0xbf, 0xcd,
0xdc, 0x9d, 0x0b, 0x8c, 0x69, 0xde, 0xc7, 0x03, 0x4c, 0x64, 0x2b, 0xb4,
0xcd, 0xd2, 0xd5, 0xe3, 0xc3, 0xfb, 0x93, 0xf3, 0x55, 0x7a, 0xb9, 0x98,
0xd1, 0x7e, 0x47, 0xc5, 0xbd, 0x09, 0xe9, 0x18, 0x95, 0x34, 0x46, 0xf2,
0x3b, 0x2a, 0xf3, 0xc7, 0x81, 0x9c, 0xc3, 0xc3, 0x0b, 0xdf, 0x8a, 0x91,
0xd3, 0x5a, 0x95, 0x79, 0x3e, 0x72, 0xf3, 0x17, 0x5a, 0x76, 0x73, 0x62,
0x7b, 0x57, 0x52, 0x6d, 0x0c, 0xca, 0x59, 0xea, 0x3c, 0xf7, 0x6b, 0x51,
0x2b, 0x27, 0x4a, 0x2c, 0x4b, 0x4b, 0xba, 0x9f, 0x50, 0x97, 0x08, 0xba,
0x42, 0x97, 0x08, 0xd3, 0x65, 0xd4, 0x46, 0x13, 0x5e, 0xa3, 0xbc, 0x08,
0x66, 0x7d, 0x6d, 0x3b, 0x5a, 0x6a, 0x8c, 0x0a, 0x06, 0x8b, 0x35, 0x85,
0xd5, 0x9f, 0xd1, 0xc6, 0x34, 0xeb, 0xba, 0x94, 0x4e, 0x12, 0x51, 0x4f,
0xfd, 0x9b, 0x20, 0xa9, 0x53, 0xbd, 0x3f, 0x9d, 0xc2, 0xcf, 0xba, 0x81,
0x14, 0x03, 0x2a, 0xb2, 0x0c, 0x5a, 0x53, 0x2c, 0x14, 0xd2, 0xa0, 0xac,
0x2a, 0x83, 0x42, 0xdc, 0x4a, 0x70, 0x85, 0x5c, 0x43, 0xad, 0x6b, 0x68,
0x6a, 0x24, 0xf0, 0xb8, 0x28, 0x1b, 0x01, 0xa9, 0xce, 0xe8, 0xd0, 0xe8,
0xe6, 0xa6, 0x20, 0x22, 0xc8, 0x55, 0x29, 0x41, 0x36, 0x16, 0x3d, 0x30,
0x62, 0x6d, 0x13, 0x22, 0x9a, 0x4e, 0xfb, 0x7e, 0x7a, 0xa7, 0x0e, 0x6c,
0xb3, 0x5a, 0x2b, 0x77, 0x00, 0xb7, 0xa2, 0x6c, 0x70, 0x79, 0x8d, 0x7a,
0x0e, 0x82, 0x59, 0x8b, 0x19, 0x81, 0xcc, 0x2f, 0xc6, 0x60, 0x7b, 0xb2,
0x85, 0xed, 0xfc, 0xea, 0xba, 0x49, 0x53, 0x69, 0xed, 0x3e, 0x42, 0x34,
0xa0, 0x39, 0xd0, 0x29, 0x5a, 0x07, 0x78, 0xa3, 0x93, 0x26, 0x60, 0xbb,
0x10, 0x16, 0xac, 0xe7, 0xcb, 0x9b, 0xb2, 0xdc, 0x40, 0xea, 0xb1, 0x2f,
0x31, 0xe2, 0xba, 0x75, 0xc4, 0xe7, 0x89, 0x31, 0x9b, 0x2c, 0x56, 0x06,
0x43, 0x86, 0xbf, 0x67, 0x24, 0x06, 0xd6, 0x62, 0x03, 0x95, 0xbe, 0x43,
0xf4, 0x6a, 0x4b, 0xfe, 0x2b, 0x0b, 0x38, 0xbe, 0x42, 0x2d, 0x6e, 0x64,
0x12, 0x6e, 0x4a, 0xcf, 0xf2, 0x51, 0x27, 0xb6, 0x64, 0xc5, 0xc9, 0xd5,
0x5b, 0xb3, 0xc1, 0x62, 0x94, 0x24, 0xc4, 0xee, 0x9d, 0xeb, 0xdd, 0x1d,
0x2a, 0xfd, 0xc3, 0x6b, 0x13, 0xf1, 0xbd, 0x89, 0xae, 0xbe, 0xd6, 0xf0,
0x57, 0x6c, 0x5d, 0x68, 0x3c, 0x1b, 0x7e, 0x2d, 0x5d, 0x53, 0xf7, 0xaf,
0x53, 0x30, 0x81, 0xde, 0x7a, 0x95, 0x62, 0x51, 0x9c, 0x91, 0x8e, 0xc8,
0xba, 0xe8, 0xea, 0xc7, 0x3a, 0x13, 0x0e, 0x2d, 0x81, 0x6b, 0x27, 0x5c,
0x63, 0xbd, 0x41, 0x67, 0x48, 0xd6, 0xb1, 0x2f, 0x6c, 0x6a, 0x54, 0xed,
0x59, 0x6f, 0x85, 0x81, 0x47, 0xb0, 0x84, 0xbc, 0xa9, 0xda, 0x7a, 0x00,
0xb1, 0xbf, 0x53, 0xda, 0x1c, 0xc1, 0x6f, 0x60, 0xd0, 0x08, 0x53, 0x41,
0xa6, 0xd3, 0x66, 0x2d, 0x2b, 0x97, 0xfc, 0xab, 0x91, 0x66, 0x73, 0xcd,
0x04, 0x1d, 0xe5, 0x25, 0x7c, 0xbc, 0x0c, 0xc2, 0xc4, 0x0a, 0xa5, 0x3d,
0x8a, 0xa3, 0xc3, 0x50, 0x2d, 0xa2, 0xa3, 0x09, 0x88, 0x9a, 0x37, 0xfd,
0xcd, 0x8d, 0x8e, 0xb6, 0xe4, 0xd6, 0xe9, 0xfa, 0x45, 0x59, 0x92, 0x05,
0xa2, 0xb4, 0x72, 0x02, 0x46, 0xe0, 0x8f, 0x9d, 0x80, 0x07, 0x17, 0xe5,
0x93, 0x8f, 0x90, 0x85, 0x98, 0x1e, 0x25, 0x8d, 0x29, 0xdf, 0x10, 0x36,
0x7b, 0x56, 0xd3, 0xcd, 0x3b, 0xe2, 0x9a, 0x4c, 0x72, 0x8d, 0xb4, 0x4d,
0xe9, 0x2c, 0xd2, 0x54, 0xf2, 0x0e, 0x7e, 0x90, 0x37, 0x2f, 0xef, 0xeb,
0x38, 0x7a, 0xf7, 0x8f, 0xcf, 0x1f, 0xbf, 0x8f, 0xe0, 0x29, 0x10, 0x39,
0x3e, 0xa2, 0x65, 0xfc, 0xee, 0x9f, 0x8f, 0x0f, 0xdf, 0x3f, 0x39, 0x8a,
0x8e, 0x12, 0x79, 0x2f, 0xd3, 0xf8, 0x4e, 0x55, 0x58, 0xa7, 0x92, 0x52,
0xa7, 0x82, 0x04, 0x27, 0x85, 0x91, 0x39, 0x7f, 0x56, 0xa8, 0x1c, 0xe2,
0xad, 0x58, 0x94, 0x8b, 0xb0, 0xeb, 0x62, 0xd4, 0x2e, 0x2f, 0x3f, 0xb6,
0x84, 0x12, 0xad, 0xdd, 0x09, 0x9e, 0xa4, 0x3b, 0xf6, 0xe3, 0x0f, 0xdf,
0x06, 0xe6, 0x77, 0xf3, 0xf7, 0x47, 0xf0, 0xfb, 0xef, 0x70, 0xec, 0xc9,
0xdb, 0x5f, 0x5b, 0x47, 0x6c, 0xa1, 0xef, 0xe2, 0x7c, 0x02, 0x9b, 0xe0,
0x0c, 0x69, 0xdd, 0x74, 0xfa, 0xf0, 0x15, 0x78, 0x92, 0x7d, 0x14, 0xe7,
0x47, 0x49, 0xdb, 0x62, 0x12, 0x1e, 0x27, 0xf0, 0xac, 0x25, 0xcd, 0xe1,
0x73, 0x88, 0xda, 0x71, 0x38, 0x82, 0x0b, 0x88, 0xa8, 0xaa, 0x44, 0x97,
0x43, 0x5d, 0x85, 0xca, 0x64, 0x9c, 0xb3, 0xa2, 0x51, 0x71, 0x7f, 0xcc,
0xeb, 0x74, 0x9c, 0xae, 0x26, 0x70, 0x1f, 0xb8, 0xd9, 0x59, 0x2b, 0xdd,
0x5b, 0xb5, 0x96, 0xba, 0x71, 0x74, 0x4c, 0xc3, 0xc0, 0x31, 0x3c, 0x41,
0xaa, 0x11, 0x09, 0x18, 0x58, 0x13, 0xef, 0x7a, 0xb9, 0xcf, 0x58, 0x38,
0xf2, 0x97, 0x27, 0x97, 0x2e, 0x2d, 0xe2, 0x68, 0x66, 0x3d, 0x8e, 0x7f,
0xb5, 0xba, 0xfa, 0xbc, 0x5a, 0x52, 0xf2, 0x5e, 0x09, 0x57, 0x24, 0x46,
0x60, 0xa2, 0xd6, 0x31, 0x82, 0x2b, 0xfa, 0xfa, 0xe5, 0xdb, 0x68, 0x42,
0x79, 0xbe, 0x76, 0x13, 0x38, 0x19, 0xd3, 0x95, 0x36, 0xa6, 0x73, 0xb4,
0x0d, 0x71, 0x74, 0x98, 0xcf, 0x91, 0x29, 0xe4, 0x36, 0xec, 0x9d, 0x8c,
0xec, 0x9d, 0xfa, 0xbd, 0x81, 0x54, 0xaf, 0x31, 0x46, 0xac, 0x66, 0x5e,
0x34, 0xcf, 0xbc, 0x21, 0x00, 0xc6, 0xb2, 0x20, 0x43, 0x30, 0xc4, 0x80,
0x91, 0xc7, 0x13, 0x38, 0xa5, 0xdd, 0xad, 0xd3, 0x16, 0xf6, 0x97, 0x38,
0x92, 0x1f, 0x07, 0x09, 0x7b, 0x74, 0x4b, 0xe8, 0x86, 0x24, 0xaa, 0xaa,
0xa4, 0x79, 0x8b, 0x2d, 0x8a, 0xd2, 0xf0, 0xe2, 0x4e, 0xa8, 0x9d, 0x5b,
0x0d, 0x31, 0xc5, 0xc1, 0x12, 0x82, 0x8f, 0x22, 0xaf, 0xe4, 0x23, 0x78,
0xd8, 0xe1, 0x82, 0x45, 0x53, 0xb9, 0xd1, 0x39, 0x64, 0x88, 0x08, 0x94,
0x60, 0x9d, 0x41, 0xfe, 0x68, 0xab, 0x67, 0x0f, 0xf7, 0xe1, 0x6f, 0xd7,
0xdf, 0xbf, 0x4e, 0x6a, 0x61, 0xac, 0x8c, 0x33, 0x36, 0x96, 0x7c, 0xec,
0x2c, 0x09, 0xa3, 0xc7, 0x27, 0xf6, 0x1c, 0x7c, 0xd9, 0xee, 0x5f, 0xc0,
0x01, 0x9a, 0x90, 0x25, 0x9e, 0x4a, 0x65, 0xec, 0x98, 0xbf, 0x81, 0x29,
0xd2, 0x65, 0x28, 0x5c, 0x91, 0xde, 0xde, 0x89, 0x25, 0x11, 0xef, 0xd8,
0x8c, 0xe8, 0xdb, 0xac, 0x94, 0xd1, 0x24, 0xac, 0x78, 0x84, 0xf1, 0xa5,
0xb4, 0xdb, 0xfe, 0x4a, 0xa8, 0x52, 0x66, 0x30, 0x85, 0x3b, 0xa3, 0x31,
0x0a, 0xa1, 0x9f, 0x0e, 0x09, 0x42, 0xc1, 0x87, 0x4a, 0x3b, 0xc8, 0x75,
0x53, 0x0d, 0x68, 0xba, 0xb5, 0x2f, 0xb4, 0xe3, 0x5d, 0x64, 0x3f, 0xf2,
0x54, 0xef, 0xdf, 0x65, 0x89, 0x47, 0xe0, 0x7b, 0xf6, 0x81, 0xf3, 0xe6,
0xb6, 0x77, 0x92, 0xc5, 0xd9, 0x36, 0x30, 0x07, 0x3d, 0xaa, 0xfd, 0xae,
0x8a, 0x3d, 0x7e, 0x0c, 0x41, 0x12, 0x5c, 0xc1, 0xbc, 0xb7, 0x5e, 0xc0,
0x79, 0x5f, 0xca, 0x6b, 0x89, 0x1c, 0x82, 0x1a, 0xab, 0xca, 0xe0, 0x35,
0x7b, 0x44, 0xbd, 0x3c, 0xb4, 0x7f, 0x52, 0xf3, 0x00, 0x5e, 0xac, 0xeb,
0x99, 0xb1, 0x55, 0x44, 0x48, 0x38, 0xef, 0x20, 0x80, 0xd7, 0xc2, 0x83,
0x3e, 0xe4, 0x7e, 0xaf, 0x2b, 0xc7, 0xce, 0x34, 0x32, 0xec, 0xf6, 0x61,
0x2d, 0x02, 0x35, 0x43, 0x2e, 0x68, 0x08, 0xae, 0x0d, 0xe4, 0xcf, 0xb7,
0xf2, 0x7d, 0x7d, 0x1c, 0x29, 0x7b, 0xfe, 0xb2, 0x37, 0xa6, 0x9c, 0xf0,
0x14, 0x3a, 0x81, 0x54, 0x94, 0x25, 0x7d, 0xcd, 0x4d, 0xc0, 0xa1, 0xe6,
0x5f, 0x50, 0xf5, 0x6e, 0x7d, 0xbf, 0x2f, 0x0c, 0xd7, 0xf6, 0xbf, 0xbf,
0xfa, 0xee, 0x1b, 0xe7, 0xea, 0x1f, 0x24, 0x36, 0x27, 0xeb, 0x62, 0x56,
0x85, 0xe7, 0x89, 0xae, 0x4a, 0x2d, 0x32, 0x59, 0x65, 0xbd, 0x4e, 0xb1,
0x35, 0x2f, 0x28, 0x88, 0x91, 0x96, 0xcd, 0x9f, 0x00, 0xbd, 0x1b, 0x69,
0x6b, 0x5d, 0x59, 0x49, 0xc1, 0x64, 0x71, 0x1f, 0x77, 0x84, 0x3a, 0x1f,
0x88, 0xff, 0x22, 0x74, 0x3a, 0x9f, 0x78, 0x78, 0x0c, 0x04, 0xd4, 0xb2,
0x8a, 0x83, 0x93, 0xad, 0xc7, 0x14, 0xea, 0x1d, 0xb3, 0xad, 0x74, 0xec,
0xcc, 0x37, 0x12, 0xcd, 0xc7, 0x10, 0xbe, 0x40, 0x84, 0xd6, 0x2e, 0x9a,
0x40, 0x24, 0xea, 0xba, 0x54, 0xbe, 0x35, 0xcd, 0xa8, 0x22, 0x46, 0x3b,
0x7c, 0x9d, 0x5d, 0x71, 0x88, 0x18, 0xb5, 0x99, 0x39, 0xd6, 0x96, 0x27,
0x6d, 0x25, 0xde, 0x55, 0x51, 0x65, 0xf1, 0x58, 0x49, 0xbb, 0xd1, 0xee,
0x45, 0x4d, 0x25, 0x8d, 0x84, 0xef, 0xc6, 0x9b, 0xda, 0x76, 0xd7, 0x06,
0x3d, 0x92, 0xb0, 0x6c, 0x11, 0x8c, 0x89, 0x14, 0xf6, 0xf9, 0x32, 0x8c,
0x14, 0x20, 0x3a, 0xef, 0xd5, 0xa0, 0xc0, 0x94, 0x94, 0xb2, 0xba, 0x71,
0x05, 0x62, 0xe6, 0xb8, 0xc3, 0x0c, 0x29, 0xea, 0x57, 0x26, 0x22, 0x1d,
0x42, 0x6e, 0x28, 0x5d, 0xaf, 0x7e, 0x95, 0xa9, 0x8b, 0x06, 0xa2, 0x88,
0xa2, 0x57, 0xdb, 0xf8, 0x28, 0xb1, 0xda, 0xb8, 0xb8, 0xcb, 0xa1, 0x98,
0xc0, 0x8a, 0x99, 0xbb, 0x86, 0xb6, 0x4a, 0x8c, 0xb5, 0x0a, 0xa6, 0x20,
0xda, 0x97, 0x20, 0x27, 0xd8, 0x43, 0xa1, 0xd1, 0xb5, 0xa5, 0x12, 0xbd,
0xd0, 0x35, 0xc9, 0xb9, 0xf2, 0xe3, 0x11, 0x88, 0x70, 0x6f, 0xdb, 0x09,
0x8c, 0xcf, 0x22, 0x66, 0xcb, 0xb5, 0x81, 0x98, 0x78, 0x15, 0x72, 0x1e,
0x5f, 0xe2, 0x63, 0xd1, 0x46, 0x98, 0x23, 0x72, 0x09, 0x4f, 0x9f, 0xaa,
0xce, 0x14, 0x52, 0xf0, 0x74, 0x47, 0x03, 0xd5, 0x7e, 0xa2, 0x7e, 0xa7,
0xde, 0x27, 0x68, 0x53, 0x86, 0xcb, 0x68, 0xa0, 0xe2, 0xa3, 0x7f, 0x88,
0xda, 0x17, 0x86, 0x6f, 0xde, 0xbe, 0xfa, 0x0e, 0x96, 0x64, 0x2b, 0x9f,
0x8b, 0x15, 0xb5, 0x79, 0xb1, 0x2a, 0xbb, 0x09, 0x8b, 0x4f, 0x9c, 0xbe,
0x41, 0x0c, 0x50, 0x36, 0x19, 0x9a, 0x1d, 0x87, 0xae, 0x52, 0x84, 0xdf,
0x07, 0x64, 0x68, 0x89, 0x86, 0x9d, 0x87, 0xa8, 0xfa, 0x9d, 0xeb, 0xb5,
0x0e, 0x25, 0xd9, 0xfa, 0x7a, 0x3c, 0xd2, 0xbb, 0xf6, 0x8c, 0xe8, 0x3a,
0xe4, 0x8b, 0x7a, 0x02, 0xe7, 0xa4, 0x73, 0xbc, 0x52, 0x78, 0xeb, 0xe4,
0xed, 0x04, 0xa5, 0x99, 0x54, 0xf6, 0x06, 0x88, 0x76, 0x87, 0x30, 0x2f,
0xea, 0x4f, 0x27, 0x99, 0x25, 0x0f, 0x44, 0x1d, 0x3c, 0xda, 0xe9, 0x27,
0x0a, 0x7f, 0x6d, 0xe1, 0x9b, 0xd4, 0xb5, 0x7d, 0x0a, 0x2c, 0xef, 0x0d,
0x9d, 0xba, 0x4e, 0x45, 0x45, 0xfa, 0x43, 0x8e, 0x6d, 0x34, 0x16, 0x23,
0xef, 0xcd, 0x30, 0x48, 0xac, 0x63, 0xa8, 0x9b, 0x6d, 0x7a, 0x58, 0xf7,
0x2b, 0x51, 0x35, 0xa2, 0x84, 0x97, 0x95, 0x33, 0x9b, 0xe8, 0x8f, 0xc2,
0xc4, 0xba, 0x43, 0x5d, 0x1a, 0x3a, 0x20, 0x85, 0x49, 0x0b, 0xbc, 0x8c,
0xe4, 0xc5, 0x36, 0x41, 0x08, 0x55, 0x96, 0xd8, 0x47, 0x07, 0xf7, 0x82,
0x21, 0x9c, 0x02, 0x24, 0x21, 0x10, 0x5f, 0x51, 0x64, 0x2a, 0x94, 0x3b,
0x40, 0xfd, 0x83, 0x33, 0x9e, 0xff, 0x2c, 0x78, 0x68, 0xbc, 0xf3, 0x95,
0x89, 0x26, 0xca, 0x9d, 0xb2, 0xc5, 0xc3, 0xba, 0xaf, 0xf3, 0x3b, 0xf5,
0x78, 0xeb, 0x76, 0x29, 0x1d, 0xb8, 0xf6, 0xc3, 0x0c, 0x4f, 0xbb, 0x2f,
0x87, 0x38, 0xf2, 0x9b, 0x1c, 0xe3, 0x3f, 0x97, 0xde, 0x87, 0xb2, 0xbb,
0xfb, 0x69, 0x43, 0x24, 0x85, 0xa8, 0x6e, 0xe4, 0x78, 0x83, 0x78, 0xb4,
0xcd, 0x6f, 0xd2, 0x7e, 0x37, 0xf7, 0x3f, 0x8c, 0x78, 0x93, 0xd3, 0xda,
0x09, 0xc7, 0xcf, 0x47, 0x3c, 0x63, 0xe5, 0x43, 0xc1, 0xfd, 0x66, 0xeb,
0x99, 0x47, 0x46, 0xcf, 0xe3, 0x24, 0x5c, 0x2c, 0x95, 0xc7, 0x21, 0x30,
0x47, 0x40, 0x9c, 0x07, 0x38, 0xe7, 0x1e, 0x6c, 0x43, 0x0b, 0xb0, 0x98,
0x6d, 0x3f, 0x12, 0x17, 0x33, 0xfe, 0x9b, 0x15, 0xbd, 0xf2, 0x3f, 0xef,
0xfd, 0x07, 0xb4, 0xda, 0xa2, 0xb2, 0xf8, 0x1b, 0x00, 0x00
};
unsigned int enduser_setup_html_default_len = 2590;
...@@ -3,5 +3,5 @@ ...@@ -3,5 +3,5 @@
# Uses zopfli for better gzip compression # Uses zopfli for better gzip compression
# sudo apt-get install zopfli # sudo apt-get install zopfli
zopfli --gzip ./enduser_setup.html zopfli --gzip ./enduser_setup.html
xxd -i ./enduser_setup.html.gz | sed 's/unsigned char/static const char/; s/__enduser_setup_html_gz/http_html_backup/' > http_html_backup.def xxd -i ./enduser_setup.html.gz | sed 's/unsigned char/static const char/; s/__enduser_setup_html_gz/enduser_setup_html_default/' > enduser_setup.html.gz.def.h
static const char http_html_backup[] = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0x95, 0x59,
0x7b, 0x73, 0xdb, 0x36, 0x12, 0xff, 0xdb, 0xf9, 0x14, 0xeb, 0xba, 0x17,
0xca, 0x8d, 0xde, 0xb2, 0xd3, 0x8c, 0xf5, 0xe8, 0xe4, 0xfa, 0xbe, 0x49,
0xd2, 0x4e, 0xed, 0x4e, 0xaf, 0x93, 0xc9, 0x74, 0x20, 0x12, 0xb4, 0x50,
0x53, 0x00, 0x0f, 0x00, 0x2d, 0xeb, 0xda, 0x7c, 0xf7, 0xdb, 0xe5, 0x12,
0xa2, 0x28, 0xaa, 0x9a, 0xeb, 0x34, 0x7a, 0x10, 0xd8, 0xc7, 0xee, 0x6f,
0x1f, 0xbb, 0x72, 0x67, 0xe7, 0x5f, 0xfd, 0xf0, 0xe5, 0xdd, 0xaf, 0x3f,
0x7e, 0x0d, 0x2b, 0xbf, 0xce, 0x16, 0xcf, 0x66, 0xfc, 0x81, 0x9f, 0x52,
0x24, 0x8b, 0x67, 0x67, 0xb3, 0xb5, 0xf4, 0x02, 0xb4, 0x58, 0xcb, 0x79,
0xf4, 0xa8, 0xe4, 0x26, 0x37, 0xd6, 0x47, 0x10, 0x1b, 0xed, 0xa5, 0xf6,
0xf3, 0x68, 0xa3, 0x12, 0xbf, 0x9a, 0x27, 0xf2, 0x51, 0xc5, 0xb2, 0x57,
0x3e, 0x74, 0x41, 0x69, 0xe5, 0x95, 0xc8, 0x7a, 0x2e, 0x16, 0x99, 0x9c,
0x8f, 0xfa, 0xc3, 0x88, 0xe4, 0x78, 0xe5, 0x33, 0xb9, 0xf8, 0x45, 0x7d,
0xa3, 0xe0, 0x8d, 0xb9, 0x57, 0x7a, 0x36, 0xe0, 0x13, 0xbc, 0x72, 0x7e,
0x9b, 0x49, 0xf0, 0xdb, 0x5c, 0xce, 0xbd, 0x7c, 0xf2, 0x83, 0xd8, 0x39,
0x3c, 0x3e, 0xfb, 0x0c, 0xfe, 0xc0, 0xf7, 0xb3, 0xb5, 0xb0, 0x48, 0x7e,
0x03, 0xc3, 0x29, 0x3d, 0xe5, 0x22, 0x49, 0x94, 0xbe, 0xaf, 0x1e, 0x3f,
0xe2, 0x0b, 0xff, 0x91, 0xcd, 0x5d, 0xfc, 0x5c, 0x9a, 0x64, 0xcb, 0x4c,
0x2b, 0xa9, 0xee, 0x57, 0xfe, 0x06, 0x46, 0xc3, 0xe1, 0x3f, 0x4a, 0xbe,
0x14, 0x2d, 0xee, 0xa5, 0x62, 0xad, 0xb2, 0xed, 0x0d, 0x38, 0xa1, 0x5d,
0xcf, 0x49, 0xab, 0xd2, 0xf2, 0x8e, 0x94, 0xf6, 0x44, 0xa6, 0xee, 0x51,
0x4b, 0x2c, 0xd1, 0x33, 0x5b, 0x1e, 0x2f, 0x45, 0xfc, 0x70, 0x6f, 0x4d,
0xa1, 0x93, 0x1b, 0xb8, 0xb8, 0xba, 0xba, 0x4a, 0xae, 0xae, 0xf6, 0x74,
0x5e, 0x54, 0x18, 0xb0, 0xbe, 0xdc, 0x38, 0x74, 0xda, 0xa0, 0x00, 0xb1,
0x74, 0x26, 0x2b, 0xbc, 0x64, 0xc9, 0x26, 0x0f, 0x86, 0x5b, 0x36, 0x88,
0x1f, 0x96, 0xc6, 0x7b, 0xb3, 0x0e, 0x4f, 0x99, 0x4c, 0x77, 0x37, 0x25,
0x86, 0x37, 0x30, 0x19, 0x0f, 0xf3, 0xa7, 0xe9, 0xbe, 0x27, 0x57, 0xaf,
0xc2, 0x49, 0x00, 0x44, 0x14, 0xde, 0xec, 0x19, 0xa4, 0x74, 0x5e, 0xf8,
0x12, 0x85, 0x02, 0x85, 0x6b, 0xfa, 0xe6, 0x64, 0x26, 0xe3, 0xca, 0xc2,
0xde, 0x46, 0x2e, 0x1f, 0x14, 0xfa, 0x99, 0xe7, 0x52, 0x58, 0xa1, 0x63,
0x79, 0x03, 0xda, 0x68, 0x59, 0xd9, 0x63, 0x13, 0x69, 0x7b, 0x56, 0x24,
0xaa, 0x70, 0x4d, 0x6c, 0x53, 0x25, 0xb3, 0xc4, 0x49, 0x96, 0x52, 0x11,
0xd6, 0x6e, 0x3c, 0xf5, 0xdc, 0x4a, 0x24, 0x66, 0x83, 0x27, 0xf8, 0xdf,
0xe8, 0x3a, 0x7f, 0x82, 0x11, 0xbe, 0xec, 0xfd, 0x52, 0x74, 0x86, 0x5d,
0xe0, 0x7f, 0xfd, 0xab, 0xcb, 0x9a, 0x5c, 0xfd, 0xb7, 0x0c, 0x5f, 0xa5,
0x11, 0x8f, 0x9a, 0x61, 0x25, 0xbf, 0x61, 0x82, 0x6f, 0xed, 0x10, 0xa4,
0x69, 0xca, 0xfe, 0x2b, 0xdd, 0x63, 0x54, 0x18, 0xa7, 0x26, 0x2a, 0x3d,
0xd4, 0x7f, 0x88, 0x4a, 0xd3, 0x76, 0x32, 0x10, 0x63, 0xa4, 0x12, 0xb8,
0x88, 0xe3, 0x78, 0x8f, 0xb9, 0x17, 0xc2, 0x32, 0x0a, 0x42, 0x39, 0x1a,
0x21, 0x8b, 0x4e, 0x7a, 0x10, 0x9b, 0xcc, 0x58, 0xb4, 0x72, 0x3c, 0x1e,
0xef, 0x12, 0x0e, 0x39, 0x5f, 0xa2, 0xb2, 0xb5, 0xd1, 0xc6, 0xe5, 0x22,
0x96, 0x0d, 0x57, 0x11, 0xad, 0x86, 0xa5, 0x21, 0x58, 0x27, 0x99, 0x6b,
0x40, 0x7a, 0x95, 0x42, 0x8f, 0xb1, 0xc4, 0x7b, 0x2b, 0xb5, 0x3f, 0x29,
0x9e, 0xb3, 0x82, 0xc5, 0x33, 0x6b, 0x40, 0xb4, 0x1d, 0xd5, 0x46, 0x32,
0x4c, 0xf2, 0xca, 0xc1, 0xc2, 0x3a, 0xe2, 0xca, 0x8d, 0xda, 0x95, 0x48,
0xa2, 0x5c, 0x9e, 0x89, 0x2d, 0x82, 0x91, 0x99, 0xf8, 0xe1, 0xc0, 0xef,
0xa3, 0x65, 0x96, 0xc8, 0xd8, 0x58, 0xc1, 0xa5, 0xc2, 0xe9, 0xd7, 0xb0,
0x99, 0xa2, 0x7f, 0x7d, 0x2c, 0xf8, 0x93, 0xd1, 0xf2, 0xea, 0xfa, 0xf3,
0xc3, 0xa0, 0xb4, 0xfc, 0xbb, 0x49, 0x4d, 0x5c, 0xb8, 0x6e, 0xfd, 0xbc,
0x32, 0x8f, 0xd2, 0x92, 0xd7, 0xed, 0x6c, 0x1d, 0xc2, 0x18, 0xb5, 0x11,
0x08, 0x5d, 0x7e, 0x26, 0x57, 0xf7, 0x35, 0x85, 0xee, 0x32, 0xa9, 0x83,
0x42, 0xd1, 0x97, 0xec, 0x5e, 0x23, 0xea, 0x2f, 0x5f, 0xbe, 0x3c, 0x96,
0x48, 0x21, 0x3b, 0x83, 0xa4, 0xab, 0x06, 0xfe, 0x9c, 0x7e, 0x4d, 0xff,
0x1b, 0xf4, 0xfd, 0xc2, 0xab, 0x4c, 0xf9, 0x6d, 0xa5, 0x3f, 0x33, 0x02,
0xa1, 0x2d, 0x1b, 0x09, 0x2b, 0xcf, 0xa4, 0x40, 0x31, 0xa8, 0x6c, 0x55,
0x29, 0x7f, 0xea, 0x55, 0xe0, 0x7c, 0x7e, 0x4d, 0xd8, 0x34, 0x6d, 0x9e,
0xe4, 0xc7, 0x33, 0x95, 0x6d, 0x66, 0xe5, 0x87, 0x5d, 0xb6, 0x2c, 0xe8,
0x76, 0x35, 0x06, 0xdb, 0x5b, 0x96, 0x06, 0xfc, 0xf7, 0x4e, 0xfe, 0x7e,
0x04, 0x9a, 0xa2, 0x2f, 0x12, 0x6b, 0x72, 0x64, 0xd1, 0x5d, 0x7a, 0x48,
0xc7, 0xfc, 0x31, 0x29, 0x3f, 0x96, 0x0f, 0x63, 0x96, 0x1c, 0x12, 0x31,
0xe4, 0x54, 0x8b, 0xf9, 0xb0, 0x4d, 0x5b, 0x99, 0x61, 0x16, 0x3e, 0xca,
0xa3, 0x65, 0x4e, 0x16, 0x23, 0xda, 0x1b, 0xee, 0xb1, 0x8d, 0x36, 0x7c,
0x8d, 0xdd, 0xe3, 0x54, 0xcb, 0x08, 0x7a, 0x45, 0x9e, 0x29, 0x77, 0x7a,
0x38, 0x34, 0xb5, 0xb6, 0x67, 0x56, 0x98, 0x1e, 0x61, 0x44, 0xb4, 0x87,
0xc7, 0xe9, 0xae, 0xd6, 0x9c, 0x79, 0xa1, 0x8f, 0x1c, 0xaf, 0xb8, 0xa6,
0xed, 0xd6, 0x9a, 0x4d, 0x33, 0x53, 0x5f, 0xbd, 0x7a, 0x35, 0x3d, 0xe1,
0x4a, 0x35, 0xdc, 0x5e, 0xb1, 0x1c, 0x36, 0x7c, 0x74, 0x20, 0x55, 0xa1,
0xc4, 0xe3, 0xc3, 0x96, 0x89, 0x66, 0x83, 0x72, 0x0f, 0xc0, 0x15, 0x64,
0xc0, 0xbb, 0xc7, 0xb3, 0x19, 0xcd, 0x73, 0x5a, 0x10, 0x12, 0xf5, 0x08,
0x2a, 0x99, 0x57, 0x13, 0x17, 0x4f, 0xce, 0x66, 0x61, 0x2c, 0xd1, 0x43,
0x20, 0xa8, 0xf6, 0x90, 0xef, 0x93, 0xc5, 0x6c, 0x80, 0x27, 0x8d, 0xab,
0x74, 0x84, 0x8f, 0xf4, 0xbc, 0x9a, 0x2c, 0xbe, 0x34, 0x5a, 0x53, 0xab,
0x65, 0x72, 0xf0, 0x06, 0xb6, 0xa6, 0xb0, 0xf0, 0x8b, 0xea, 0x7d, 0xa3,
0x50, 0xf9, 0xa4, 0xa2, 0xe4, 0x0e, 0x42, 0xcc, 0x5a, 0xfa, 0x8d, 0xb1,
0x0f, 0x8e, 0x77, 0x94, 0xea, 0x3c, 0xce, 0x84, 0x73, 0xf3, 0x2a, 0xcb,
0x51, 0x23, 0x1f, 0x33, 0x6f, 0xd0, 0x5a, 0x65, 0x1f, 0x9f, 0xe2, 0x31,
0x06, 0xa0, 0x14, 0x58, 0x22, 0xbc, 0x78, 0x7e, 0xf1, 0x34, 0xbe, 0x5e,
0xc6, 0x53, 0xf4, 0x1c, 0xcf, 0x03, 0x0d, 0xcf, 0x01, 0xa2, 0xe2, 0x1c,
0xe2, 0xe5, 0x8b, 0xbf, 0xa3, 0x1a, 0xbe, 0x66, 0x62, 0x76, 0x93, 0xbf,
0xf2, 0xa0, 0x43, 0x2e, 0xe7, 0x54, 0x52, 0x2f, 0x53, 0x65, 0x06, 0xc7,
0xc6, 0x5a, 0x64, 0x9a, 0x9b, 0x34, 0xe5, 0x67, 0x91, 0x2b, 0x2f, 0x32,
0x6c, 0x0b, 0x73, 0xaa, 0x17, 0xc0, 0xd2, 0x89, 0xe5, 0xca, 0x64, 0x98,
0x48, 0xf3, 0xa8, 0x84, 0x01, 0xde, 0xa1, 0xd2, 0x08, 0x06, 0x87, 0xc2,
0x37, 0x2a, 0x55, 0xbf, 0xe5, 0xe8, 0x38, 0xe2, 0xf1, 0x77, 0xb5, 0x30,
0xcd, 0x3a, 0xcf, 0xa4, 0x97, 0x44, 0xd4, 0x50, 0xfb, 0x63, 0x90, 0x39,
0x68, 0xa1, 0xef, 0x8a, 0xe5, 0x5a, 0xf9, 0x7d, 0xec, 0x17, 0xb7, 0xe2,
0x51, 0x36, 0x10, 0x3f, 0x12, 0xf0, 0x71, 0x08, 0xf8, 0x68, 0x71, 0x5b,
0xc4, 0xb1, 0x74, 0xee, 0x1c, 0x83, 0x3b, 0x6a, 0x06, 0x48, 0xe1, 0x63,
0x48, 0x8b, 0x5f, 0x31, 0x09, 0x42, 0x4e, 0xac, 0x84, 0x03, 0xc7, 0x5c,
0x69, 0x91, 0x65, 0x5b, 0x88, 0x39, 0x67, 0x64, 0x42, 0xe9, 0xe2, 0x57,
0x12, 0x18, 0xa6, 0x2a, 0x33, 0xfa, 0xb3, 0xa5, 0x45, 0xcb, 0xf1, 0x7d,
0x40, 0x62, 0x60, 0x2d, 0xb6, 0xa0, 0xb1, 0x86, 0xe2, 0xcc, 0x38, 0x89,
0xe4, 0xca, 0x01, 0xae, 0x5f, 0x90, 0x8b, 0x7b, 0xd9, 0x0f, 0x19, 0xd6,
0x30, 0xba, 0x6d, 0x7e, 0xa0, 0x59, 0x8d, 0x17, 0x77, 0x76, 0x8b, 0xb5,
0xda, 0xef, 0x13, 0xeb, 0xb8, 0x05, 0x0f, 0xf5, 0xc0, 0x76, 0x5e, 0x46,
0x55, 0x62, 0x46, 0x8b, 0x6f, 0x0d, 0xfc, 0x13, 0x1b, 0x37, 0xd9, 0xcd,
0x36, 0xdf, 0x4a, 0x5f, 0xe4, 0x47, 0xd1, 0xc3, 0x2f, 0x75, 0x5d, 0x91,
0xee, 0x2b, 0x52, 0x10, 0x39, 0x1f, 0x2d, 0x7e, 0xce, 0x13, 0xe1, 0xd1,
0x0a, 0xb8, 0xf5, 0xc2, 0x17, 0x8e, 0x8d, 0xb9, 0x42, 0xaa, 0xc0, 0x3b,
0x73, 0xb1, 0x55, 0x79, 0xc9, 0xf7, 0x28, 0x2c, 0x7c, 0x0a, 0x73, 0x48,
0x0b, 0x1d, 0x53, 0xb3, 0x80, 0x0e, 0x27, 0xad, 0xb1, 0x97, 0xf0, 0x07,
0x58, 0x54, 0x6f, 0x35, 0x24, 0x38, 0x28, 0xd6, 0x52, 0xfb, 0xfe, 0x7f,
0x0a, 0x69, 0xb7, 0xb7, 0x15, 0x41, 0x4d, 0x39, 0x85, 0x8f, 0xd3, 0x4a,
0x96, 0x58, 0xa2, 0xb0, 0x4f, 0x3b, 0xd1, 0x45, 0xa8, 0xc3, 0xe8, 0xb2,
0x0b, 0x22, 0xaf, 0x0e, 0xb9, 0x32, 0xa2, 0xcb, 0x40, 0xed, 0xbc, 0xc9,
0x5f, 0x67, 0x19, 0xe9, 0x17, 0x99, 0x93, 0x5d, 0xb0, 0x02, 0x5f, 0xae,
0x0b, 0x9c, 0x47, 0x18, 0xc2, 0x70, 0x35, 0x7d, 0x86, 0x2c, 0x3b, 0x23,
0xdd, 0xca, 0x6c, 0x3a, 0x38, 0x88, 0xb6, 0x97, 0xdc, 0xa8, 0x54, 0x0a,
0x9d, 0x2d, 0xcc, 0xe7, 0xa0, 0x31, 0x01, 0x2e, 0x01, 0xbf, 0x02, 0xef,
0x31, 0x9f, 0x76, 0xd2, 0xcb, 0x7e, 0xd9, 0xab, 0xfa, 0x3c, 0x76, 0xe8,
0xaa, 0xa4, 0x4c, 0xe1, 0x0b, 0x88, 0xca, 0x55, 0x28, 0x82, 0x1b, 0x88,
0x28, 0xeb, 0xa3, 0xd0, 0x02, 0x77, 0x7a, 0x56, 0x2a, 0x91, 0x28, 0x81,
0x95, 0x1c, 0x95, 0xf5, 0x17, 0x8c, 0xde, 0x74, 0xe2, 0x65, 0x17, 0x9e,
0x2a, 0xd6, 0x0a, 0x47, 0x8c, 0xd5, 0x9d, 0x5a, 0x4b, 0x53, 0x78, 0xba,
0xa5, 0xe1, 0x31, 0x84, 0xcf, 0x90, 0xa8, 0xc5, 0x6e, 0x65, 0x6a, 0x3b,
0x7b, 0xbe, 0x9d, 0x57, 0x40, 0x5d, 0xe2, 0x01, 0x92, 0x49, 0x1f, 0xaf,
0x3a, 0xd1, 0xc0, 0x71, 0x78, 0x7f, 0x77, 0x46, 0x7f, 0xa1, 0xe7, 0x11,
0xbc, 0x80, 0xb7, 0xc2, 0xaf, 0xfa, 0x56, 0xe8, 0xc4, 0xac, 0x3b, 0x88,
0x7b, 0xf4, 0xed, 0xd7, 0x77, 0x51, 0x17, 0xb4, 0xdc, 0xdc, 0xfa, 0x2e,
0x8c, 0xdb, 0x7a, 0xe2, 0xc2, 0xee, 0xdc, 0x23, 0x4c, 0x31, 0x44, 0xe9,
0x08, 0x39, 0x52, 0x22, 0xad, 0x8f, 0xc6, 0xed, 0xa3, 0x49, 0x38, 0x6a,
0x08, 0x64, 0x55, 0x1d, 0x0c, 0x60, 0xc2, 0x52, 0x79, 0xef, 0x09, 0x4e,
0x5b, 0xc7, 0x42, 0xac, 0x83, 0x39, 0x41, 0x44, 0x6e, 0x76, 0x61, 0x82,
0x87, 0xc1, 0x51, 0x07, 0xe7, 0x73, 0xdc, 0xc4, 0x86, 0x15, 0xf7, 0x19,
0x25, 0x0d, 0x25, 0x4c, 0x5f, 0x69, 0x2d, 0xed, 0x1d, 0xb6, 0x2f, 0xc2,
0xfc, 0xf5, 0x46, 0xa8, 0xbd, 0x04, 0x87, 0x0e, 0xf9, 0xee, 0xf0, 0x15,
0x5d, 0x52, 0x28, 0xd0, 0x26, 0x90, 0x98, 0x33, 0x24, 0xa3, 0x92, 0x4b,
0x45, 0x67, 0x52, 0x48, 0x30, 0xf2, 0xc8, 0xef, 0xbc, 0x45, 0xee, 0x28,
0x28, 0x39, 0xc3, 0x63, 0xf8, 0xd7, 0xed, 0x0f, 0xef, 0xfa, 0xb9, 0xb0,
0x4e, 0x76, 0x12, 0xb6, 0x12, 0x3d, 0xdb, 0xd9, 0x10, 0xa6, 0xd5, 0x81,
0x25, 0x9f, 0x7c, 0x55, 0x9e, 0xdf, 0xc0, 0x27, 0xa8, 0x3c, 0xe9, 0x33,
0x95, 0x4a, 0x4a, 0x7f, 0x38, 0xc3, 0x63, 0xa4, 0x4a, 0x50, 0xae, 0x22,
0x8d, 0x7b, 0xe7, 0x8e, 0xd8, 0xdf, 0xb3, 0xfa, 0xe8, 0xfb, 0x24, 0x93,
0x51, 0xb7, 0x7a, 0xa8, 0x26, 0x1e, 0x77, 0x91, 0xdd, 0xe9, 0x37, 0x42,
0x65, 0x32, 0x81, 0x1e, 0x6c, 0xac, 0x41, 0xc7, 0x43, 0x5b, 0x6f, 0xdf,
0x57, 0x75, 0x07, 0xda, 0x78, 0x48, 0x4d, 0xa1, 0x0f, 0x49, 0xc2, 0x63,
0x35, 0x3b, 0x8e, 0x37, 0xce, 0xf3, 0xa8, 0x24, 0xfa, 0xf0, 0x3e, 0xe9,
0x73, 0x92, 0x7d, 0x60, 0xd3, 0x39, 0x46, 0x7e, 0x57, 0x69, 0x2c, 0xca,
0x95, 0x50, 0x7c, 0xb2, 0x47, 0x72, 0x5e, 0xd7, 0xef, 0xf3, 0xe7, 0x10,
0x84, 0xc0, 0x02, 0x46, 0x8d, 0xe7, 0x19, 0x5c, 0x37, 0x44, 0xbc, 0x93,
0xc8, 0x20, 0xe0, 0x51, 0xd0, 0x6a, 0xf4, 0xae, 0x72, 0x04, 0xb3, 0x19,
0xc2, 0xc4, 0x09, 0x3a, 0x8e, 0xa6, 0x85, 0xf3, 0x7b, 0x16, 0x04, 0x1d,
0x65, 0xc0, 0xaf, 0x77, 0x91, 0xc6, 0x84, 0xe7, 0x84, 0xae, 0x42, 0x7c,
0x56, 0x77, 0x20, 0x6f, 0x0b, 0x49, 0x87, 0xad, 0xa4, 0x15, 0x4c, 0x1b,
0x92, 0x2a, 0x48, 0x0f, 0x1e, 0x1d, 0xca, 0x1e, 0x45, 0xbb, 0xf4, 0xe1,
0xb7, 0x66, 0x85, 0x30, 0x32, 0xa1, 0xb8, 0x6b, 0x9c, 0x82, 0x01, 0x55,
0x7e, 0x14, 0x96, 0x6c, 0xc2, 0x1a, 0x97, 0x9e, 0xe6, 0xf8, 0x17, 0xe5,
0x30, 0xa7, 0x75, 0xa1, 0xac, 0x73, 0xa9, 0x63, 0x93, 0xc8, 0x9f, 0x7f,
0xfa, 0xfe, 0x4b, 0x9c, 0xd1, 0x46, 0x4b, 0xed, 0x3b, 0x04, 0x09, 0xdd,
0x23, 0x28, 0x88, 0x5f, 0x21, 0x2f, 0xa9, 0x1c, 0x9e, 0x37, 0x76, 0x80,
0x53, 0xac, 0x0d, 0xc2, 0x9d, 0x8c, 0xe9, 0xf1, 0x12, 0xde, 0xf5, 0x20,
0xb4, 0xf2, 0x78, 0x97, 0x09, 0x60, 0x4c, 0xa2, 0x76, 0x8f, 0xd8, 0x63,
0x5d, 0x4b, 0xbf, 0x32, 0x49, 0x17, 0x62, 0x91, 0x65, 0xf4, 0x8b, 0xa5,
0x0b, 0x1e, 0xf5, 0xfc, 0x86, 0x8a, 0x10, 0x9f, 0x00, 0xc5, 0xd3, 0xca,
0xc2, 0x9c, 0xc4, 0xc3, 0xbf, 0xdf, 0xbe, 0xf9, 0xce, 0xfb, 0xfc, 0x27,
0x89, 0x73, 0xc8, 0xf9, 0x0e, 0x6b, 0xc2, 0xeb, 0xbe, 0xd1, 0x99, 0x11,
0x89, 0xd4, 0x49, 0x63, 0x92, 0x85, 0xc8, 0x04, 0xe9, 0x1d, 0x22, 0xe5,
0xc0, 0x75, 0x81, 0xbe, 0x5b, 0xe9, 0x10, 0x02, 0x27, 0x29, 0x81, 0x58,
0xd8, 0xc7, 0x5a, 0xa2, 0x67, 0x8f, 0x4f, 0x4b, 0xec, 0x8d, 0xba, 0x5c,
0x09, 0x07, 0xdc, 0xb9, 0xd4, 0x9d, 0xe0, 0x5c, 0xe9, 0x29, 0x05, 0xb7,
0xb6, 0x17, 0xa3, 0x5a, 0x39, 0xf1, 0x9d, 0x44, 0xbb, 0x11, 0xaa, 0xd7,
0x58, 0x86, 0xb9, 0x8f, 0x10, 0x4d, 0x91, 0xe3, 0x90, 0x8c, 0x05, 0x29,
0x1c, 0x50, 0x6b, 0x8f, 0x6a, 0xb6, 0xda, 0xa4, 0x4e, 0xc0, 0x09, 0xfe,
0xfc, 0x13, 0x46, 0xd8, 0x2e, 0x3f, 0x2b, 0xa7, 0xc9, 0x9e, 0x02, 0x9d,
0x74, 0xda, 0xd0, 0xdf, 0x1b, 0xff, 0x3a, 0xa7, 0xf6, 0x4c, 0x82, 0xf7,
0x20, 0xa6, 0xa9, 0x3c, 0x0d, 0x3d, 0x98, 0x6b, 0x06, 0x9b, 0x30, 0xd5,
0x2a, 0x11, 0xc2, 0x79, 0x55, 0xee, 0xed, 0x86, 0x4a, 0xd7, 0x8d, 0x9e,
0x1a, 0x78, 0xfa, 0x99, 0xd4, 0xf7, 0x7e, 0x05, 0x0b, 0x18, 0xee, 0x0a,
0x84, 0xb4, 0x34, 0x3b, 0x2d, 0x51, 0xb6, 0xab, 0xab, 0x25, 0xdb, 0x2c,
0x7f, 0x97, 0xb1, 0x8f, 0x0e, 0x05, 0x11, 0x41, 0xa3, 0x53, 0xd3, 0x79,
0xdf, 0x19, 0xeb, 0x3b, 0x75, 0xc8, 0x44, 0x17, 0x96, 0x81, 0x31, 0xcc,
0xe1, 0x65, 0xdf, 0x62, 0xa9, 0x40, 0x0f, 0x44, 0xf9, 0xa5, 0x92, 0x41,
0x86, 0x54, 0x78, 0x98, 0xdc, 0x51, 0xf5, 0xcd, 0x4c, 0x4e, 0x42, 0x16,
0xbc, 0xf1, 0x80, 0x08, 0x3d, 0xa9, 0xdc, 0xa8, 0xaa, 0xbb, 0x88, 0xb9,
0x52, 0x63, 0xa1, 0x43, 0xac, 0x0a, 0x19, 0x87, 0x53, 0xfc, 0x98, 0x95,
0xa8, 0x56, 0x38, 0x4c, 0xe1, 0xc5, 0x0b, 0xb5, 0x33, 0x83, 0xc4, 0xbf,
0xd8, 0x93, 0x4f, 0x75, 0x49, 0xc4, 0xef, 0xd5, 0x87, 0x3e, 0xd5, 0x30,
0x95, 0x6e, 0x43, 0x41, 0xc8, 0xad, 0x33, 0x91, 0x73, 0xcb, 0xfb, 0xee,
0xee, 0xed, 0x1b, 0x54, 0x84, 0x82, 0xf8, 0x56, 0x2c, 0x69, 0x27, 0x11,
0xcb, 0xac, 0xde, 0x98, 0xf8, 0xc2, 0x9b, 0x7b, 0x8c, 0x38, 0x45, 0x2f,
0xe4, 0x60, 0xa0, 0x37, 0x3a, 0xc6, 0x3c, 0x7b, 0x40, 0xf2, 0x92, 0xa6,
0x35, 0x37, 0x91, 0xa6, 0x39, 0x75, 0xdf, 0x99, 0x30, 0x5c, 0x1c, 0x4f,
0x96, 0xf6, 0xdc, 0x3d, 0xb3, 0xa2, 0x9e, 0xec, 0xaf, 0xf3, 0x2e, 0x5c,
0xb3, 0xbe, 0x56, 0x17, 0x64, 0xb3, 0xe4, 0x63, 0x17, 0x25, 0xd9, 0x58,
0xee, 0xaf, 0x3a, 0xe5, 0x01, 0xa5, 0xb5, 0xc8, 0x0f, 0xb7, 0xad, 0x79,
0xd8, 0xd8, 0x02, 0x92, 0xe5, 0x7e, 0x16, 0x85, 0x3f, 0x1c, 0x84, 0x52,
0x09, 0x4b, 0x0a, 0xb7, 0xc3, 0xe9, 0x51, 0x67, 0x6e, 0x63, 0xa1, 0x49,
0x77, 0x08, 0xa9, 0x8b, 0x8e, 0x00, 0xc3, 0x5e, 0xb4, 0x91, 0x61, 0xf9,
0x4d, 0xb5, 0xc1, 0x9a, 0xd3, 0x6a, 0xdf, 0x0a, 0x5d, 0x88, 0x0c, 0xbe,
0xd6, 0xde, 0x6e, 0xa3, 0xe3, 0xd0, 0xb0, 0xd2, 0xd0, 0x6a, 0x5a, 0x76,
0x4b, 0x61, 0xe3, 0x15, 0x56, 0x5a, 0x69, 0x7c, 0x88, 0x07, 0x26, 0x24,
0x4a, 0x6b, 0xe5, 0x01, 0x4f, 0x94, 0x76, 0xda, 0x84, 0xc4, 0x83, 0x40,
0xbb, 0x20, 0x38, 0x34, 0x4a, 0x6d, 0x66, 0xf6, 0xe9, 0xf5, 0x93, 0x97,
0xf9, 0x53, 0x9b, 0x27, 0xf7, 0x1b, 0x5a, 0x74, 0x77, 0xad, 0x68, 0xa3,
0x90, 0x64, 0xc3, 0x0d, 0x7b, 0xbf, 0x5b, 0x57, 0xfe, 0x02, 0xfc, 0x7f,
0x81, 0x02, 0xf8, 0x8b, 0x40, 0x41, 0xe3, 0x77, 0x06, 0x91, 0xac, 0x84,
0xbe, 0x97, 0xc7, 0xba, 0x38, 0xc0, 0xe1, 0xcc, 0x6c, 0xfc, 0x4a, 0x09,
0x87, 0x2c, 0xf5, 0x63, 0x2d, 0x9c, 0x67, 0x36, 0x5e, 0xd7, 0xfa, 0xf9,
0xa8, 0x26, 0xc1, 0xdf, 0x79, 0xf5, 0xfd, 0x71, 0xdd, 0xf5, 0xb6, 0xc0,
0xf2, 0xcb, 0xf7, 0xe6, 0x62, 0x3c, 0xec, 0x5f, 0x57, 0xb8, 0x01, 0xcc,
0x06, 0xe1, 0x37, 0xdb, 0x6c, 0xc0, 0x7f, 0x6a, 0xc1, 0x2f, 0xe5, 0xff,
0xff, 0xf9, 0x1f, 0xa1, 0xc6, 0xa0, 0x64, 0x16, 0x1a, 0x00, 0x00
};
unsigned int http_html_backup_len = 2423;
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
#include "lmem.h" #include "lmem.h"
#include "platform.h" #include "platform.h"
#include "c_types.h" #include <stdint.h>
#include "vfs.h" #include "vfs.h"
#include "c_string.h" #include <string.h>
#include <alloca.h> #include <alloca.h>
...@@ -126,15 +126,16 @@ static int file_close( lua_State* L ) ...@@ -126,15 +126,16 @@ static int file_close( lua_State* L )
ud = (file_fd_ud *)luaL_checkudata(L, 1, "file.obj"); ud = (file_fd_ud *)luaL_checkudata(L, 1, "file.obj");
} }
// unref default file descriptor
luaL_unref( L, LUA_REGISTRYINDEX, file_fd_ref );
file_fd_ref = LUA_NOREF;
if(ud->fd){ if(ud->fd){
vfs_close(ud->fd); vfs_close(ud->fd);
// mark as closed // mark as closed
ud->fd = 0; ud->fd = 0;
} }
// unref default file descriptor
luaL_unref( L, LUA_REGISTRYINDEX, file_fd_ref );
file_fd_ref = LUA_NOREF;
return 0; return 0;
} }
...@@ -189,7 +190,7 @@ static int file_open( lua_State* L ) ...@@ -189,7 +190,7 @@ static int file_open( lua_State* L )
const char *fname = luaL_checklstring( L, 1, &len ); const char *fname = luaL_checklstring( L, 1, &len );
const char *basename = vfs_basename( fname ); const char *basename = vfs_basename( fname );
luaL_argcheck(L, c_strlen(basename) <= FS_OBJ_NAME_LEN && c_strlen(fname) == len, 1, "filename invalid"); luaL_argcheck(L, strlen(basename) <= FS_OBJ_NAME_LEN && strlen(fname) == len, 1, "filename invalid");
const char *mode = luaL_optstring(L, 2, "r"); const char *mode = luaL_optstring(L, 2, "r");
...@@ -302,7 +303,7 @@ static int file_exists( lua_State* L ) ...@@ -302,7 +303,7 @@ static int file_exists( lua_State* L )
size_t len; size_t len;
const char *fname = luaL_checklstring( L, 1, &len ); const char *fname = luaL_checklstring( L, 1, &len );
const char *basename = vfs_basename( fname ); const char *basename = vfs_basename( fname );
luaL_argcheck(L, c_strlen(basename) <= FS_OBJ_NAME_LEN && c_strlen(fname) == len, 1, "filename invalid"); luaL_argcheck(L, strlen(basename) <= FS_OBJ_NAME_LEN && strlen(fname) == len, 1, "filename invalid");
struct vfs_stat stat; struct vfs_stat stat;
lua_pushboolean(L, vfs_stat((char *)fname, &stat) == VFS_RES_OK ? 1 : 0); lua_pushboolean(L, vfs_stat((char *)fname, &stat) == VFS_RES_OK ? 1 : 0);
...@@ -316,7 +317,7 @@ static int file_remove( lua_State* L ) ...@@ -316,7 +317,7 @@ static int file_remove( lua_State* L )
size_t len; size_t len;
const char *fname = luaL_checklstring( L, 1, &len ); const char *fname = luaL_checklstring( L, 1, &len );
const char *basename = vfs_basename( fname ); const char *basename = vfs_basename( fname );
luaL_argcheck(L, c_strlen(basename) <= FS_OBJ_NAME_LEN && c_strlen(fname) == len, 1, "filename invalid"); luaL_argcheck(L, strlen(basename) <= FS_OBJ_NAME_LEN && strlen(fname) == len, 1, "filename invalid");
vfs_remove((char *)fname); vfs_remove((char *)fname);
return 0; return 0;
} }
...@@ -342,11 +343,11 @@ static int file_rename( lua_State* L ) ...@@ -342,11 +343,11 @@ static int file_rename( lua_State* L )
const char *oldname = luaL_checklstring( L, 1, &len ); const char *oldname = luaL_checklstring( L, 1, &len );
const char *basename = vfs_basename( oldname ); const char *basename = vfs_basename( oldname );
luaL_argcheck(L, c_strlen(basename) <= FS_OBJ_NAME_LEN && c_strlen(oldname) == len, 1, "filename invalid"); luaL_argcheck(L, strlen(basename) <= FS_OBJ_NAME_LEN && strlen(oldname) == len, 1, "filename invalid");
const char *newname = luaL_checklstring( L, 2, &len ); const char *newname = luaL_checklstring( L, 2, &len );
basename = vfs_basename( newname ); basename = vfs_basename( newname );
luaL_argcheck(L, c_strlen(basename) <= FS_OBJ_NAME_LEN && c_strlen(newname) == len, 2, "filename invalid"); luaL_argcheck(L, strlen(basename) <= FS_OBJ_NAME_LEN && strlen(newname) == len, 2, "filename invalid");
if(0 <= vfs_rename( oldname, newname )){ if(0 <= vfs_rename( oldname, newname )){
lua_pushboolean(L, 1); lua_pushboolean(L, 1);
...@@ -361,7 +362,7 @@ static int file_stat( lua_State* L ) ...@@ -361,7 +362,7 @@ static int file_stat( lua_State* L )
{ {
size_t len; size_t len;
const char *fname = luaL_checklstring( L, 1, &len ); const char *fname = luaL_checklstring( L, 1, &len );
luaL_argcheck( L, c_strlen(fname) <= FS_OBJ_NAME_LEN && c_strlen(fname) == len, 1, "filename invalid" ); luaL_argcheck( L, strlen(fname) <= FS_OBJ_NAME_LEN && strlen(fname) == len, 1, "filename invalid" );
struct vfs_stat stat; struct vfs_stat stat;
if (vfs_stat( (char *)fname, &stat ) != VFS_RES_OK) { if (vfs_stat( (char *)fname, &stat ) != VFS_RES_OK) {
...@@ -421,67 +422,42 @@ static int file_stat( lua_State* L ) ...@@ -421,67 +422,42 @@ static int file_stat( lua_State* L )
// g_read() // g_read()
static int file_g_read( lua_State* L, int n, int16_t end_char, int fd ) static int file_g_read( lua_State* L, int n, int16_t end_char, int fd )
{ {
static char *heap_mem = NULL; int i, j;
// free leftover memory luaL_Buffer b;
if (heap_mem) { char p[LUAL_BUFFERSIZE/2];
luaM_free(L, heap_mem);
heap_mem = NULL;
}
if(n <= 0)
n = FILE_READ_CHUNK;
if(end_char < 0 || end_char >255)
end_char = EOF;
if(!fd) if(!fd)
return luaL_error(L, "open a file first"); return luaL_error(L, "open a file first");
char *p; luaL_buffinit(L, &b);
int i;
if (n > LUAL_BUFFERSIZE) { for (j = 0; j < n; j += sizeof(p)) {
// get buffer from heap int nwanted = (n - j >= sizeof(p)) ? sizeof(p) : n - j;
p = heap_mem = luaM_malloc(L, n); int nread = vfs_read(fd, p, nwanted);
} else {
// small chunks go onto the stack
p = alloca(n);
}
n = vfs_read(fd, p, n); if (nread == VFS_RES_ERR || nread == 0) {
// bypass search if no end character provided lua_pushnil(L);
if (n > 0 && end_char != EOF) { return 1;
for (i = 0; i < n; ++i)
if (p[i] == end_char)
{
++i;
break;
}
} else {
i = n;
} }
if (i == 0 || n == VFS_RES_ERR) { for (i = 0; i < nread; ++i) {
if (heap_mem) { luaL_addchar(&b, p[i]);
luaM_free(L, heap_mem); if (p[i] == end_char) {
heap_mem = NULL; vfs_lseek(fd, -nread + j + i + 1, VFS_SEEK_CUR); //reposition after end char found
nread = 0; // force break on outer loop
break;
} }
lua_pushnil(L);
return 1;
} }
vfs_lseek(fd, -(n - i), VFS_SEEK_CUR); if (nread < nwanted)
lua_pushlstring(L, p, i); break;
if (heap_mem) {
luaM_free(L, heap_mem);
heap_mem = NULL;
} }
luaL_pushresult(&b);
return 1; return 1;
} }
// Lua: read() // Lua: read()
// file.read() will read all byte in file // file.read() will read FILE _CHUNK bytes, or EOF is reached.
// file.read(10) will read 10 byte from file, or EOF is reached. // file.read(10) will read 10 byte from file, or EOF is reached.
// file.read('q') will read until 'q' or EOF is reached. // file.read('q') will read until 'q' or EOF is reached.
static int file_read( lua_State* L ) static int file_read( lua_State* L )
...@@ -516,6 +492,28 @@ static int file_readline( lua_State* L ) ...@@ -516,6 +492,28 @@ static int file_readline( lua_State* L )
return file_g_read(L, FILE_READ_CHUNK, '\n', fd); return file_g_read(L, FILE_READ_CHUNK, '\n', fd);
} }
// Lua: getfile(filename)
static int file_getfile( lua_State* L )
{
// Warning this code C calls other file_* routines to avoid duplication code. These
// use Lua stack addressing of arguments, so this does Lua stack maniplation to
// align these
int ret_cnt = 0;
lua_settop(L ,1);
// Stack [1] = FD
file_open(L);
// Stack [1] = filename; [2] = FD or nil
if (!lua_isnil(L, -1)) {
lua_remove(L, 1); // dump filename, so [1] = FD
file_fd_ud *ud = (file_fd_ud *)luaL_checkudata(L, 1, "file.obj");
ret_cnt = file_g_read(L, LUAI_MAXINT32, EOF, ud->fd);
// Stack [1] = FD; [2] = contents if ret_cnt = 1;
file_close(L); // leaves Stack unchanged if [1] = FD
lua_remove(L, 1); // Dump FD leaving contents as [1] / ToS
}
return ret_cnt;
}
// Lua: write("string") // Lua: write("string")
static int file_write( lua_State* L ) static int file_write( lua_State* L )
{ {
...@@ -556,6 +554,34 @@ static int file_writeline( lua_State* L ) ...@@ -556,6 +554,34 @@ static int file_writeline( lua_State* L )
return 1; return 1;
} }
// Lua: getfile(filename)
static int file_putfile( lua_State* L )
{
// Warning this code C calls other file_* routines to avoid duplication code. These
// use Lua stack addressing of arguments, so this does Lua stack maniplation to
// align these
int ret_cnt = 0;
lua_settop(L, 2);
lua_pushvalue(L, 2); //dup contents onto the ToS [3]
lua_pushliteral(L, "w+");
lua_replace(L, 2);
// Stack [1] = filename; [2] "w+" [3] contents;
file_open(L);
// Stack [1] = filename; [2] "w+" [3] contents; [4] FD or nil
if (!lua_isnil(L, -1)) {
lua_remove(L, 2); //dump "w+" attribute literal
lua_replace(L, 1);
// Stack [1] = FD; [2] contents
file_write(L);
// Stack [1] = FD; [2] contents; [3] result status
lua_remove(L, 2); //dump contents
file_close(L);
lua_remove(L, 1); // Dump FD leaving status as ToS
}
return 1;
}
// Lua: fsinfo() // Lua: fsinfo()
static int file_fsinfo( lua_State* L ) static int file_fsinfo( lua_State* L )
{ {
...@@ -619,62 +645,76 @@ static int file_vol_umount( lua_State *L ) ...@@ -619,62 +645,76 @@ static int file_vol_umount( lua_State *L )
} }
static const LUA_REG_TYPE file_obj_map[] = LROT_BEGIN(file_obj)
{ LROT_FUNCENTRY( close, file_close )
{ LSTRKEY( "close" ), LFUNCVAL( file_close ) }, LROT_FUNCENTRY( read, file_read )
{ LSTRKEY( "read" ), LFUNCVAL( file_read ) }, LROT_FUNCENTRY( readline, file_readline )
{ LSTRKEY( "readline" ), LFUNCVAL( file_readline ) }, LROT_FUNCENTRY( write, file_write )
{ LSTRKEY( "write" ), LFUNCVAL( file_write ) }, LROT_FUNCENTRY( writeline, file_writeline )
{ LSTRKEY( "writeline" ), LFUNCVAL( file_writeline ) }, LROT_FUNCENTRY( seek, file_seek )
{ LSTRKEY( "seek" ), LFUNCVAL( file_seek ) }, LROT_FUNCENTRY( flush, file_flush )
{ LSTRKEY( "flush" ), LFUNCVAL( file_flush ) }, LROT_FUNCENTRY( __gc, file_obj_free )
{ LSTRKEY( "__gc" ), LFUNCVAL( file_obj_free ) }, LROT_TABENTRY( __index, file_obj )
{ LSTRKEY( "__index" ), LROVAL( file_obj_map ) }, LROT_END( file_obj, file_obj, LROT_MASK_GC_INDEX )
{ LNILKEY, LNILVAL }
};
LROT_BEGIN(file_vol)
static const LUA_REG_TYPE file_vol_map[] = LROT_FUNCENTRY( umount, file_vol_umount )
{ // LROT_FUNCENTRY( getfree, file_vol_getfree )
{ LSTRKEY( "umount" ), LFUNCVAL( file_vol_umount )}, // LROT_FUNCENTRY( getlabel, file_vol_getlabel )
//{ LSTRKEY( "getfree" ), LFUNCVAL( file_vol_getfree )}, // LROT_FUNCENTRY( __gc, file_vol_free )
//{ LSTRKEY( "getlabel" ), LFUNCVAL( file_vol_getlabel )}, LROT_TABENTRY( __index, file_vol )
//{ LSTRKEY( "__gc" ), LFUNCVAL( file_vol_free ) }, LROT_END( file_vol, file_vol, LROT_MASK_GC_INDEX )
{ LSTRKEY( "__index" ), LROVAL( file_vol_map ) },
{ LNILKEY, LNILVAL }
};
// Module function map
static const LUA_REG_TYPE file_map[] = {
{ LSTRKEY( "list" ), LFUNCVAL( file_list ) },
{ LSTRKEY( "open" ), LFUNCVAL( file_open ) },
{ LSTRKEY( "close" ), LFUNCVAL( file_close ) },
{ LSTRKEY( "write" ), LFUNCVAL( file_write ) },
{ LSTRKEY( "writeline" ), LFUNCVAL( file_writeline ) },
{ LSTRKEY( "read" ), LFUNCVAL( file_read ) },
{ LSTRKEY( "readline" ), LFUNCVAL( file_readline ) },
#ifdef BUILD_SPIFFS #ifdef BUILD_SPIFFS
{ LSTRKEY( "format" ), LFUNCVAL( file_format ) }, #define LROT_FUNCENTRY_S(n,f) LROT_FUNCENTRY(n,f)
{ LSTRKEY( "fscfg" ), LFUNCVAL( file_fscfg ) }, #else
#define LROT_FUNCENTRY_S(n,f)
#endif #endif
{ LSTRKEY( "remove" ), LFUNCVAL( file_remove ) },
{ LSTRKEY( "seek" ), LFUNCVAL( file_seek ) },
{ LSTRKEY( "flush" ), LFUNCVAL( file_flush ) },
{ LSTRKEY( "rename" ), LFUNCVAL( file_rename ) },
{ LSTRKEY( "exists" ), LFUNCVAL( file_exists ) },
{ LSTRKEY( "fsinfo" ), LFUNCVAL( file_fsinfo ) },
{ LSTRKEY( "on" ), LFUNCVAL( file_on ) },
{ LSTRKEY( "stat" ), LFUNCVAL( file_stat ) },
#ifdef BUILD_FATFS #ifdef BUILD_FATFS
{ LSTRKEY( "mount" ), LFUNCVAL( file_mount ) }, #define LROT_FUNCENTRY_F(n,f) LROT_FUNCENTRY(n,f)
{ LSTRKEY( "chdir" ), LFUNCVAL( file_chdir ) }, #else
#define LROT_FUNCENTRY_F(n,f)
#endif #endif
{ LNILKEY, LNILVAL }
}; // Module function map
LROT_BEGIN(file)
LROT_FUNCENTRY( list, file_list )
LROT_FUNCENTRY( open, file_open )
LROT_FUNCENTRY( close, file_close )
LROT_FUNCENTRY( write, file_write )
LROT_FUNCENTRY( writeline, file_writeline )
LROT_FUNCENTRY( read, file_read )
LROT_FUNCENTRY( readline, file_readline )
LROT_FUNCENTRY_S( format, file_format )
LROT_FUNCENTRY_S( fscfg, file_fscfg )
LROT_FUNCENTRY( remove, file_remove )
LROT_FUNCENTRY( seek, file_seek )
LROT_FUNCENTRY( flush, file_flush )
LROT_FUNCENTRY( rename, file_rename )
LROT_FUNCENTRY( exists, file_exists )
LROT_FUNCENTRY( getcontents, file_getfile )
LROT_FUNCENTRY( putcontents, file_putfile )
LROT_FUNCENTRY( fsinfo, file_fsinfo )
LROT_FUNCENTRY( on, file_on )
LROT_FUNCENTRY( stat, file_stat )
LROT_FUNCENTRY_F( mount, file_mount )
LROT_FUNCENTRY_F( chdir, file_chdir )
LROT_END( file, NULL, 0 )
int luaopen_file( lua_State *L ) { int luaopen_file( lua_State *L ) {
luaL_rometatable( L, "file.vol", (void *)file_vol_map ); if (!vfs_mount("/FLASH", 0)) {
luaL_rometatable( L, "file.obj", (void *)file_obj_map ); // Failed to mount -- try reformat
dbg_printf("Formatting file system. Please wait...\n");
if (!vfs_format()) {
NODE_ERR( "\n*** ERROR ***: unable to format. FS might be compromised.\n" );
NODE_ERR( "It is advised to re-flash the NodeMCU image.\n" );
}
}
luaL_rometatable( L, "file.vol", LROT_TABLEREF(file_vol));
luaL_rometatable( L, "file.obj", LROT_TABLEREF(file_obj));
return 0; return 0;
} }
NODEMCU_MODULE(FILE, "file", file_map, luaopen_file); NODEMCU_MODULE(FILE, "file", file, luaopen_file);
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#include "module.h" #include "module.h"
#include "lauxlib.h" #include "lauxlib.h"
#include "platform.h" #include "platform.h"
#include "c_types.h" #include <stdint.h>
#include "user_interface.h" #include "user_interface.h"
#include "../esp-gdbstub/gdbstub.h" #include "../esp-gdbstub/gdbstub.h"
...@@ -39,11 +39,11 @@ static int lgdbstub_open(lua_State *L) { ...@@ -39,11 +39,11 @@ static int lgdbstub_open(lua_State *L) {
} }
// Module function map // Module function map
static const LUA_REG_TYPE gdbstub_map[] = { LROT_BEGIN(gdbstub)
{ LSTRKEY( "brk" ), LFUNCVAL( lgdbstub_break ) }, LROT_FUNCENTRY( brk, lgdbstub_break )
{ LSTRKEY( "gdboutput" ), LFUNCVAL( lgdbstub_gdboutput) }, LROT_FUNCENTRY( gdboutput, lgdbstub_gdboutput )
{ LSTRKEY( "open" ), LFUNCVAL( lgdbstub_open) }, LROT_FUNCENTRY( open, lgdbstub_open )
{ LNILKEY, LNILVAL } LROT_END( gdbstub, NULL, 0 )
};
NODEMCU_MODULE(GDBSTUB, "gdbstub", gdbstub_map, NULL);
NODEMCU_MODULE(GDBSTUB, "gdbstub", gdbstub, NULL);
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
#include "lmem.h" #include "lmem.h"
#include "platform.h" #include "platform.h"
#include "user_interface.h" #include "user_interface.h"
#include "c_types.h" #include <stdint.h>
#include "c_string.h" #include <string.h>
#include "gpio.h" #include "gpio.h"
#include "hw_timer.h" #include "hw_timer.h"
...@@ -319,32 +319,32 @@ static int lgpio_serout( lua_State* L ) ...@@ -319,32 +319,32 @@ static int lgpio_serout( lua_State* L )
#undef DELAY_TABLE_MAX_LEN #undef DELAY_TABLE_MAX_LEN
#ifdef LUA_USE_MODULES_GPIO_PULSE #ifdef LUA_USE_MODULES_GPIO_PULSE
extern const LUA_REG_TYPE gpio_pulse_map[]; LROT_EXTERN(gpio_pulse);
extern int gpio_pulse_init(lua_State *); extern int gpio_pulse_init(lua_State *);
#endif #endif
// Module function map // Module function map
static const LUA_REG_TYPE gpio_map[] = { LROT_BEGIN(gpio)
{ LSTRKEY( "mode" ), LFUNCVAL( lgpio_mode ) }, LROT_FUNCENTRY( mode, lgpio_mode )
{ LSTRKEY( "read" ), LFUNCVAL( lgpio_read ) }, LROT_FUNCENTRY( read, lgpio_read )
{ LSTRKEY( "write" ), LFUNCVAL( lgpio_write ) }, LROT_FUNCENTRY( write, lgpio_write )
{ LSTRKEY( "serout" ), LFUNCVAL( lgpio_serout ) }, LROT_FUNCENTRY( serout, lgpio_serout )
#ifdef LUA_USE_MODULES_GPIO_PULSE #ifdef LUA_USE_MODULES_GPIO_PULSE
{ LSTRKEY( "pulse" ), LROVAL( gpio_pulse_map ) }, //declared in gpio_pulse.c LROT_TABENTRY( pulse, gpio_pulse )
#endif #endif
#ifdef GPIO_INTERRUPT_ENABLE #ifdef GPIO_INTERRUPT_ENABLE
{ LSTRKEY( "trig" ), LFUNCVAL( lgpio_trig ) }, LROT_FUNCENTRY( trig, lgpio_trig )
{ LSTRKEY( "INT" ), LNUMVAL( INTERRUPT ) }, LROT_NUMENTRY( INT, INTERRUPT )
#endif #endif
{ LSTRKEY( "OUTPUT" ), LNUMVAL( OUTPUT ) }, LROT_NUMENTRY( OUTPUT, OUTPUT )
{ LSTRKEY( "OPENDRAIN" ), LNUMVAL( OPENDRAIN ) }, LROT_NUMENTRY( OPENDRAIN, OPENDRAIN )
{ LSTRKEY( "INPUT" ), LNUMVAL( INPUT ) }, LROT_NUMENTRY( INPUT, INPUT )
{ LSTRKEY( "HIGH" ), LNUMVAL( HIGH ) }, LROT_NUMENTRY( HIGH, HIGH )
{ LSTRKEY( "LOW" ), LNUMVAL( LOW ) }, LROT_NUMENTRY( LOW, LOW )
{ LSTRKEY( "FLOAT" ), LNUMVAL( FLOAT ) }, LROT_NUMENTRY( FLOAT, FLOAT )
{ LSTRKEY( "PULLUP" ), LNUMVAL( PULLUP ) }, LROT_NUMENTRY( PULLUP, PULLUP )
{ LNILKEY, LNILVAL } LROT_END( gpio, NULL, 0 )
};
int luaopen_gpio( lua_State *L ) { int luaopen_gpio( lua_State *L ) {
#ifdef LUA_USE_MODULES_GPIO_PULSE #ifdef LUA_USE_MODULES_GPIO_PULSE
...@@ -362,4 +362,4 @@ int luaopen_gpio( lua_State *L ) { ...@@ -362,4 +362,4 @@ int luaopen_gpio( lua_State *L ) {
return 0; return 0;
} }
NODEMCU_MODULE(GPIO, "gpio", gpio_map, luaopen_gpio); NODEMCU_MODULE(GPIO, "gpio", gpio, luaopen_gpio);
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
#include "lmem.h" #include "lmem.h"
#include "platform.h" #include "platform.h"
#include "user_interface.h" #include "user_interface.h"
#include "c_types.h" #include <stdint.h>
#include "c_string.h" #include <string.h>
#include "gpio.h" #include "gpio.h"
#include "hw_timer.h" #include "hw_timer.h"
#include "pin_map.h" #include "pin_map.h"
...@@ -467,31 +467,30 @@ static void gpio_pulse_task(os_param_t param, uint8_t prio) ...@@ -467,31 +467,30 @@ static void gpio_pulse_task(os_param_t param, uint8_t prio)
} }
} }
static const LUA_REG_TYPE pulse_map[] = { LROT_BEGIN(pulse)
{ LSTRKEY( "getstate" ), LFUNCVAL( gpio_pulse_getstate ) }, LROT_FUNCENTRY( getstate, gpio_pulse_getstate )
{ LSTRKEY( "stop" ), LFUNCVAL( gpio_pulse_stop ) }, LROT_FUNCENTRY( stop, gpio_pulse_stop )
{ LSTRKEY( "cancel" ), LFUNCVAL( gpio_pulse_cancel ) }, LROT_FUNCENTRY( cancel, gpio_pulse_cancel )
{ LSTRKEY( "start" ), LFUNCVAL( gpio_pulse_start ) }, LROT_FUNCENTRY( start, gpio_pulse_start )
{ LSTRKEY( "adjust" ), LFUNCVAL( gpio_pulse_adjust ) }, LROT_FUNCENTRY( adjust, gpio_pulse_adjust )
{ LSTRKEY( "update" ), LFUNCVAL( gpio_pulse_update ) }, LROT_FUNCENTRY( update, gpio_pulse_update )
{ LSTRKEY( "__gc" ), LFUNCVAL( gpio_pulse_delete ) }, LROT_FUNCENTRY( __gc, gpio_pulse_delete )
{ LSTRKEY( "__index" ), LROVAL( pulse_map ) }, LROT_TABENTRY( __index, pulse )
{ LNILKEY, LNILVAL } LROT_END( pulse, pulse, LROT_MASK_GC_INDEX )
};
const LUA_REG_TYPE gpio_pulse_map[] = LROT_PUBLIC_BEGIN(gpio_pulse)
{ LROT_FUNCENTRY( build, gpio_pulse_build )
{ LSTRKEY( "build" ), LFUNCVAL( gpio_pulse_build ) }, LROT_TABENTRY( __index, gpio_pulse )
{ LSTRKEY( "__index" ), LROVAL( gpio_pulse_map ) }, LROT_END( gpio_pulse, gpio_pulse, LROT_MASK_INDEX )
{ LNILKEY, LNILVAL }
};
int gpio_pulse_init(lua_State *L) int gpio_pulse_init(lua_State *L)
{ {
luaL_rometatable(L, "gpio.pulse", (void *)pulse_map); luaL_rometatable(L, "gpio.pulse", LROT_TABLEREF(pulse));
tasknumber = task_get_id(gpio_pulse_task); tasknumber = task_get_id(gpio_pulse_task);
return 0; return 0;
} }
//NODEMCU_MODULE(GPIOPULSE, "gpiopulse", gpio_pulse_map, gpio_pulse_init); NODEMCU_MODULE(GPIOPULSE, "gpiopulse", gpio_pulse, gpio_pulse_init);
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
#include "module.h" #include "module.h"
#include "lauxlib.h" #include "lauxlib.h"
#include "platform.h" #include "platform.h"
#include "c_stdlib.h" #include <stdlib.h>
#include "c_string.h" #include <string.h>
#include "c_math.h" #include <math.h>
static const uint32_t hdc1080_i2c_id = 0; static const uint32_t hdc1080_i2c_id = 0;
static const uint8_t hdc1080_i2c_addr = 0x40; static const uint8_t hdc1080_i2c_addr = 0x40;
...@@ -99,10 +99,10 @@ static int hdc1080_read(lua_State* L) { ...@@ -99,10 +99,10 @@ static int hdc1080_read(lua_State* L) {
return 2; return 2;
} }
static const LUA_REG_TYPE hdc1080_map[] = { LROT_BEGIN(hdc1080)
{ LSTRKEY( "read" ), LFUNCVAL( hdc1080_read )}, LROT_FUNCENTRY( read, hdc1080_read )
{ LSTRKEY( "setup" ), LFUNCVAL( hdc1080_setup )}, LROT_FUNCENTRY( setup, hdc1080_setup )
{ LNILKEY, LNILVAL} LROT_END( hdc1080, NULL, 0 )
};
NODEMCU_MODULE(HDC1080, "hdc1080", hdc1080_map, NULL);
NODEMCU_MODULE(HDC1080, "hdc1080", hdc1080, NULL);
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
#include "module.h" #include "module.h"
#include "lauxlib.h" #include "lauxlib.h"
#include "platform.h" #include "platform.h"
#include "c_stdlib.h" #include <stdlib.h>
#include "c_string.h" #include <string.h>
static const uint32_t hmc5883_i2c_id = 0; static const uint32_t hmc5883_i2c_id = 0;
static const uint8_t hmc5883_i2c_addr = 0x1E; static const uint8_t hmc5883_i2c_addr = 0x1E;
...@@ -89,10 +89,10 @@ static int hmc5883_read(lua_State* L) { ...@@ -89,10 +89,10 @@ static int hmc5883_read(lua_State* L) {
return 3; return 3;
} }
static const LUA_REG_TYPE hmc5883_map[] = { LROT_BEGIN(hmc5883)
{ LSTRKEY( "read" ), LFUNCVAL( hmc5883_read )}, LROT_FUNCENTRY( read, hmc5883_read )
{ LSTRKEY( "setup" ), LFUNCVAL( hmc5883_setup )}, LROT_FUNCENTRY( setup, hmc5883_setup )
{ LNILKEY, LNILVAL} LROT_END( hmc5883, NULL, 0 )
};
NODEMCU_MODULE(HMC5883L, "hmc5883l", hmc5883_map, NULL);
NODEMCU_MODULE(HMC5883L, "hmc5883l", hmc5883, NULL);
...@@ -3,12 +3,12 @@ ...@@ -3,12 +3,12 @@
* vowstar@gmail.com * vowstar@gmail.com
* 2015-12-29 * 2015-12-29
*******************************************************************************/ *******************************************************************************/
#include <c_stdlib.h> #include <stdlib.h>
#include "module.h" #include "module.h"
#include "lauxlib.h" #include "lauxlib.h"
#include "platform.h" #include "platform.h"
#include "cpu_esp8266.h" #include "cpu_esp8266.h"
#include "httpclient.h" #include "http/httpclient.h"
static int http_callback_registry = LUA_NOREF; static int http_callback_registry = LUA_NOREF;
...@@ -92,7 +92,7 @@ static void http_callback( char * response, int http_status, char ** full_respon ...@@ -92,7 +92,7 @@ static void http_callback( char * response, int http_status, char ** full_respon
} }
if (full_response_p && *full_response_p) { if (full_response_p && *full_response_p) {
c_free(*full_response_p); free(*full_response_p);
*full_response_p = NULL; *full_response_p = NULL;
} }
...@@ -269,17 +269,17 @@ static int http_lapi_get( lua_State *L ) ...@@ -269,17 +269,17 @@ static int http_lapi_get( lua_State *L )
} }
// Module function map // Module function map
static const LUA_REG_TYPE http_map[] = { LROT_BEGIN(http)
{ LSTRKEY( "request" ), LFUNCVAL( http_lapi_request ) }, LROT_FUNCENTRY( request, http_lapi_request )
{ LSTRKEY( "post" ), LFUNCVAL( http_lapi_post ) }, LROT_FUNCENTRY( post, http_lapi_post )
{ LSTRKEY( "put" ), LFUNCVAL( http_lapi_put ) }, LROT_FUNCENTRY( put, http_lapi_put )
{ LSTRKEY( "delete" ), LFUNCVAL( http_lapi_delete ) }, LROT_FUNCENTRY( delete, http_lapi_delete )
{ LSTRKEY( "get" ), LFUNCVAL( http_lapi_get ) }, LROT_FUNCENTRY( get, http_lapi_get )
{ LSTRKEY( "OK" ), LNUMVAL( 0 ) }, LROT_NUMENTRY( OK, 0 )
{ LSTRKEY( "ERROR" ), LNUMVAL( HTTP_STATUS_GENERIC_ERROR ) }, LROT_NUMENTRY( ERROR, HTTP_STATUS_GENERIC_ERROR )
{ LNILKEY, LNILVAL } LROT_END( http, NULL, 0 )
};
NODEMCU_MODULE(HTTP, "http", http_map, NULL);
NODEMCU_MODULE(HTTP, "http", http, NULL);
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
#include "module.h" #include "module.h"
#include "lauxlib.h" #include "lauxlib.h"
#include "platform.h" #include "platform.h"
#include "c_stdlib.h" #include <stdlib.h>
#include "c_string.h" #include <string.h>
#include "user_interface.h" #include "user_interface.h"
static uint8_t data_pin; static uint8_t data_pin;
static uint8_t clk_pin; static uint8_t clk_pin;
...@@ -66,15 +66,15 @@ static int ICACHE_FLASH_ATTR hx711_read(lua_State* L) { ...@@ -66,15 +66,15 @@ static int ICACHE_FLASH_ATTR hx711_read(lua_State* L) {
} }
// Module function map // Module function map
static const LUA_REG_TYPE hx711_map[] = { LROT_BEGIN(hx711)
{ LSTRKEY( "init" ), LFUNCVAL( hx711_init )}, LROT_FUNCENTRY( init, hx711_init )
{ LSTRKEY( "read" ), LFUNCVAL( hx711_read )}, LROT_FUNCENTRY( read, hx711_read )
{ LNILKEY, LNILVAL} LROT_END( hx711, NULL, 0 )
};
int luaopen_hx711(lua_State *L) { int luaopen_hx711(lua_State *L) {
// TODO: Make sure that the GPIO system is initialized // TODO: Make sure that the GPIO system is initialized
return 0; return 0;
} }
NODEMCU_MODULE(HX711, "hx711", hx711_map, luaopen_hx711); NODEMCU_MODULE(HX711, "hx711", hx711, luaopen_hx711);
...@@ -15,13 +15,16 @@ static int i2c_setup( lua_State *L ) ...@@ -15,13 +15,16 @@ static int i2c_setup( lua_State *L )
MOD_CHECK_ID( gpio, sda ); MOD_CHECK_ID( gpio, sda );
MOD_CHECK_ID( gpio, scl ); MOD_CHECK_ID( gpio, scl );
if(scl==0 || sda==0) if ( sda == 0 )
return luaL_error( L, "no i2c for D0" ); return luaL_error( L, "i2c SDA on D0 is not supported" );
s32 speed = ( s32 )luaL_checkinteger( L, 4 ); s32 speed = ( s32 )luaL_checkinteger( L, 4 );
if (speed <= 0) if ( speed <= 0 )
return luaL_error( L, "wrong arg range" ); return luaL_error( L, "wrong arg range" );
lua_pushinteger( L, platform_i2c_setup( id, sda, scl, (u32)speed ) ); speed = platform_i2c_setup( id, sda, scl, (u32)speed );
if ( speed == 0 )
return luaL_error( L, "failed to initialize i2c %d", id );
lua_pushinteger( L, speed );
return 1; return 1;
} }
...@@ -31,7 +34,10 @@ static int i2c_start( lua_State *L ) ...@@ -31,7 +34,10 @@ static int i2c_start( lua_State *L )
unsigned id = luaL_checkinteger( L, 1 ); unsigned id = luaL_checkinteger( L, 1 );
MOD_CHECK_ID( i2c, id ); MOD_CHECK_ID( i2c, id );
if (platform_i2c_configured( id ) )
platform_i2c_send_start( id ); platform_i2c_send_start( id );
else
luaL_error( L, "i2c %d is not configured", id );
return 0; return 0;
} }
...@@ -140,18 +146,19 @@ static int i2c_read( lua_State *L ) ...@@ -140,18 +146,19 @@ static int i2c_read( lua_State *L )
} }
// Module function map // Module function map
static const LUA_REG_TYPE i2c_map[] = { LROT_BEGIN(i2c)
{ LSTRKEY( "setup" ), LFUNCVAL( i2c_setup ) }, LROT_FUNCENTRY( setup, i2c_setup )
{ LSTRKEY( "start" ), LFUNCVAL( i2c_start ) }, LROT_FUNCENTRY( start, i2c_start )
{ LSTRKEY( "stop" ), LFUNCVAL( i2c_stop ) }, LROT_FUNCENTRY( stop, i2c_stop )
{ LSTRKEY( "address" ), LFUNCVAL( i2c_address ) }, LROT_FUNCENTRY( address, i2c_address )
{ LSTRKEY( "write" ), LFUNCVAL( i2c_write ) }, LROT_FUNCENTRY( write, i2c_write )
{ LSTRKEY( "read" ), LFUNCVAL( i2c_read ) }, LROT_FUNCENTRY( read, i2c_read )
//{ LSTRKEY( "FAST" ), LNUMVAL( PLATFORM_I2C_SPEED_FAST ) }, LROT_NUMENTRY( FASTPLUS, PLATFORM_I2C_SPEED_FASTPLUS )
{ LSTRKEY( "SLOW" ), LNUMVAL( PLATFORM_I2C_SPEED_SLOW ) }, LROT_NUMENTRY( FAST, PLATFORM_I2C_SPEED_FAST )
{ LSTRKEY( "TRANSMITTER" ), LNUMVAL( PLATFORM_I2C_DIRECTION_TRANSMITTER ) }, LROT_NUMENTRY( SLOW, PLATFORM_I2C_SPEED_SLOW )
{ LSTRKEY( "RECEIVER" ), LNUMVAL( PLATFORM_I2C_DIRECTION_RECEIVER ) }, LROT_NUMENTRY( TRANSMITTER, PLATFORM_I2C_DIRECTION_TRANSMITTER )
{ LNILKEY, LNILVAL } LROT_NUMENTRY( RECEIVER, PLATFORM_I2C_DIRECTION_RECEIVER )
}; LROT_END( i2c, NULL, 0 )
NODEMCU_MODULE(I2C, "i2c", i2c_map, NULL);
NODEMCU_MODULE(I2C, "i2c", i2c, NULL);
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
#include "module.h" #include "module.h"
#include "lauxlib.h" #include "lauxlib.h"
#include "platform.h" #include "platform.h"
#include "c_stdlib.h" #include <stdlib.h>
#include "c_string.h" #include <string.h>
static const uint32_t i2c_id = 0; static const uint32_t i2c_id = 0;
static const uint8_t i2c_addr = 0x69; static const uint8_t i2c_addr = 0x69;
...@@ -79,10 +79,10 @@ static int l3g4200d_read(lua_State* L) { ...@@ -79,10 +79,10 @@ static int l3g4200d_read(lua_State* L) {
return 3; return 3;
} }
static const LUA_REG_TYPE l3g4200d_map[] = { LROT_BEGIN(l3g4200d)
{ LSTRKEY( "read" ), LFUNCVAL( l3g4200d_read )}, LROT_FUNCENTRY( read, l3g4200d_read )
{ LSTRKEY( "setup" ), LFUNCVAL( l3g4200d_setup )}, LROT_FUNCENTRY( setup, l3g4200d_setup )
{ LNILKEY, LNILVAL} LROT_END( l3g4200d, NULL, 0 )
};
NODEMCU_MODULE(L3G4200D, "l3g4200d", l3g4200d_map, NULL);
NODEMCU_MODULE(L3G4200D, "l3g4200d", l3g4200d, NULL);
...@@ -204,14 +204,14 @@ static int mcp4725_read(lua_State* L){ ...@@ -204,14 +204,14 @@ static int mcp4725_read(lua_State* L){
} }
static const LUA_REG_TYPE mcp4725_map[] = { LROT_BEGIN(mcp4725)
{ LSTRKEY( "write" ), LFUNCVAL( mcp4725_write ) }, LROT_FUNCENTRY( write, mcp4725_write )
{ LSTRKEY( "read" ), LFUNCVAL( mcp4725_read ) }, LROT_FUNCENTRY( read, mcp4725_read )
{ LSTRKEY( "PWRDN_NONE" ), LNUMVAL(MCP4725_POWER_DOWN_NORMAL) }, LROT_NUMENTRY( PWRDN_NONE, MCP4725_POWER_DOWN_NORMAL )
{ LSTRKEY( "PWRDN_1K" ), LNUMVAL((MCP4725_POWER_DOWN_RES_1K)>>1) }, LROT_NUMENTRY( PWRDN_1K, MCP4725_POWER_DOWN_RES_1K>>1 )
{ LSTRKEY( "PWRDN_100K" ), LNUMVAL((MCP4725_POWER_DOWN_RES_100K)>>1) }, LROT_NUMENTRY( PWRDN_100K, MCP4725_POWER_DOWN_RES_100K>>1 )
{ LSTRKEY( "PWRDN_500K" ), LNUMVAL((MCP4725_POWER_DOWN_RES_500K)>>1) }, LROT_NUMENTRY( PWRDN_500K, MCP4725_POWER_DOWN_RES_500K>>1 )
{ LNILKEY, LNILVAL} LROT_END( mcp4725, NULL, 0 )
};
NODEMCU_MODULE(MCP4725, "mcp4725", mcp4725_map, NULL); NODEMCU_MODULE(MCP4725, "mcp4725", mcp4725, NULL);
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment