mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-29 21:30:39 +00:00
ESP32-S3: Use 32K ICACHE (#1169)
* ESP32-S3: Use 32K ICACHE * CHANGELOG.md entry
This commit is contained in:
parent
32824422a1
commit
6e68da0f4d
@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- The `esp-hal-common` package is now called `esp-hal` (#1131)
|
||||
- Refactor the `Trace` driver to be generic around its peripheral (#1140)
|
||||
- Auto detect crystal frequency based on `RtcClock::estimate_xtal_frequency()` (#1165)
|
||||
- ESP32-S3: Configure 32k ICACHE (#1169)
|
||||
|
||||
### Removed
|
||||
- Remove `xtal-26mhz` and `xtal-40mhz` features (#1165)
|
||||
|
@ -51,7 +51,7 @@ pub unsafe fn configure_cpu_caches() {
|
||||
}
|
||||
|
||||
// ideally these should be configurable
|
||||
const CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE: u32 = 0x4000; // ESP32S3_INSTRUCTION_CACHE_16KB
|
||||
const CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE: u32 = 0x8000; // ESP32S3_INSTRUCTION_CACHE_32KB
|
||||
const CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS: u8 = 8; // ESP32S3_INSTRUCTION_CACHE_8WAYS
|
||||
const CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE: u8 = 32; // ESP32S3_INSTRUCTION_CACHE_LINE_32B
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user