08-03-2020 10:26 PM
Hello,
I'm trying to modify the tick rate for FreeRTOS but non of the integer params can be modified. bools give you a choice as does the uart, but unlike the SDK can can't modify the int params. Any ideas?
thanks,
jeff
08-10-2020 02:19 PM
Hi @jrhtech
Could you elaborate bit more on this? I mean, do you mean that you are not able to modify integer type values in the BSP configuration menu for FreeRTOS?
Regards
08-10-2020 08:52 PM
Hello,
Yes, that's the problem. If I click on the 'Modify BSP Settings' under my Board Support Package, select freertos10_xilinx and try to modify any of the values that have a type of integer I cannot change the value. For example, in the xSDK I change the tick_rate to 1000 by clicking on the value column.
Now I had to script a process that generates the BSP then applies a patch to that BSP to get the tick_rate I want. I patch the FreeRTOSConfig.h in the src directory but if I patch the mss then I can see the modified tick_rate in the menu(but still can't change it).
thanks,
jeff
08-11-2020 05:06 AM
The FreeRTOSConfig.h is dynamically created when you create the BSP:
This uses the settings in the MSS file
Let me guess your OS..... Ubuntu? This is a known issue.
You WA of changing the MSS file should work, even if it is frustrating
08-11-2020 10:32 AM