Jonas S Karlsson
Jonas S Karlsson
Hi, Blessed is great stuff! I was thinking about something similar. Essentially, one could build a "packer" for layouts once the elements been rendered. I saw some note that you...
Thanks I'll check it out! Jonas On Sat, 20 Jul 2019, 18:27 Dirk T., wrote: > I tried to install esp-lisp on macOS and failed (with the build-in git) to...
You don't need imacs, that's just editor. Just comment out any references/calls to it. Sorry, I'm in bangkok and have no computer here. Jonas On Sun, Apr 25, 2021, 19:59...
Thanks! You mean you looked at - https://github.com/SuperHouse/esp-open-rtos/blob/master/core/include/esp/spi.h ?
I've added 2 new functions for both unix and esp8266 - (random) => -seed - (random -seed) => -seed - (random N) => [0, N[ - (random S E) =>...
Have now added SPIFFS support! Initial disk size 128K. Files are stored in the SPIFFS directory. The Makefile will build the directory snapshot each time you do make flash. The...
Hi. Lisp currently not stored in flash. I'm experimenting with making that possible. The biggest issue with making so is symbol names, as having flash point to RAM would-be a...
Notice the call parameters are different order and return value: ``` base64_encode(shaHash, 20, responseKey, length); size_t base64Length = base64len(20); ``` then it seems to work fine!