CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

Send array of bytes via UART as a packet w/ 1 start bit

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
kahnm



Joined: 30 Apr 2007
Posts: 9

View user's profile Send private message

Send array of bytes via UART as a packet w/ 1 start bit
PostPosted: Tue Aug 13, 2019 12:48 am     Reply with quote

I need to send an array of bytes, which may contain zeros in the array, using one of the UARTS. I want to send it as a packet with a single start bit to start the packet. If I use putc then each byte has its own start bit. The device I'm writing to doesn't like that.

These aren't ascii so fprintf won't work.

Is there any simple way to do this?
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

Re: Send array of bytes via UART as a packet w/ 1 start bit
PostPosted: Tue Aug 13, 2019 1:27 am     Reply with quote

kahnm wrote:
I need to send an array of bytes, which may contain zeros in the array, using one of the UARTS. I want to send it as a packet with a single start bit to start the packet. If I use putc then each byte has its own start bit. The device I'm writing to doesn't like that.

These aren't ascii so fprintf won't work.

Is there any simple way to do this?

How about SPI ? Though, SPI puts out MSB first. The UART puts out
LSB first. But, you can swap the bits before sending the SPI, if you
must have LSB first. This thread has some swap_bits() code:
http://www.ccsinfo.com/forum/viewtopic.php?t=23364
This thread shows it being used with SPI:
http://www.ccsinfo.com/forum/viewtopic.php?t=45283
Ttelmah



Joined: 11 Mar 2010
Posts: 19215

View user's profile Send private message

PostPosted: Tue Aug 13, 2019 1:31 am     Reply with quote

No.

Standard serial has a start bit for every byte. This is done because
otherwise the clock tolerances required become tighter and tighter with every
successive byte.
If you have a single byte with a start bit, you can accept timing differences
of up to about +/-5% total over ten bits and still happily read the data.
If you send hundreds of bytes with only a single start bit at the beginning
then the clock tolerance becomes terrifyingly accurate. After more than a
very few bytes, Unbelievably/unacceptably so.
Implies your packet must have some other clocking method to work.
Suggests it is actually some form of self clocking protocol where the
receiver self synchronises. This is normally done by using a format that
ensures there are guaranteed transitions. So, something like Manchester
encoding.
You need to tell us about the actual protocol. Simple asynchronous
communication without start bits is just not going to work, so there
has to be something else being done. You can stretch transmitted lengths
a lot, but not to hundreds of bytes.

Remember a SPI peripheral can generate a stream of bytes, and if you
simply don't connect the clock this will be a steady clocked data stream.
However as already outlined this is not going to work if the receiver is
simply relying on timing from one start bit, so there has to be some other
process going on in the nature of the data. You need to tell us more.

I see PCM_Programmer also suggested the SPI approach, while I was typing.

Very Happy

There are some other questions. How big is the packet (how many bytes),
what is the speed required, and is the packet fixed size or variable?.
The latter would be very complex to do unless there is a known 'point'
in the sequence that marks the location for the end.
temtronic



Joined: 01 Jul 2010
Posts: 9097
Location: Greensville,Ontario

View user's profile Send private message

PostPosted: Tue Aug 13, 2019 4:31 am     Reply with quote

As others have pointed out, we need to know what the 'other' device is, especially the speed required.
For over 3 decades I've used a single clock, multiple bytes transmission to communicate over 15 miles of solid copper wire so I KNOW it can work, very, very reliably in fact.
In my case I send a data stream consisting of 1 start bit and 44 bytes of data.
Providing the 'other device' has a crystal controlled clock or is very close and baud rate is low, a simple 'bit banged' driver will work fine.

Jay
kahnm



Joined: 30 Apr 2007
Posts: 9

View user's profile Send private message

PostPosted: Tue Aug 13, 2019 12:58 pm     Reply with quote

To all that responded - Thank You very much. After reading your responses it occurred to me that my thinking was not to clear about how the bytes were being transferred. This caused me to focus more intensely on the protocol that the receiving device was using. I was violating the protocol by not waiting for the acknowledge before sending the next command. Thanks for getting me refocused!
Ttelmah



Joined: 11 Mar 2010
Posts: 19215

View user's profile Send private message

PostPosted: Tue Aug 13, 2019 1:08 pm     Reply with quote

Brilliant. Very Happy
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group