ulisp-arm icon indicating copy to clipboard operation
ulisp-arm copied to clipboard

A version of the Lisp programming language for ARM-based boards.

Results 6 ulisp-arm issues
Sort by recently updated
recently updated
newest added

Calling **return** outside **loop**, **dotimes**, or **dolist** causes subsequent loops to fail. For example: (defun test () (dotimes (x 6) (princ x)) (return 67)) It works the first time but...

Initial working commit for the Infineon XMC4700 Relax Kit.

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...

Please consider adding support for the excellent teensy https://www.pjrc.com/teensy/ family of arm processors.

On some platforms I'm getting a spurious character appearing in the Serial Monitor on starting uLisp; for example, on the Arduino Due: This is generated by code which is effectively:...

For example: ````text > (format t "~5,''0g" 3.14158) '''''''''''''''''''''''''''''''''''''''''''3.14158 nil ```` Should give something like: ````text > (format t "~5,''0g" 3.14158) "~5,''0g" ^ Error: 'format' command '~0' not valid ````