This website requires JavaScript.
Explore
Help
Register
Sign In
alex
/
esp-idf
Watch
1
Star
0
Fork
0
You've already forked esp-idf
mirror of
https://github.com/espressif/esp-idf.git
synced
2024-10-05 20:47:46 -04:00
Code
Issues
Actions
2
Packages
Projects
Releases
Wiki
Activity
f5020d3f1b
esp-idf
/
tools
/
unit-test-app
/
sdkconfig.defaults.esp32
4 lines
96 B
Plaintext
Raw
Normal View
History
Unescape
Escape
soc: moved kconfig options out of the target component. Moved the following kconfig options out of the target component: * CONFIG_ESP*_DEFAULT_CPU_FREQ* -> esp_system * ESP*_REV_MIN -> esp_hw_support * ESP*_TIME_SYSCALL -> newlib * ESP*_RTC_* -> esp_hw_support Where applicable these target specific konfig names were merged into a single common config, e.g; CONFIG_ESP*_DEFAULT_CPU_FREQ -> CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ
2022-03-02 02:49:31 -05:00
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
kconfig: refactor xtal freq kconfig to common configuration item
2022-07-12 22:54:41 -04:00
CONFIG_XTAL_FREQ_AUTO=y
spi: fix config break and reduce overhead of the bus lock on SPI1 The SPI bus lock on SPI1 introduces two side effects: 1. The device lock for the main flash requires the `CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION` to be selected, however this option is disabled by default in earlier IDF versions. Some developers may find their project cannot be built by their old sdkconfig files. 2. Usually we don't need the lock on the SPI1 bus, due to it's restrictions. However the overhead still exists in this case, the IRAM cost for static version of semaphore functions, and the time cost when getting and releasing the lock. This commit: 1. Add a CONFIG_SPI_FLASH_BYPASS_MAIN_LOCK option, which will forbid the space cost, as well as the initialization of the main bus lock. 2. When the option is not selected, the bus lock is used, the `CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION` will be selected explicitly. 3. Revert default value of `CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION` to `n`. introduced in 49a48644e42458366b2dd7b7d153acc943d50e0f. Closes https://github.com/espressif/esp-idf/issues/5046
2020-04-09 01:30:12 -04:00
CONFIG_SPI_FLASH_SHARE_SPI1_BUS=y
Reference in New Issue
Copy Permalink