Part Number: MSP430F5529
Other Parts Discussed in Thread: MSP430F5438
Tool/software: Code Composer Studio
Hello. Can someone help my to set timer in freertos for msp430f5529. I am using minimal project for msp430f4380, so I have to change it to use with 5529. Actually, i am using xTaskGetTickCount() function, and i need one tick to be 1ms, or 1s. InFreeRTOS.config for 4380 it is set:
#define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( unsigned long ) ( xTimeInMs ) * configTICK_RATE_HZ ) / 1000 ) )
#define configTICK_RATE_HZ ( ( TickType_t ) 1000)