Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
11/12/04 04:15
Read: times


 
Msg Score: +1
 +1 Good Answer/Helpful
#81067 - RE: UART 9-Bits Mode Operation
Responding to: ???'s previous message
It always amazes me how some people make the hardest problems for themselves!

Firstly, which end has the problem? We could have multiple defects in both ends - so where do we start? Secondly, rather than trying to send two 12 bit samples, have you tried sending just 1 12bit sample and get that going first? Also, to minimise defects in the sending side, rather than use data from the a/d, hard code in values - that makes it easy to test to see if those values are received correctly. Those values could be 1V or 2V so that it is easy to measure on the DAC output.
Thirdly, use the simulator to check your code.

Just a note: RB8 is a BIT - what happens when you assign it to a CHAR?
Also:

high |= a&0x0F; // high: 0000HHHH
flag = 0;

shouldn't that be:

high = a & 0x0F; // high: 0000HHHH
flag = 0;

Remember the old rule: divide and conquer!

Big problems are made of lots of small problems - fix the small problems one by one and the big problem shall dissappear.




List of 12 messages in thread
TopicAuthorDate
UART 9-Bits Mode Operation            01/01/70 00:00      
   RE: UART 9-Bits Mode Operation            01/01/70 00:00      
   RE: UART 9-Bits Mode Operation            01/01/70 00:00      
      RE: UART 9-Bits Mode Operation            01/01/70 00:00      
         RE: UART 9-Bits Mode Operation            01/01/70 00:00      
            RE: UART 9-Bits Mode Operation            01/01/70 00:00      
            RE: UART 9-Bits Mode Operation            01/01/70 00:00      
   RE: UART 9-Bits Mode Operation            01/01/70 00:00      
   RE: UART 9-Bits Mode Operation            01/01/70 00:00      
      RE: UART 9-Bits Mode Operation            01/01/70 00:00      
         RE: UART 9-Bits Mode Operation            01/01/70 00:00      
            RE: SPI vs UART 9-Bits Mode            01/01/70 00:00      

Back to Subject List