@@ -1047,10 +1047,10 @@ void VirtualTimer_IRQHandler(void)
1047
1047
/* the corrected value in a readable variable. */
1048
1048
/***************************************************************************/
1049
1049
#ifdef DEBUG_TIMER2
1050
- RELOAD_VAL2 = TimerPeriod + VL1_GetCurrentTimerValue ();
1051
- VL1_SetCurrentTimerValue (RELOAD_VAL2 );
1050
+ // RELOAD_VAL2 = TimerPeriod + VL1_GetCurrentTimerValue();
1051
+ // VL1_SetCurrentTimerValue(RELOAD_VAL2);
1052
1052
#else
1053
- VL1_SetCurrentTimerValue (TimerPeriod + VL1_GetCurrentTimerValue ());
1053
+ // VL1_SetCurrentTimerValue(TimerPeriod + VL1_GetCurrentTimerValue());
1054
1054
#endif
1055
1055
/* Increment Tick value and call user CB */
1056
1056
HAL_IncTick ();
@@ -1341,13 +1341,13 @@ uint32_t SystemA35_SYSTICK_Config( uint32_t timer_priority )
1341
1341
1342
1342
/* Stop Timers */
1343
1343
PL1_SetControl (0x0 );
1344
- VL1_SetControl (0x0 );
1344
+ // VL1_SetControl(0x0);
1345
1345
1346
1346
/* Reset Timers */
1347
1347
PL1_SetLoadValue (0 );
1348
1348
PL1_SetPhysicalCompareValue (0 );
1349
- VL1_SetCurrentTimerValue (0 );
1350
- VL1_SetTimerCompareValue (0 );
1349
+ // VL1_SetCurrentTimerValue(0);
1350
+ // VL1_SetTimerCompareValue(0);
1351
1351
1352
1352
#ifdef DEBUG_PPI2x
1353
1353
FIQ_count = 0 ;
@@ -1407,8 +1407,8 @@ uint32_t SystemA35_SYSTICK_Config( uint32_t timer_priority )
1407
1407
}
1408
1408
else
1409
1409
{
1410
- VL1_SetCurrentTimerValue (TimerPeriod );
1411
- VL1_SetControl (0x1 );
1410
+ // VL1_SetCurrentTimerValue(TimerPeriod);
1411
+ // VL1_SetControl(0x1);
1412
1412
}
1413
1413
return 0 ;
1414
1414
}
@@ -1457,7 +1457,7 @@ uint32_t SystemA35_ManageTick( uint32_t suspend_resume_stop_tick )
1457
1457
case A35_STOP_SYSTICK :
1458
1458
/* Stop Timers */
1459
1459
PL1_SetControl (0x0 );
1460
- VL1_SetControl (0x0 );
1460
+ // VL1_SetControl(0x0);
1461
1461
case A35_SUSPEND_SYSTICK :
1462
1462
/* Disable corresponding interrupt and clear it if pending */
1463
1463
IRQ_Disable (sourcetimer_irq );
0 commit comments