1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/cortexm_common: define ARCHITECTURE_BREAKPOINT()

This commit is contained in:
Benjamin Valentin 2023-03-09 13:45:41 +01:00 committed by Benjamin Valentin
parent b88c9c5f1f
commit e850dcd921

View File

@ -26,7 +26,8 @@ extern "C" {
/* Doc is provided centrally in architecture.h, hide this from Doxygen */
#ifndef DOXYGEN
#define ARCHITECTURE_WORD_BITS (32U)
#define ARCHITECTURE_WORD_BITS (32U)
#define ARCHITECTURE_BREAKPOINT(value) __BKPT(value)
#endif /* DOXYGEN */
#ifdef __cplusplus