Re: [Amforth] the word "see"

2018-10-26 Thread Tristan Williams
Jan, In release 6.2 [1] find-name was renamed to find-xt. I think the forth code for see has not been updated to reflect this. By editing see.frt and changing find-name to find-xt I was able to produce the following. > : test 5 0 do i . loop ; ok > test 0 1 2 3 4 ok > see test : test [ 5278 ]

Re: [Amforth] the word "see"

2018-10-26 Thread Peter C. Hauser
Jan, It might not solve your immediate problem, but you can find a list of the error codes here: http://forth-standard.org/standard/exception Peter > On 26 Oct 2018, at 13:50, Jan Kromhout wrote: > > Hi, > > I have installed the word “see"

[Amforth] the word "see"

2018-10-26 Thread Jan Kromhout
Hi, I have installed the word “see" When I look to one of my former installed words I get this > see toggle ?? -4 10 What is wrong with “see” Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net

[Amforth] Coolterm as terminal

2018-10-26 Thread Jan Kromhout via Amforth-devel
Tristan, I’m using an original Arduino-Uno The next thing is to figure out how to include some of the .frt files. Docu is hard to understand. It is working now with MacBook-Pro-van-Jan-6:tools jankromhout$ ./amforth-shell.py -p /dev/tty.usbmodem1421 -s 38400 -i —rtscts I greatly appre

Re: [Amforth] Coolterm as terminal

2018-10-26 Thread Tristan Williams
Jan, I would try adding --rtscts to the ./amforth-shell.py command line. If that does not help, then I would use --debug-serial to have a look at what is happening at a lower level. What model of Arduino are you trying to connect with? Regards, Tristan On 25Oct18 19:02, Jan Kromhout via Amfort