Is there in VSCode a NVIC view?
Hi there,
Im currently evaluating moving from Keil uVison to VSCode. But im missing a NVIC view. Is there anything like this in VSCode?
This is how it looks in uVision:

Hi there,
Im currently evaluating moving from Keil uVison to VSCode. But im missing a NVIC view. Is there anything like this in VSCode?
This is how it looks in uVision:

Hi @Kilian Nötzold ,
Currently the closest match in VS Code world is the "Peripheral view". It is an open-source view which reads an CMSIS svd-file and displays the content. It is a bit primitive. And it can only load one svd-file at a time.
The various registers in an STM32 MCU is split into two categories:
Normally we load the:
C:\ST\STM32CubeCLT_1.16.0\STMicroelectronics_CMSIS_SVD\STM32F407.svd
If you want to see the Arm core IPs like NVIC, then instead load the:
C:\ST\STM32CubeCLT_1.16.0\STMicroelectronics_CMSIS_SVD\Core\Cortex-M4.svd
Which file that is loaded is part of the MyProject\.vscode\launch.json.
This is a limitation in the VS Code debug support for now. We will try to fix this later on the roadmap.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.