Lines Matching +full:non +full:- +full:interrupt
3 Cortex-M Debug Monitor
6 Monitor mode debugging is a Cortex-M feature, that provides a non-halting approach to
7 debugging. With this it's possible to continue the execution of high-priority interrupts,
9 This strategy makes it possible to debug time-sensitive software, that would
14 It also contains a ready implementation of the interrupt, which can be used with
15 SEGGER J-Link debuggers.
23 requires an implementation of debug monitor interrupt that will be executed
26 With a SEGGER debug probe, it's possible to use a ready, SEGGER-provided implementation
27 of the interrupt.
29 * :kconfig:option:`CONFIG_SEGGER_DEBUGMON`: enables SEGGER debug monitor interrupt. Can be
37 processor, but rather generate an interrupt with ISR implemented under
38 …or`` symbol. :kconfig:option:`CONFIG_CORTEX_M_DEBUG_MONITOR_HOOK` config configures this interrupt
42 Using SEGGER-provided ISR
53 Example linux command: ``JLinkGDBServerCLExe -device <device> -if swd``.
56 …Example linux command: ``arm-none-eabi-gdb --ex="file build/zephyr.elf" --ex="target remote localh…
65 In order to provide a custom debug monitor interrupt, override ``z_arm_debug_monitor``
67 (see :ref:`debug monitor sample<debugmon-sample>`).