1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

Merge pull request #17781 from benpicco/hard_fault-BKPT

cpu/cortexm_common: remove breakpoint from hard_fault_handler
This commit is contained in:
benpicco 2022-06-07 15:28:08 +02:00 committed by GitHub
commit a64f722a42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -449,7 +449,6 @@ __attribute__((used)) void hard_fault_handler(uint32_t* sp, uint32_t corrupted,
: "r0", "r1", "r2", "r3", "r12"
);
}
__BKPT(1);
core_panic(PANIC_HARD_FAULT, "HARD FAULT HANDLER");
}