2025-03-27 7:44 PM - edited 2025-03-27 7:45 PM
I am experiencing an issue with my STM32-based project where none of the interrupt handlers are being invoked, including the SysTick handler. Here is my trying:
Vector Table Offset Register (VTOR) Configuration:
I have explicitly set SCB->VTOR = 0x08000000 to ensure the vector table points to the correct memory address. Despite this, the issue persists.
SysTick Initialization:
The HAL_InitTick function successfully initializes the SysTick, returning HAL_OK.
Global Interrupts:
I have attempted disabling and re-enabling global interrupts using __disable_irq() and __enable_irq(), but this had no effect.
Real-Time Operating System (RTOS):
No RTOS is being used in this project. The setup involves minimal configuration, primarily focusing on clock settings, which have been verified to function correctly.
SysTick Control and Status Register:
The CTRL register's 16th bit is set to 1, indicating that the SysTick counter is enabled. However, the SysTick handler is still not being called.
Debugger Behavior:
The debugger indicates that the SysTick handler's address is at 0x08000854. Despite this, breakpoints within the handler are never hit, suggesting it is not being invoked.
HAL_Delay Function:
Using HAL_Delay(500) to toggle an LED results in the LED remaining in its initial state, implying that the delay function is stuck, likely due to the SysTick handler not updating the uwTick variable.
SysTick Handler Priority:
The priority of the SysTick handler has been set to 0, the highest priority.
UART Interrupts:
After enabling UART and observing that the RXNEIE and RXNE bits are set to 1, the UART interrupt handler is still not being called.
RCC->CFGR Reset:
Setting RCC->CFGR = 0 to reset the clock configuration is necessary, as misconfigured clock settings could prevent interrupts from functioning properly.
int _write(int file, char *ptr, int len)
{
(void) file;
HAL_UART_Transmit(&huart1, (void*) ptr, len, 10);
return len;
}
/*
uint32_t HAL_GetTick(void) {
if ((SysTick->CTRL >> 16) == 1) //1ms
{
uwTick++;
}
return uwTick;
}*/
/*
void HAL_Delay(uint32_t Delay) {
uint32_t tickstart = HAL_GetTick();
uint32_t wait = Delay;
/* Add a freq to guarantee minimum wait */
/*if (wait < HAL_MAX_DELAY)
{
wait += (uint32_t) (uwTickFreq);
}
while ((HAL_GetTick() - tickstart) < wait){}
uwTick = 0;*/
}*/
/*
void HAL_IncTick(void) {
return;
}
*/
/* USER CODE END PFP */
/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */
void uart_printf(char *fmt, ...)
{
char uart_send_buffer[1024] = {0, };
va_list va;
va_start(va, fmt);
vsnprintf(uart_send_buffer, sizeof(uart_send_buffer), fmt, va);
HAL_UART_Transmit(&huart1, (uint8_t *)uart_send_buffer, strlen(uart_send_buffer), 10);
va_end(va);
}
/* USER CODE END 0 */
/**
* @brief The application entry point.
* @retval int
*/
int main(void)
{
/* USER CODE BEGIN 1 */
SystemInit();
RCC->CFGR = 0x00;
/* USER CODE END 1 */
/* MCU Configuration--------------------------------------------------------*/
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
HAL_Init();
/* USER CODE BEGIN Init */
/* USER CODE END Init */
/* Configure the system clock */
SystemClock_Config();
/* USER CODE BEGIN SysInit */
/* USER CODE END SysInit */
/* Initialize all configured peripherals */
MX_GPIO_Init();
MX_USART1_UART_Init();
/* USER CODE BEGIN 2 */
//__disable_irq();
//__enable_irq();
uart_init();
/* USER CODE END 2 */
/* Infinite loop */
/* USER CODE BEGIN WHILE */
while (1)
{
HAL_GPIO_TogglePin(GPIOC, GPIO_PIN_4);
printr("uart send data");
HAL_Delay(500);
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */
}
Option Bytes Configuration:
Also attempts to write to the option bytes have failed, resulting in read protection being enabled. Setting the Read Protection (RDP) to 0xAA (no protection) did not resolve the issue, and I am unable to configure any option bytes.
Given these observations, I suspect that the inability to write to the option bytes and the potential misconfiguration of the vector table are contributing factors. The failure of both SysTick and UART interrupts suggests a broader issue with interrupt handling in the system.
I would appreciate any insights or suggestions from the community to help diagnose and resolve this problem.
Solved! Go to Solution.
2025-03-27 10:07 PM
i solved it... when i connect my debbuger (st-link), debbuger set RCC->CFGR when init situations. And also, all handler isnot invoked whlie using st-link. i use cube proggrammer uart download to avoid using stlink... and it works.
2025-03-27 10:07 PM
i solved it... when i connect my debbuger (st-link), debbuger set RCC->CFGR when init situations. And also, all handler isnot invoked whlie using st-link. i use cube proggrammer uart download to avoid using stlink... and it works.