Search found 8 matches

by fred
Tue Dec 24, 2013 6:14 pm
Forum: newLISP in the real world
Topic: Can I use newlisp's read to read serial data for sure?
Replies: 8
Views: 4014

Re: Can I use newlisp's read to read serial data for sure?

0x11 is the code for XON Resume transmission, could it be "eaten" as a flow control character?
I do not know stty but perhaps something like -ixon -ixoff or raw mode?
by fred
Tue Aug 06, 2013 7:06 am
Forum: So, what can you actually DO with newLISP?
Topic: compileonline
Replies: 0
Views: 4693

compileonline

Perhaps somebody wants to add newLISP?

http://www.compileonline.com/
by fred
Wed Mar 25, 2009 3:03 pm
Forum: Anything else we might add?
Topic: Linking newLISP source/executable and command line options?
Replies: 13
Views: 7817

Thanks all :) So making a stand-alone executable made with link.lsp has a kind of "-n" option build in. This is enough for me but what about the other options like -s and -m? Perhaps if the first line of the included executed code looks like ":-s 4000" it could be processed as command line, adding t...
by fred
Wed Mar 25, 2009 1:36 pm
Forum: Anything else we might add?
Topic: Linking newLISP source/executable and command line options?
Replies: 13
Views: 7817

For the new file/executable, i don't need startup files and perhaps options for memory sizes.
But i don't think it exists otherwise it would have been documented and i could not find it.
by fred
Wed Mar 25, 2009 1:03 pm
Forum: Anything else we might add?
Topic: Linking newLISP source/executable and command line options?
Replies: 13
Views: 7817

Linking newLISP source/executable and command line options?

Is it possible to use command line options like -n when you link a source to an executable using link.lsp?
by fred
Tue Mar 17, 2009 11:34 am
Forum: Anything else we might add?
Topic: intersect example in "Introduction to newLISP"
Replies: 1
Views: 2393

intersect example in "Introduction to newLISP"

@Cormullion: From then "Introduction to newLISP" i think the difference function should be intersect in this example? The intersect function finds the elements that are in both lists. (difference d2 d1) ;-> ("." ".." ".DS_Store" "Language Modules" "Menu Scripts" "Plug-Ins" "Read Me.txt" "Scripts" "U...
by fred
Tue Dec 09, 2008 7:41 am
Forum: newLISP newS
Topic: (read-line) non blocking
Replies: 7
Views: 4145

You could try GetFileSizeEx which retrieves the size of the specified file.
I used it in: "while GetFileSizeEx(ReadPipe, @size) and (size > 0) do" (Delphi).
by fred
Thu Oct 16, 2008 8:24 am
Forum: newLISP newS
Topic: documentation (length)
Replies: 1
Views: 1791

documentation (length)

I'm new at newLISP so i give it a try :) In Users Manual and Reference v.9.9.8 i did read the description of the length function: length applied to a symbol returns the length of the symbol name. Applied to a number, length returns the number of bytes needed in memory to store that number: 4 for int...