2022-06-17 14:59:56 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-02-02 15:18:29 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "esp_system.h"
|
2022-07-21 11:24:42 +00:00
|
|
|
#include "esp_cpu.h"
|
2020-02-02 15:18:29 +00:00
|
|
|
|
|
|
|
#include "soc/soc_caps.h"
|
|
|
|
|
|
|
|
void __attribute__((noreturn)) abort(void)
|
|
|
|
{
|
2020-02-04 14:16:37 +00:00
|
|
|
#define ERR_STR1 "abort() was called at PC 0x"
|
|
|
|
#define ERR_STR2 " on core "
|
2020-11-10 07:40:01 +00:00
|
|
|
|
2020-02-02 15:18:29 +00:00
|
|
|
_Static_assert(UINTPTR_MAX == 0xffffffff, "abort() assumes 32-bit addresses");
|
|
|
|
_Static_assert(SOC_CPU_CORES_NUM < 10, "abort() assumes number of cores is 1 to 9");
|
2020-11-10 07:40:01 +00:00
|
|
|
|
2020-02-02 15:18:29 +00:00
|
|
|
char addr_buf[9] = { 0 };
|
|
|
|
char core_buf[2] = { 0 };
|
2020-11-10 07:40:01 +00:00
|
|
|
|
2020-02-02 15:18:29 +00:00
|
|
|
char buf[sizeof(ERR_STR1) + sizeof(addr_buf) + sizeof(core_buf) + sizeof(ERR_STR2) + 1 /* null char */] = { 0 };
|
2020-11-10 07:40:01 +00:00
|
|
|
|
2020-02-02 15:18:29 +00:00
|
|
|
itoa((uint32_t)(__builtin_return_address(0) - 3), addr_buf, 16);
|
2022-07-21 11:24:42 +00:00
|
|
|
itoa(esp_cpu_get_core_id(), core_buf, 10);
|
2020-11-10 07:40:01 +00:00
|
|
|
|
2020-02-02 15:18:29 +00:00
|
|
|
const char *str[] = { ERR_STR1, addr_buf, ERR_STR2, core_buf };
|
2020-11-10 07:40:01 +00:00
|
|
|
|
2020-02-04 14:16:37 +00:00
|
|
|
char *dest = buf;
|
2020-02-02 15:18:29 +00:00
|
|
|
|
2020-11-17 04:48:35 +00:00
|
|
|
for (size_t i = 0; i < sizeof(str) / sizeof(str[0]); i++) {
|
2020-02-04 14:16:37 +00:00
|
|
|
strcat(dest, str[i]);
|
2020-02-02 15:18:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
esp_system_abort(buf);
|
|
|
|
}
|