tabemann
tabemann
USB CDC console support has been added to the `full_usb` build of zeptoforth 1.0.0 on the RP2040, just so you guys know.
@robzed I simply had to implement USB support, and USB CDC support on top of that, using the RP2040's built-in USB peripheral. I was guided in part by example code...
@ctrilsbach Nothing is wrong with zeptocom.js there. The issue is that you used ," (with a comma) rather than ." (with a period/full stop). And if your intention is to...
I should note that `s"` and `c"`, and their escaped counterparts `s\"` and `c\"`, normally compile code to push said strings, as is standard, except for when used in interpreter...
@ctrilsbach The normal way to create a compiled constant counted string in zeptoforth is with `: c" " ;`. Note that this does not merely append the counted string to...
@ctrilsbach @robzed I have created a discussion under Discussions where I have a simple `,"` implementation.
@leahneukirchen Could you give me more details about how this came about? I am very interested in seeing what is happening, but without further information I don't really know where...
@leahneukirchen @arlaneenalra What I'm really interested in is the possibility of problems persisting across multiple reboots; I had some problems of this sort early on with the RP2040 when I...
Oh, this is a very obvious bug that went uncaught for so long because I never bother to check interrupts' registers for anything, but rather only set them. I have...
It appears to now work, from some cursory testing; I have merged my fix into the `master` branch now.