Re: [Ql-Users] Ser-USB Driver Update: External Command Interface (and Progress Update)

2011-02-13 Thread gdgqler
On 13 Feb 2011, at 14:02, Adrian Ives wrote: > > Hn. > > Well, I'm using SMSQ and I get this ... > > 65537 DIV 65536 = 1 > 65537 MOD 65536 = 1 > > 128000 DIV 65536 = 1 > 128000 MOD 65536 = 62464 Yes. SMSQ/E allows larger numbers than integers for DIV and MOD. However, Turbo does not all

Re: [Ql-Users] Ser-USB Driver Update: External Command Interface (and Progress Update)

2011-02-13 Thread Adrian Ives
--Original Message- From: ql-users-boun...@lists.q-v-d.com [mailto:ql-users-boun...@lists.q-v-d.com] On Behalf Of Bob Spelten Sent: 13 February 2011 13:44 To: ql-us...@q-v-d.com Subject: Re: [Ql-Users] Ser-USB Driver Update: External Command Interface (and Progress Update) Op Sun, 13 Feb 201

Re: [Ql-Users] Ser-USB Driver Update: External Command Interface (and Progress Update)

2011-02-13 Thread Bob Spelten
Op Sun, 13 Feb 2011 13:10:41 +0100 schreef Adrian Ives : 250 REMark === 260 REMark : 270 DEFine FuNction GetDWordResponse$(Cmd%) 280 LOCal Response, High%, Low% 290 USB_PUTCMD Cmd% 300 Response= USB_GETCMD 310 High%= Response DIV 65536 320 Low%

Re: [Ql-Users] Ser-USB Driver Update: External Command Interface (and Progress Update)

2011-02-13 Thread Adrian Ives
Cmd% 410 Response= USB_GETCMD 420 High%= Response DIV 65536 430 Low%= Response MOD 65536 440 RETurn BIN$(High%,16) & "/" & BIN$(Low%,16) 450 END DEFine Get32BitResponse$ -Original Message- From: ql-users-boun...@lists.q-v-d.com [mailto:ql-users-boun...@lists.q-v-d.com] O

Re: [Ql-Users] Ser-USB Driver Update: External Command Interface (and Progress Update)

2011-02-13 Thread Plastic
On Sun, Feb 13, 2011 at 1:09 AM, Adrian Ives wrote: > [SNIP] > Here is a tidier version of the example S*BASIC program that I posted in my > last mail. It shows how to use the interface in its current form. Requires > SMSQ & Turbo Toolkit (and the Ser-USB Driver). > [SNIP] Is the SMSQ requireme

[Ql-Users] Ser-USB Driver Update: External Command Interface (and Progress Update)

2011-02-12 Thread Adrian Ives
Here is a list of the commands that the current version of the Ser-USB Driver can execute through its command pipe interface. This interface supports run-time interrogation and configuration of the driver and is intended to enable the development of utility software that does not require detailed k