Re: [Flashforth-devel] FF 5.x - Xon Xoff with Teraterm
Brought to you by:
oh2aun
From: Mikael N. <mik...@fl...> - 2015-05-18 14:55:49
|
I considered to print OK after every line but then I did not want to change the old behaviour. So I made the ff-shell to just wait for newlines. The approach with Amforth would not work with FF anyway. Thats because the block write to flash may occur in the middle of a word. In contrast Amforth does not have any such block write. I think it writes each cell separately to flash, thus always having a constant delay. But you can try to modify QUIT to print OK after every line. BR Mike On 18.05.2015 16:03, om1zz wrote: > Peter, Mikael, thanks for the info! > I've tried the python ff-shell under XP with no luck (it throws some errors). > > There is a small editor/loader called Forfiter, I used to use in past. > You can set cr/nl delay to, for example, 1000ms, and any upcoming 'ok' will bypass that delay then. > The Forfiter works fine with amforth, but with FF there is an issue - the FF does not return 'ok' after each line when it receives lines (amforth does). > So with single liners it works nice (it receives 'ok' and goes immediately to the next line), but with comments and words defs over many lines it simply waits 1000ms at each line until the final 'ok' arrives. > Would it be possible to print 'ok' after each line received in FF?? > I. |