nobody wrote on Tuesday, October 31, 2006:
Hi,
I am having strange problem (at least in my point of view).
When I do this:
__arm void vRPM_ISR ( void )
{
xNewRPM = xTaskGetTickCount();
whole freertos kernell freezes.
When I chanege it to this:
__arm void vRPM_ISR ( void )
{
xNewRPM = xTickCount;
everything runs well. So the problem must be in xTaskGetTickCount function in here:
taskENTER_CRITICAL(); and taskEXIT_CRITICAL();
any explanation appreciated
Thanks
Josef