We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc50a68 commit b02b98fCopy full SHA for b02b98f
cores/esp8266/uart.c
@@ -103,7 +103,7 @@ inline size_t uart_rx_fifo_available(uart_t* uart) {
103
return (USS(uart->uart_nr) >> USRXC) & 0x7F;
104
}
105
106
-char overrun_str [] ICACHE_RODATA_ATTR STORE_ATTR = "uart input full!\r\n";
+const char overrun_str [] ICACHE_RODATA_ATTR STORE_ATTR = "uart input full!\r\n";
107
108
// Copy all the rx fifo bytes that fit into the rx buffer
109
inline void uart_rx_copy_fifo_to_buffer(uart_t* uart) {
0 commit comments