In basic stamp I used the serialout command to control my soundgin
frequency with three 8bit commands as follows.
serout 1,9600,[27,88,64]
Now with the basicx I'm trying to do the same. Would this be correct?
Also what is the argument, where the four is located, used for?
start = 27
os1 = 88
freq = 64
' Put some Pi in the oven.
Call PutQueue(Q, start, 4)
Call PutQueue(Q, os1, 4)
Call PutQueue(Q, freq, 4)

(You need to be a member of basicx -- send a blank email to basicx-subscribe@yahoogroups.com )
In the PutQueue documentation example that you've referenced, Pi is a
Single-type variable, which occupies four bytes.
Tom

(You need to be a member of basicx -- send a blank email to basicx-subscribe@yahoogroups.com )