Hi People, I have comprehending how a diagnostic tool could help me find a typing error. Please explain in more detail. Kerry N0WIQ My web site URL is: ...
If you have troubles with recognizing typo's, one thing that you can do to prevent it is simply copy and paste from the declaration space. You declare the...
Hi people, I thought when I compiled a program I made a complete stand alone program. When I copied a compiled program to this machine it should run but it...
Oh, I agree with that, one should never use the same name for functions, variables, or arrays. Being fairly new to xbasic I do have a lot to learn but do bring...
... XB for Linux does make standalone programs - but they are 32-bit. It won't run on a pure 64-bit system any more than a 32-bit version of Firefox would....
Comments are always ignored when compiled. Max - the original author of XB - was pretty good about commenting his code. The only real question is what your...
Hi People, What type of variable should taskNum be? I seem to be having trouble understanding how to use XstStartTask (). The documentation seems to imply the...
There is an error in the code such that it does not always zero the taskNum when it fails to assign the task. But it should give an -1 error return when it...
Hi People, I through together this program to try XstStartTask () and I used XstGetTaskInfo() to try to understand a little bit about XstStartTask(). Now I am...
In the program that you attached, it appears to start 3 tasks and then it terminates. When a program terminates, all windows are destroyed, all open files are...
Thank you cw2008can, I modified that program to include a loop after the XstStartTask ()s that would loop untill I pressed a q key and then the processes dis ...
Hi People, When I run in the PDE my program RadioControl using the attached WriteToRadio.txt and I do a WriteToRadio () I get the results of bytesWriten =...
4294967295 is equal to 0xFFFFFFFF You have defined bytesWriten as ULONG (unsigned). It should be SLONG or XLONG and then it would be -1. bytesWriten = -1 means...
Hi People, What makes XstBinWrite () return a -1 in bytesWriten Assuming the hardware is connected properly and in another program an identical WriteToRadio...
Hi People, Now my WriteToRadio () function has been ironed out so the variables names are carried with the same name through out. I come to the next piece of...
If you get a -1 as a return number, use the getsystemerror and systemerrortoerror routines to fetch and translate the error that occured, these functions...
Hi Group, I have tried to use: XLONG sysError XstGetSystemError (@sysError) XstSystemErrorNumberToName (sysError, @sysError$) sysError is comming back 0 (Zero)...
Hi People, I have included what I have put together as an error message and I have displayed the raw data to be written once before it is attempted to be ...
Looks like a lot of things have changed in Linux that the error fetching method is no longer working properly. If you don't get a figure with @SysError i think...
Hi Group, This is my TigerDirect dual core amd with 2 GByte of memory. This computer is running UBUNTU-amd64. I have embellished this UBUNTU with dockey to...
Hi Group, This is my ASUS 4core amd laptop. Using UBUNTU-12.04-amd64. I have loaded compiled xbasic programs onto this computer. When I tried to run one of...
You are dealing with a Linux specific issue, your error mentions "No such file or directory" so i assume out of that report that your libX11.so.6 (and i...
Hi People, Here is a thought concerning XstBinWrite(). Perhaps there is no system level error and may be I have done something to get something out of whack...
Hi Group, I have achieved more confusion. The attached ExtWriteToRadio.txt use XstBinWrite (). The bytesWritten come back equal to byteCount and no error...
... This could indicate that you might cross some buffer boundary here. e.g.: you have to write 24 bytes in total in three passes but accidentally you do 4...