Hi,
just a quick question: How do I handle ulisp-extensions.ino when installing µLisp 4.4 on
a Raspberry Pico W?
Cheers!
mcc
Hi,
just a quick question: How do I handle ulisp-extensions.ino when installing µLisp 4.4 on
a Raspberry Pico W?
Cheers!
mcc
If you’re using the Arduino IDE you simply include it in the same project folder as ulisp-arm.ino, and it will get compiled in automatically.
Note that a bug seems to have slipped through when compiling for the Raspberry Pi Pico W. Change the line:
if (stringp(address)) success = client.connect(cstring(WITHCLIENT, address, buffer, BUFFERSIZE), checkinteger(port));
to:
if (stringp(address)) success = client.connect(cstring(address, buffer, BUFFERSIZE), checkinteger(port));
I’ll upload a fixed version soon.
Oh! :)
That is definitely a solution FAR TOO SIMPLE to be recognized as solution (…by me ;) )
Thanks a lot!
Cheers!
mcc