mirror of
https://github.com/hathach/tinyusb.git
synced 2025-03-25 23:38:06 +00:00
tusb_verify: add riscv assert support
This simply executes an "ebreak" instruction. Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
parent
ef07427e06
commit
359189ea2d
@ -89,9 +89,13 @@
|
||||
volatile uint32_t* ARM_CM_DHCSR = ((volatile uint32_t*) 0xE000EDF0UL); /* Cortex M CoreDebug->DHCSR */ \
|
||||
if ( (*ARM_CM_DHCSR) & 1UL ) __asm("BKPT #0\n"); /* Only halt mcu if debugger is attached */ \
|
||||
} while(0)
|
||||
#else
|
||||
#if defined(__riscv)
|
||||
#define TU_BREAKPOINT() do { __asm("ebreak\n"); } while(0)
|
||||
#else
|
||||
#define TU_BREAKPOINT()
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*------------------------------------------------------------------*/
|
||||
/* Macro Generator
|
||||
|
Loading…
x
Reference in New Issue
Block a user