Post links and attach files for documentation here, also chat about these docs freely

User avatar
By AcmeUK
#12011 Why not use 74880, then you will see useful info at boot time. 74880 is fast enough for most comms.

Can't get a terminal console to run at 74880? I use Cool Term Win.
How did I get it to run at 74880? You can add non-standard baud rates to CoolTerm by using a simple baudrates.ini file, see here :- http://forums.the-meiers.org/viewtopic.php?f=4&t=479
User avatar
By jh_
#22229 just initialize boths uarts with the baudrate you prefere before using os-printf:

#include "driver/uart.h"

#define BAUDRATE 115200

/* init uart0 & uart1 */
uart_init(BAUDRATE, BAUDRATE);

for (;;) os_printf("hello world");