Skip to content

Commit

Permalink
Increase PSRAM speed to 80MHZ (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
dk307 committed Jan 20, 2024
1 parent d15e417 commit 52421e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,6 @@
"scd4x_sensor_device.h": "c"
},
"C_Cpp.errorSquiggles": "disabled",
"editor.formatOnSave": true
"editor.formatOnSave": true,
"idf.port": "/dev/ttyACM0"
}
2 changes: 1 addition & 1 deletion main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ESP_EVENT_DEFINE_BASE(APP_COMMON_EVENT);
extern "C" void app_main(void)
{
ESP_LOGI(OPERATIONS_TAG, "Starting ....");
esp_log_level_set("*", ESP_LOG_INFO);
esp_log_level_set("*", ESP_LOG_WARN);

try
{
Expand Down
6 changes: 3 additions & 3 deletions sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -867,9 +867,9 @@ CONFIG_SPIRAM_CS_IO=26
# CONFIG_SPIRAM_FETCH_INSTRUCTIONS is not set
# CONFIG_SPIRAM_RODATA is not set
# CONFIG_SPIRAM_SPEED_120M is not set
# CONFIG_SPIRAM_SPEED_80M is not set
CONFIG_SPIRAM_SPEED_40M=y
CONFIG_SPIRAM_SPEED=40
CONFIG_SPIRAM_SPEED_80M=y
# CONFIG_SPIRAM_SPEED_40M is not set
CONFIG_SPIRAM_SPEED=80
CONFIG_SPIRAM_BOOT_INIT=y
# CONFIG_SPIRAM_USE_MEMMAP is not set
CONFIG_SPIRAM_USE_CAPS_ALLOC=y
Expand Down

0 comments on commit 52421e8

Please sign in to comment.