Ghost21 Posted August 27, 2009 Posted August 27, 2009 I'm trying to send this to a com port. im $command[13] $command[0] = 0xBE $command[1] = 0xEF $command[2] = 0x10 $command[3] = 0x05 $command[4] = 0x00 $command[5] = 0xC6 $command[6] = 0xff $command[7] = 0x11 $command[8] = 0x11 $command[9] = 0x01 $command[10] = 0x00 $command[11] = 0x01 $command[12] = 0x0D $i = -1 Do $i = $i + 1 _CommSendByte($command[$i], 0) Until $command[$i] = 0x0D Would putting it in a long array and sending that at one go be any Faster ? The COM port is at 19200 if that makes any difference. If so whats the best way to go about this. I have tried _CommSendByteArray() but with no success ... More then likely its something I'm not doing..
Michel Claveau Posted August 27, 2009 Posted August 27, 2009 Hi! Is $command[4] = 0x00 sended with success?
martin Posted August 28, 2009 Posted August 28, 2009 (edited) Yeah it runs pretty damn fast.This thread should either be in support in this thread for the UDF.Sending a byte array will be faster. You need to create a dllstruct for the array and pass the address for it.If you have any questions about sending byte arrays using my udf then best to continue this in the udf thread. I won't be replying for a couple of days though, but there might be some examples for sending byte arrays in that thread. I remember someone was using them to communicate with a satellite dish.@ MichelThe byte functions will send 0x00 but the string functions will not of course. Edited August 28, 2009 by martin Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now