-
I had another idea that would require editing the uLisp source (i.e. not an extension): making the multithreading feature of the esp32's FreeRTOS available to uLisp. I wish it was also available on Te…
-
[As discussed on Twitter]: There's currently a version of ulisp for arm for boards related to this one here: http://www.ulisp.com/show?1AA0#arm-version
Might be an interesting thing to play with, e…
-
Continuing the discussion from https://github.com/technoblogy/ulisp-esp/issues/71#issuecomment-1523873453:
> > I also have some ideas for how to make uLisp object-oriented
>
> Have you seen this?…
-
I would like uLisp to run on a STM Nucleo-F401RE board. However, although the Arduino IDE 1.8.8 with STM libraries supports this board, so that I was able to compile and load some examples, the compil…
-
Hi David, greetings!
Many thanks for uLisp! I enjoyed reading the uLisp source code and its
references. I have an Infineon XMC1100 boot kit lying around. I wanted
to make a uLisp project for it…
-
Trying to run the latest version on the official STM32 Core v 1.9.0 Arduino board gives me a bunch of errors in the IDE.
What's the last known working version?
```
/home/billy/Arduino/ulisp.cpp/u…
-
I put together a couple guides for some of the extensive features that I added to my uLisp fork. Currently the ones there are for `(catch)`/`(throw)` and backquotes, which both are confirmed to work. …
-
uLisp:
```
> (length (string #\Null))
0
> (char (apply #'concatenate (cons 'string (mapcar #'string '(#\Null #\A)))) 0)
#\A
```
Expected (as GNU Clisp):
```
CL-USER> (length (string #\Null)…
-
Hello :D
This is a very interesting project, but why aren't there `defmacro`s? Is it impossible to implement or you just delayed it for later :)
I [tried](https://www.reddit.com/r/Common_Lisp/comm…
-
I have an application (uLisp) that used to work on the AVR128DA48 Curiosity Nano or AVR128DB48 Curiosity Nano with DxCore versions up to and including 1.5.6. However, it doesn't work on 1.5.8, or the …