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

EUSART synchronous operation

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



Joined: 01 May 2007
Posts: 5
Location: Jackson, MS

View user's profile Send private message

EUSART synchronous operation
PostPosted: Mon Sep 21, 2015 4:00 pm     Reply with quote

I am trying to communicate between two PIC18F46K22 controllers (@ 16MHZ internal frequency), using their EUSART's connected directly together. I am trying to understand the synchronous operation in a master/slave configuration (half duplex). I found the EX_Sync_Master.C and EX_Sync_Slave.C examples and have them working on my device. That is fine for one-way transmission/receive. However, I would like the Slave to be able to send data to the Master on request from the Master instead of simply turning on or off something on the slave.

I modified the example code so that it is working on an interrupt on the slave unit so it can do other things while waiting on the Master request or data. That is working with the example code. I can send a different character every second and the slave detects the characters using the interrupt routine and calls a routine to turn some LED's on and off. How do I stop the Master from being in transmit mode and switch to receive mode? I am not looking to do this ultra fast. A one second delay between TX and RX is fine and I have a 1/2 second and 1 second loop in my main program anyway so I feel I have plenty of time for it to switch modes if I can figure out how to do it.

I see in reading the PIC information that there are both Synchronous Master Reception and Synchronous Slave Transmit methods. It has been years since I've dealt with assembly code directly and was wondering how to do set this two-way communication up using C. I don't see any examples of that anywhere.

My only other thought would be to re-wire the UARTS so that their TX and RX lines are crossed and use them in full duplex mode. The Synchronous mode uses the TX lines as a clock and the RX lines as data in/out. I would love to figure out the synchronous operation, if I could get a little help getting me to understand the process in C, if possible? I would not mind using inline code to switch modes if necessary.
temtronic



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

View user's profile Send private message

PostPosted: Tue Sep 22, 2015 4:54 am     Reply with quote

I ran into the same 'brain teaser' some years ago and decided that ASYNC was a LOT easier to get 'up and running' as it made testing to a PC dead simple and well, everyone knows how it works.
Unless you've got a lot of free time to read/code/test/scratch head again and again OR someone else here has done it...I'd stick to what works and get the rest of the project finished.Maybe during the long dark winter nights when ther'e nothing else to do you can revisit the problem ?

jay
Ttelmah



Joined: 11 Mar 2010
Posts: 19466

View user's profile Send private message

PostPosted: Tue Sep 22, 2015 7:21 am     Reply with quote

Other thing, use SPI.

This is full duplex synch, and faster than the USART can manage. The only reason to use the USART, is if you are talking to something else that requires this format, or have run out of SPI peripherals.

The USART does not support full duplex sync. Half duplex only. So for full duplex, SPI, or async is the way to go. For half duplex with 'turn around', you have to also handle the tendency for the drivers to clash at the moment you turn round. You can do it by setting up two #use RS232 statements, one for the receive mode, and one for transmit, both with baud set to '0'. Then setup_uart on the stream you want to use, with the baud rate required, reconfigures the UART for that direction. setup_uart with a baud rate of 0, turns the UART off. You must ensure you disable the UART's at both ends, or turn off the transceivers, before you enable the transmitting 'end'.

Honestly async duplex is going to be a lot easier.
rdburghard



Joined: 01 May 2007
Posts: 5
Location: Jackson, MS

View user's profile Send private message

EUSART synchronous operation
PostPosted: Tue Sep 22, 2015 10:25 am     Reply with quote

Yes, I agree, I'm thinking the normal Asynch mode would be easier. That is what I get from reading the PIC manual. It suggested using the Synch mode for things like communications between PICS. I'm going to swap the TX/RX lines around and go the normal route and see what happens. Something I noticed in using the test code that I did not particularly like is that I have TX and RX LED's on one of my boards. Well, since the Synch mode uses the TX for the clock, it basically keeps the TX LED on constantly. Looks kind of strange.
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