I couldn't get the Wi-Fi client example running, as it kept erroring with Error: 'with-client' too many arguments.
On investigation, I replaced line 5791 in ulisp-esp.ino:
{ string212, sp_withclient, 0313, doc212 },
with
{ string212, sp_withclient, 0317, doc212 },
where the 7 matches the octal mask at line 5871, giving this a min of 1 argument, and an unbounded max number of arguments for the forms.
I couldn't get the Wi-Fi client example running, as it kept erroring with
Error: 'with-client' too many arguments
.On investigation, I replaced line 5791 in ulisp-esp.ino:
{ string212, sp_withclient, 0313, doc212 },
with{ string212, sp_withclient, 0317, doc212 },
where the 7 matches the octal mask at line 5871, giving this a min of 1 argument, and an unbounded max number of arguments for the forms.