mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 06:40:47 +00:00

* Move ROM function definitions to esp-hal-rom crate * Patch ESP32 ROM-functions, use it in esp-storage * Allow placing additional code in IRAM * esp-storage depends on esp-hal-rom * Move ROM function wrappers from esp-hal to esp-hal-rom * Make bootloader-support crate use CRC ROM function * Minor polishing * changelogs * Make CI green * Define (some) spiflash ROM functions in esp-hal-rom * Lint * Avoid duplicate definition of `__assert_func` * Rename to `esp-rom-sys` * Mention versioning this crate in the README * Fixes * Check self-version * Docs * Clippy * Check if version bump is allowed * Unconditionally place spiflash ROM function patches (if present) in rwtext * Cleanup * Change how unacceptable version bump requests are detected * Initial version 0.1.0 * Docs * Use correct version * Force esp-rom-sys bumps to patch * Fix
22 lines
514 B
Plaintext
22 lines
514 B
Plaintext
memset = 0x400011e8;
|
|
memcpy = 0x400011f4;
|
|
memmove = 0x40001200;
|
|
memcmp = 0x4000120c;
|
|
|
|
strcpy = 0x40001218;
|
|
strncpy = 0x40001224;
|
|
strncmp = 0x4000123c;
|
|
|
|
bzero = 0x40001260;
|
|
|
|
PROVIDE(cache_dbus_mmu_set = 0x400019b0);
|
|
PROVIDE( Cache_Suspend_DCache_Autoload = 0x40001734 );
|
|
PROVIDE( Cache_Suspend_DCache = 0x400018b4 );
|
|
|
|
PROVIDE( strcat = 0x40001374 );
|
|
PROVIDE( strcmp = 0x40001230 );
|
|
PROVIDE( strchr = 0x4000138c );
|
|
PROVIDE( strlcpy = 0x400013bc );
|
|
PROVIDE( strstr = 0x40001254 );
|
|
PROVIDE( strcasecmp = 0x4000135c );
|