9240bbb708
In some cases, linker could choose to use ROM functions instead of the ones defined in IDF. For functions used in ROM stub table, this would lead to infinite recursion when the corresponding function was called from ROM. For crypto functions, some of these were modified in IDF, and incompatible with ROM counterparts.
4 lines
232 B
Text
4 lines
232 B
Text
PROVIDE ( ets_update_cpu_frequency = 0x40008550 ); /* Updates g_ticks_per_us on the current CPU only; not on the other core */
|
|
PROVIDE ( MD5Final = 0x4005db1c );
|
|
PROVIDE ( MD5Init = 0x4005da7c );
|
|
PROVIDE ( MD5Update = 0x4005da9c );
|