Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit aef3e7c

Browse files
author
Daniel Campora
committed
esp32: Update with master up to version 1.10.2.b1.
1 parent 859c7d0 commit aef3e7c

31 files changed

+27
-18
lines changed

esp32/bootloader/bootloader.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -851,6 +851,13 @@ static void IRAM_ATTR flash_gpio_configure()
851851

852852
static void clock_configure(void)
853853
{
854+
// ROM bootloader may have put a lot of text into UART0 FIFO.
855+
// Wait for it to be printed.
856+
// This is not needed on power on reset, when ROM bootloader is running at
857+
// 40 MHz. But in case of TG WDT reset, CPU may still be running at >80 MHZ,
858+
// and will be done with the bootloader much earlier than UART FIFO is empty.
859+
uart_tx_wait_idle(0);
860+
854861
/* Set CPU to 80MHz. Keep other clocks unmodified. */
855862
rtc_cpu_freq_t cpu_freq = RTC_CPU_FREQ_80M;
856863

@@ -892,8 +899,7 @@ static void uart_console_configure(void)
892899
uartAttach();
893900
ets_install_uart_printf();
894901

895-
// ROM bootloader may have put a lot of text into UART0 FIFO.
896-
// Wait for it to be printed.
902+
// Wait for UART FIFO to be empty.
897903
uart_tx_wait_idle(0);
898904

899905
#if CONFIG_CONSOLE_UART_CUSTOM

esp32/frozen/MQTTMsgHandler.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,8 @@ def __init__(self, receive_callback, connect_helper):
2323
self._poll = select.poll()
2424
self._output_queue=[]
2525
self._out_packet_mutex=_thread.allocate_lock()
26-
<<<<<<< HEAD
27-
_thread.stack_size(5120)
28-
_thread.start_new_thread(self._io_thread_func,())
29-
=======
3026
_thread.stack_size(8192)
3127
_thread.start_new_thread(self._io_thread_func, ())
32-
>>>>>>> esp32: Update with master up to release 1.10.1.b1
3328
self._recv_callback = receive_callback
3429
self._connect_helper = connect_helper
3530
self._pingSent=False

esp32/lib/libbt.a

0 Bytes
Binary file not shown.

esp32/lib/libcxx.a

0 Bytes
Binary file not shown.

esp32/lib/libdriver.a

64 Bytes
Binary file not shown.

esp32/lib/libesp32.a

8 Bytes
Binary file not shown.

esp32/lib/libesp_adc_cal.a

0 Bytes
Binary file not shown.

esp32/lib/libexpat.a

0 Bytes
Binary file not shown.

esp32/lib/libfreertos.a

512 Bytes
Binary file not shown.

esp32/lib/libheap.a

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)