esp_cpu_get_call_addr() function
Given the return address, calculate the address of the preceding call instruction This is typically used to answer the question "where was the function called from?"
Arguments
return_address
The value of the return address register. Typically set to the value of __builtin_return_address(0).
Return value
Address of the call instruction preceding the return address.