Resolved! STM32H7 + Zephyr + SIGTRAP 0xA05F0000
I'm running into an issue on two boards (an STM32H735 Discovery Kit) and a custom board with an H743. #include <stdio.h> #include <zephyr/kernel.h> int main(void) { while (1) { printf("Hello there, world!\n"); k_msleep(1000); } return 0; }If ...