capsensor problems.

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

I have some questions list below, please help me to slove it, thanks.

0 Likes
3 Replies
Anonymous
Not applicable

sorry, questions list as belows.

   

1. How can I modify the scan speed, for example, if i want to scan with 300Hz frequency.

   

2. How to setup TX in one control chip, and RX in another control chip? How can I get raw datas? Hardware setup?

   

software example?

0 Likes
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

Tx and Rx are referring to a communication interface that is best implemented with an UART although it is quite common to have chips on the same board use a different interface as I2C or SPI because of their higher transfer-rates and the built-in property of talking to several chips and a clear master-slave structure.

   

UARTs in PSoC5 allow you to handle complete messages to send or to receive, but you'll have to spend some thoughts on who may talk and who must listen. When just connecting a sender to a receiver (this has to poll for messages) you just select the same baud-rate for both of them and connext the Tx of the former to the Rx of the latter, that's it. You even may for test-purposes define two UARTs in your design and connect them accordingly, evaluating your software on a development kit before the pcbs are made.

   

 

   

 

   

Merry christmas and happy coding

   

Bob

0 Likes
lock attach
Attachments are accessible only for community members.
ETRO_SSN583
Level 9
Level 9
250 likes received 100 sign-ins 5 likes given

Some useful ref (link and attached) material -

   

 

   

http://en.wikipedia.org/wiki/RS-232

   

 

   

Regards, Dana.

0 Likes