Change default baud rate back to 74906bps, compatible with boot ROM rate

This reverts a behaviour change from 3ceadfc0a6.
This commit is contained in:
Angus Gratton 2015-10-06 23:04:19 +11:00
parent 9c1307c5d1
commit 7d67bf2ede
15 changed files with 48 additions and 7 deletions

View file

@ -7,6 +7,8 @@
#include "task.h"
#include "queue.h"
#include <esp/uart.h>
class Counter
{
private:
@ -57,6 +59,7 @@ void task1(void *pvParameters)
extern "C" void user_init(void)
{
uart_set_baud(0, 115200);
printf("SDK version:%s\n", sdk_system_get_sdk_version());
xTaskCreate(task1, (signed char *)"tsk1", 256, NULL, 2, NULL);
}