Hello,
I moved project from Keil to Segger Embedded studio and now while i debugging my processor freezes after enabled the interrupt sources.
When i used keil the whole program worked correctly. What can i do to make debug work correctly at Segger?
I flash via j-link and use STM32F103VC
First, I imported using the internal toolchain. When building, I got 2 errors:
and want to change the following functions:
Display All
I have tried to use assembler instructions that replicate the functions but with no avail.
Does anyone have a similar experience?
I moved project from Keil to Segger Embedded studio and now while i debugging my processor freezes after enabled the interrupt sources.
When i used keil the whole program worked correctly. What can i do to make debug work correctly at Segger?
I flash via j-link and use STM32F103VC
First, I imported using the internal toolchain. When building, I got 2 errors:
and want to change the following functions:
C Source Code
- /*******************************************************************************
- * Function Name : NVIC_SETPRIMASK
- * Description : Enables the PRIMASK priority: Raises the execution priority to 0.
- * Input : None
- * Output : None
- * Return : None
- *******************************************************************************/
- void NVIC_SETPRIMASK(void)
- {
- __SETPRIMASK();
- }
- /*******************************************************************************
- * Function Name : NVIC_RESETPRIMASK
- * Description : Disables the PRIMASK priority.
- * Input : None
- * Output : None
- * Return : None
- *******************************************************************************/
- void NVIC_RESETPRIMASK(void)
- {
- __RESETPRIMASK();
- }
I have tried to use assembler instructions that replicate the functions but with no avail.
Does anyone have a similar experience?
The post was edited 2 times, last by Akatosh ().