Compare commits

...

2 Commits
main ... espidf

Author SHA1 Message Date
Djuri Baars
ec1b048f79 Increase vTaskdelay in main loop 2023-11-06 18:35:22 +01:00
Djuri Baars
497f8464ad First try with esp-idf framework 2023-11-06 18:12:43 +01:00
5 changed files with 1583 additions and 12 deletions

View File

@ -13,7 +13,7 @@ data_dir = data/build
[env]
platform = espressif32
framework = arduino
framework = arduino, espidf
monitor_speed = 115200
upload_speed = 921600
monitor_filters = esp32_exception_decoder, colorize
@ -22,7 +22,7 @@ build_flags = !python scripts/git_rev.py
[esp32wemos-s3-mini_BW_base]
platform = espressif32
framework = arduino
framework = arduino, espidf
board = lolin_s3_mini
board_build.partitions = partition.csv
lib_deps =
@ -37,7 +37,7 @@ build_flags =
-DLAST_BUILD_TIME=$UNIX_TIME
-D IS_S3
-D IS_BW
# -D CONFIG_FREERTOS_USE_TRACE_FACILITY
-D CONFIG_FREERTOS_USE_TRACE_FACILITY
-D WITH_RGB_LED
-D NEOPIXEL_COUNT=4
-DASYNCWEBSERVER_REGEX
@ -47,7 +47,9 @@ build_flags =
-mfix-esp32-psram-cache-issue
-fexceptions
-DPIO_FRAMEWORK_ARDUINO_ENABLE_EXCEPTIONS
build_unflags = -fno-exceptions
build_unflags =
-fno-exceptions
-Werror=all
zinggjm/GxEPD2@^1.5.2

1525
sdkconfig.default Normal file

File diff suppressed because it is too large Load Diff

21
sdkconfig.defaults Normal file
View File

@ -0,0 +1,21 @@
CONFIG_AUTOSTART_ARDUINO=y
# CONFIG_WS2812_LED_ENABLE is not set
CONFIG_FREERTOS_HZ=1000
CONFIG_FREERTOS_USE_TRACE_FACILITY=y
CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y
CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y
CONFIG_MBEDTLS_PSK_MODES=y
CONFIG_MBEDTLS_KEY_EXCHANGE_PSK=y
CONFIG_BOOTLOADER_LOG_LEVEL=0
CONFIG_LOG_BOOTLOADER_LEVEL_NONE=y
CONFIG_BOOTLOADER_LOG_LEVEL_NONE=y
CONFIG_ESP32S3_SPIRAM_SUPPORT=y
CONFIG_LOG_DEFAULT_LEVEL_NONE=y
CONFIG_LOG_DEFAULT_LEVEL=0
CONFIG_LOG_MAXIMUM_LEVEL=0
CONFIG_LOG_BOOTLOADER_LEVEL_NONE=y
CONFIG_LOG_BOOTLOADER_LEVEL=0
CONFIG_HEAP_CORRUPTION_DETECTION=CONFIG_HEAP_POISONING_LIGHT

View File

@ -60,8 +60,25 @@ void setupComponents()
pixels.show();
#endif
// delay(3000);
// Serial.println(F("Leds should be on"));
// delay(6000);
// Serial.println(F("I2C Master"));
// int i2c_master_port = 0;
// i2c_config_t conf = {
// .mode = I2C_MODE_MASTER,
// .sda_io_num = 35, // select SDA GPIO specific to your project
// .scl_io_num = 36, // select SCL GPIO specific to your project
// .sda_pullup_en = GPIO_PULLUP_ENABLE,
// .scl_pullup_en = GPIO_PULLUP_ENABLE,
// .master = {
// .clk_speed = 400000,
// }, // select frequency specific to your project
// .clk_flags = 0, // optional; you can use I2C_SCLK_SRC_FLAG_* flags to choose i2c source clock here
// };
// i2c_param_config(i2c_master_port, &conf);
// ESP_ERROR_CHECK(i2c_driver_install(i2c_master_port, conf.mode, 0, 0, 0));
Wire.begin(35, 36);
#ifndef NO_MCP
if (!mcp.begin_I2C(0x20))
@ -72,8 +89,8 @@ void setupComponents()
pixels.setPixelColor(2, pixels.Color(255, 0, 0));
pixels.setPixelColor(3, pixels.Color(255, 0, 0));
pixels.show();
while (1)
;
// while (1)
// ;
}
else
{
@ -222,8 +239,8 @@ void handleScreenTasks(uint screen)
vTaskSuspend(blockNotifyTaskHandle);
if (getPriceTaskHandle)
vTaskSuspend(getPriceTaskHandle);
if (minuteTaskHandle)
vTaskSuspend(minuteTaskHandle);
// if (minuteTaskHandle)
// vTaskSuspend(minuteTaskHandle);
switch (currentScreen)
{
case SCREEN_BLOCK_HEIGHT:
@ -376,18 +393,23 @@ void showNetworkSettings()
String ipAddr = WiFi.localIP().toString();
String subNet = WiFi.subnetMask().toString();
epdContent[1] = "IP/Subnet";
epdContent[0] = "IP/Subnet";
int ipAddrPos = 0;
int subnetPos = 0;
for (int i = 0; i < 4; i++)
{
epdContent[2 + i] = ipAddr.substring(0, ipAddr.indexOf('.')) + "/" + subNet.substring(0, subNet.indexOf('.'));
epdContent[1 + i] = ipAddr.substring(0, ipAddr.indexOf('.')) + "/" + subNet.substring(0, subNet.indexOf('.'));
ipAddrPos = ipAddr.indexOf('.') + 1;
subnetPos = subNet.indexOf('.') + 1;
ipAddr = ipAddr.substring(ipAddrPos);
subNet = subNet.substring(subnetPos);
}
epdContent[NUM_SCREENS-2] = "RAM/Status";
// char buf[32];
// snprintf(buf, sizeof(buf), "%s/%s", round(ESP.getFreeHeap()/1000), );
epdContent[NUM_SCREENS-1] = String((int)round(ESP.getFreeHeap()/1000)) + "/" + (int)round(ESP.getHeapSize()/1000);
CustomTextScreen::setText(epdContent);

View File

@ -87,4 +87,5 @@ void setup()
void loop()
{
vTaskDelay(pdMS_TO_TICKS(5000));
}