Changeset 0be09ca in avrstuff for test_2313_muserial/main.c


Ignore:
Timestamp:
May 14, 2011, 7:29:05 PM (13 years ago)
Author:
Adrien Destugues <pulkomandy@…>
Branches:
main
Children:
c77bee7
Parents:
c2e7641
Message:
  • Fix schematic for µSerial : add "local handshake" to make some PCs happy
  • Some improvements to the test code.

git-svn-id: svn://pulkomandy.tk/avrstuff@42 c6672c3c-f6b6-47f9-9001-1fd6b12fecbe

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test_2313_muserial/main.c

    rc2e7641 r0be09ca  
    2020
    2121        // Serial PORT
    22         UBRRH = 10;
    23         UBRRL = 0;
     22        UBRRH = 0;
     23        UBRRL = 10;
    2424
    2525        UCSRB = (1<<RXEN) |(1<<TXEN);
     26        UCSRC = (1 << UCSZ1) | (1 << UCSZ0); 
    2627
    2728        while(1) {
Note: See TracChangeset for help on using the changeset viewer.