mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 12:50:53 +00:00

* Provide malloc, free and friends in esp-alloc * Mute warning * Remove some (now unused) global symbols * Have a way to opt-out of esp-alloc's malloc,free etc. * Fixes * Move some common C functions from esp-radio to esp-rom-sys * Fix * Make esp-readio symbols weakly linked * CHANGELOG.md * Align MSRV, cleanup visibility * Init before `assume_init` * Linker script fixes * Fix examples * Remove heapless - esp-radio is alloc * Fix examples * Whitespace * realloc_internal * Make `__esp_radio_putchar` a no-op if `sys-logs` is not enabled
30 lines
590 B
Plaintext
30 lines
590 B
Plaintext
memset = 0x40000354;
|
|
memcpy = 0x40000358;
|
|
memmove = 0x4000035c;
|
|
memcmp = 0x40000360;
|
|
|
|
strncmp = 0x40000370;
|
|
strncpy = 0x40000368;
|
|
strcpy = 0x40000364;
|
|
|
|
abs = 0x40000424;
|
|
|
|
PROVIDE(cache_dbus_mmu_set = 0x40000564);
|
|
|
|
PROVIDE( strcat = 0x400003d8 );
|
|
PROVIDE( strcmp = 0x4000036c );
|
|
PROVIDE( strchr = 0x400003e0 );
|
|
PROVIDE( strlcpy = 0x400003f0 );
|
|
PROVIDE( strstr = 0x40000378 );
|
|
PROVIDE( strcasecmp = 0x400003d0 );
|
|
|
|
PROVIDE( memchr = 0x400003c8 );
|
|
|
|
EXTERN(__mktime);
|
|
EXTERN(__strnlen);
|
|
EXTERN(__atoi);
|
|
|
|
PROVIDE ( strnlen = __strnlen );
|
|
PROVIDE ( atoi = __atoi );
|
|
PROVIDE ( mktime = __mktime );
|