I Know that I should use for a RS485 Transmission a 9 Bit Transmission,and that for example the 9th Bit for the Adress must be Set to 1.
Not at all true. Most people use the 9 bit data format to achieve high speed data transfers. You can define your own protocol and use it with normal 8 bit data.
I generally use a protocol having a header like this
Code:
Destination address <1 byte> Source address <1 byte>
Command <1 byte> data <n bytes> Checksum <2 bytes>
Advantage of my method, you do not have to juggle VB to get the 9th bit
Jerson
Bookmarks