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
24 lines
501 B
Plaintext
24 lines
501 B
Plaintext
memset = 0x40000488;
|
|
memcpy = 0x4000048c;
|
|
memmove = 0x40000490;
|
|
memcmp = 0x40000494;
|
|
|
|
strcpy = 0x40000498;
|
|
strncpy = 0x4000049c;
|
|
strncmp = 0x400004a4;
|
|
|
|
PROVIDE ( strcat = 0x4000050c );
|
|
PROVIDE ( strcmp = 0x400004a0 );
|
|
PROVIDE ( strchr = 0x40000514 );
|
|
PROVIDE ( strlcpy = 0x40000524 );
|
|
PROVIDE ( strstr = 0x400004ac );
|
|
PROVIDE ( strcasecmp = 0x40000504 );
|
|
|
|
EXTERN(__mktime);
|
|
EXTERN(__strnlen);
|
|
EXTERN(__atoi);
|
|
|
|
PROVIDE ( strnlen = __strnlen );
|
|
PROVIDE ( atoi = __atoi );
|
|
PROVIDE ( mktime = __mktime );
|