-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathedward.ino.template
88 lines (75 loc) · 2.29 KB
/
edward.ino.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include "Arduino.h"
#include "WARDuino.h"
WARDuino* wac = WARDuino::instance();
SocketServer* server;
ServerCredentials serverCredentials = {"{{SSID}}", "{{Password}}"};
uint16_t pullportno = 8080;
uint16_t pushportno = 8081;
#define D1 5
volatile bool handelingInterrupt = false;
uint8_t buff[100] = {0};
uint8_t buff_len = 0;
void ICACHE_RAM_ATTR handleInput() {
if (handelingInterrupt) return;
handelingInterrupt = true;
interrupts();
while (Serial.available()) {
size_t buff_len = 0;
while (Serial.available()) {
buff[buff_len++] = (int8_t)Serial.read();
}
if (buff_len) {
wac->handleInterrupt(buff_len, buff);
}
}
handelingInterrupt = false;
}
void startDebuggerStd(void* pvParameter) {
int valread;
uint8_t buffer[1024] = {0};
wac->debugger->setChannel(fileno(stdout));
write(fileno(stdout), "Got a message ... \n", 19);
while (true) {
// taskYIELD();
// vTaskDelay(100 / portTICK_PERIOD_MS);
yield();
while (Serial.available()) {
size_t buff_len = 0;
while (Serial.available()) {
buffer[buff_len++] = (int8_t)Serial.read();
}
if (buff_len) {
write(fileno(stdout), "Reading message ..... \n", 19);
fflush(stdout);
wac->handleInterrupt(valread - 1, buffer);
write(fileno(stdout), buffer, valread);
fflush(stdout);
}
}
}
}
void handleInterrupt(size_t len, uint8_t* buff) {
wac->handleInterrupt(len, buff);
}
void setup() {
Serial.begin(115200);
attachInterrupt(D1, handleInput, CHANGE);
// create & connect SocketServer
SocketServer::createServer(pullportno, pushportno, &handleInterrupt);
server = SocketServer::getServer();
server->connect2Wifi(&serverCredentials);
}
void loop() {
disableCore0WDT();
Module* m = wac->load_module(impl_wasm, impl_wasm_len, {});
server->begin();
printf("LOADED \n\n");
xTaskCreate(startDebuggerStd, "Debug Thread", 5000, NULL, 1, NULL);
printf("START\n\n");
for (int i = 0; i < 10; i++) {
wac->run_module(m);
printf("%d: %u\n", i, m->stack->value.uint32);
}
wac->unload_module(m);
printf("DONE\n\n");
}