hello to all !!!
I am using ADUC841 and i want do sent a string in that format (8 bit ,1 stop bit, odd - parity) I am writing in C51
how can i set the my MCU to output this string with parity ?????
how i a setup the UART to send with parity ???
my program
void main(void) { T3CON = 0x86; // Configure the baud rate 9600 T3FD = 0x08; SCON = 0x52;
printf("hello"); // the string i want to set with // odd pariy }
thanks in advance to the helpers
mayer
hey you know it is ez for to doing
void main(void) { char i; set_communication_parameters ( DATA_8, STOP_1, PARITY_ODD ); printf ( "here is my message" ); for ( i = 1 ; i < 256 ; ++ i ) ; }