1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Fix undefined reference to os_free (#1522)

This commit is contained in:
Ivan Grokhotkov 2016-02-04 01:24:38 +03:00
parent 1d149560be
commit 2e1be32825

View File

@ -230,7 +230,7 @@ void uart_uninit(uart_t* uart)
break; break;
} }
os_free(uart); free(uart);
} }
void uart_swap(uart_t* uart, int tx_pin) void uart_swap(uart_t* uart, int tx_pin)