cancel
Showing results for 
Search instead for 
Did you mean: 

FreeRTOS SYSTickTimer frequency

Ash1
Associate III

Hi

I am trying to run freeRTOS on STM32f407 so I want to know at what frequency my clock will run let me share you my clocking diagram too.

another doubt how to enable SysTick_Handler.

other external interrupt I have enabled like this 

NVIC_SetPriority(TIM2_IRQn, 0x00);

NVIC_EnableIRQ(TIM2_IRQn);

NVIC_SetVector(TIM2_IRQn, (uint32_t)&TIM2_IRQ_Handler);

Note :

#define configSYSTICK_CLOCK_HZ ( configCPU_CLOCK_HZ )
#define configCPU_CLOCK_HZ ( ( unsigned long ) 16000000 )

is it correct

B.R

Ashish

6 REPLIES 6
mƎALLEm
ST Employee

Hello, 

Please use </> button to share your code.

Thank you 

To give better visibility on the answered topics, please click on "Accept as Solution" on the reply which solved your issue or answered your question.

hi 

I cant share you code sorry to say but if you need more data you can ask in reply.

B.R

Ashish

What @mƎALLEm means is that you need to use the proper formatting for the code that you did include in your post.

See How to insert source code for full instructions.

See also How to write your question to maximize your chances to find a solution.

 


@Ash1 wrote:

hi 

I cant share you code sorry to say but if you need more data you can ask in reply.

B.R

Ashish


https://community.st.com/t5/community-guidelines/how-to-insert-source-code/ta-p/693413

To give better visibility on the answered topics, please click on "Accept as Solution" on the reply which solved your issue or answered your question.

Hi

I have shared again.

mnote pfa attachment for clock too and tell me what clock will be fed to freertos

NVIC_SetPriority(TIM2_IRQn, 0x00);

NVIC_EnableIRQ(TIM2_IRQn);

NVIC_SetVector(TIM2_IRQn, (uint32_t)&TIM2_IRQ_Handler);


#define configSYSTICK_CLOCK_HZ ( configCPU_CLOCK_HZ )
#define configCPU_CLOCK_HZ ( ( unsigned long ) 16000000 )

.

 

 

Hello,

First , please use CubeMX to generate a FreeRTOS project. 

Second, in CubeMx, FreeRTOS needs system tick not a timer for its kernel tick. Need to select another timer for HAL:

Example TIM6:

mALLEm_0-1743764474608.png

Third, the system tick FreeRTOS kernel is running at 1ms rate: 

From FreeRTOSConfig.h:

#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )

Attached an ioc file.

Hope that helps.

To give better visibility on the answered topics, please click on "Accept as Solution" on the reply which solved your issue or answered your question.