Merge branch 'feature/update_vfs_for_fatfs' into 'master'

feat(vfs): update vfs for ESP8266

See merge request sdk/ESP8266_RTOS_SDK!1317
This commit is contained in:
Dong Heng
2020-07-23 11:33:15 +08:00
32 changed files with 2887 additions and 551 deletions

View File

@ -13,7 +13,6 @@
#include "driver/uart.h"
#include "sdkconfig.h"
#ifdef CONFIG_USING_ESP_VFS
esp_err_t example_configure_stdin_stdout(void)
{
// Initialize VFS & UART so we can use std::cout/cin
@ -29,4 +28,3 @@ esp_err_t example_configure_stdin_stdout(void)
esp_vfs_dev_uart_set_tx_line_endings(ESP_LINE_ENDINGS_CRLF);
return ESP_OK;
}
#endif