mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Remove custom `ESP_TARGET` and use `ESP_PLATFORM` everywhere - Add `Loader` service functionality to `tt::app::` namespace - Make `Loader` `PubSub` usable by exposing the messages - Add board type to crash log - Don't show SD card in Files app when it's not mounted - Set default SPI frequency for SD cards - Move TT_VERSION to scope that works for sim too - Log Tactility version and board on boot - Rename "Yellow Board" to "CYD 2432S024C"
40 lines
766 B
C++
40 lines
766 B
C++
#ifdef ESP_PLATFORM
|
|
|
|
#include "TactilityCore.h"
|
|
#include "EspPartitions_i.h"
|
|
|
|
#include "esp_event.h"
|
|
#include "esp_netif.h"
|
|
#include "nvs_flash.h"
|
|
|
|
namespace tt {
|
|
|
|
#define TAG "tactility"
|
|
|
|
// Initialize NVS
|
|
static void initNvs() {
|
|
esp_err_t ret = nvs_flash_init();
|
|
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
|
|
TT_LOG_I(TAG, "nvs erasing");
|
|
ESP_ERROR_CHECK(nvs_flash_erase());
|
|
ret = nvs_flash_init();
|
|
}
|
|
ESP_ERROR_CHECK(ret);
|
|
TT_LOG_I(TAG, "nvs initialized");
|
|
}
|
|
|
|
static void initNetwork() {
|
|
ESP_ERROR_CHECK(esp_netif_init());
|
|
ESP_ERROR_CHECK(esp_event_loop_create_default());
|
|
}
|
|
|
|
void initEsp() {
|
|
initNvs();
|
|
initPartitionsEsp();
|
|
initNetwork();
|
|
}
|
|
|
|
} // namespace
|
|
|
|
#endif
|