snahmad
snahmad
I am following this example https://www.boost.org/doc/libs/develop/libs/beast/example/http/client/sync-ssl/http_client_sync_ssl.cpp My code to http client post is below. I am getting a bad request response in my http server. Is my post request preparation...
ok, I will find HTTP bad response string and will give tomorrow.
It is working. my mistake,
Can some one answer it how to upload web files into fatfs using make? I am sure some one must have done it.
yes tried out. It is different project. make copyfatfs works make flashfatfs works. I need to do first make flash ESP32 Explore project. then i need to do upload fatfs....
Still not working for /spiflash stroage. make flashfatfs is part of project : https://github.com/jkearins/ESP32_mkfatfs https://github.com/nkolban/ESP32_Explorer is separate project. After make flash ESP32_Explorer .bin. I tried both make flashfatfs and make...
This example works https://github.com/espressif/esp-idf/tree/master/examples/storage/wear_levelling but not ESP32 explorer example. Any idea?
Fix by specifying allocation_unit_size void FATFS_VFS::mount() { esp_vfs_fat_mount_config_t mountConfig; mountConfig.max_files = m_maxFiles; mountConfig.format_if_mount_failed = true; mountConfig.allocation_unit_size = 4096; ESP_LOGD(LOG_TAG, "FATFS_VFS::mount(%s,%s)", m_mountPath.c_str(), m_partitionName.c_str()); ESP_ERROR_CHECK(esp_vfs_fat_spiflash_mount(m_mountPath.c_str(), m_partitionName.c_str(), &mountConfig, &m_wl_handle)); } // mount
Can we write multiple Tasks/routines to support Http web serer and separate routing running check serial port and perform sending packet/message over UDP/TCP Socket. Is this limited to single Task...