Skip to main content
NDinu.2
Associate
February 20, 2022
Solved

No source available for "uwTickPrio() at 0x20000004"

  • February 20, 2022
  • 3 replies
  • 6217 views

I working with a custom board with MCU STM32F105RB, When I debug using ST CUBEIDE, I get following "No source available for "uwTickPrio() at 0x20000004"  "0693W00000KZorZQAT.png

This topic has been closed for replies.
Best answer by NDinu.2

Thank You @Pavel A.​ and @Community member​ 

I am finally able to solve the problem.

Previously I used STM32F103RB- Nucleo board as the programmer/debugger. Then I change to ST-LINK V2 programmer as my programmer/debugger.

Now it's working fine.

3 replies

Pavel A.
February 20, 2022

This message is misleading. uwTickPrio is not a function. It looks like your program jumps to data memory, or thru a bad function pointer, or stack corruption occurred. Debug.

Tesla DeLorean
Guru
February 20, 2022

Shows none of the code involved...

Really wouldn't be code in the RAM in most cases.

Use the debugger.

Review and single step your code. Try to be understand the point of failure.

Check how it would find its way to uwTickPrio, and where and how that's used in your code.

Check vector table.

Check how SysTick or whatever timing source you're using gets initialized.

Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
NDinu.2
NDinu.2AuthorBest answer
Associate
February 21, 2022

Thank You @Pavel A.​ and @Community member​ 

I am finally able to solve the problem.

Previously I used STM32F103RB- Nucleo board as the programmer/debugger. Then I change to ST-LINK V2 programmer as my programmer/debugger.

Now it's working fine.