Most recent activity
-
I'd like to use the espruino for data logging purposes and transmit the log data to a host by WiFi. The file system should be used to buffer data in between connections, but the file system API is only able to work on files as a whole at the moment. So an indexed block read/write improvement would really help, and/or even better a file object (or handle) that was able to keep the file open.
I haven't yet looked into the Espruino source code, but I'd like to help on building the API. What environment/toolchain are you using for building Espruino (I'm sure I've read that somewhere earlier on, but I've forgot where it is).
-
-
I've just flashed an Olimexino-STM32 board with the 1.60 version. Blinking LED's are working fine, but the code below produces an out of memory error when x=220, I've tried to rewrite the JavaScript in several ways, without luck.
It doesn't make much sense to me, but an unqualified guess would be that the strings produced in the console.log statement are not being released.
var i=0; function Testing() { console.log(i); i++; // No effect process.memory(); } for (var x=0; x<1000; x++) Testing();
I've found some information about building Espruino in the forums.