Function animateToItem makes a two animationSteps and HardFault
I am using stm32f746 nucleo board and display with fmc!
his is how it works
void Screen1View::handleTickEvent()
{
tickCounter++;
if(tickCounter > 60){
tickCounter = 0;
scrollWheel.animateToItem(scrollWheel.getSelectedItem() + 1, 0);
// application().gotoScreen2ScreenSlideTransitionEast();
}
}
doesn't work like that! Makes a two animationSteps and HardFault!
void Screen1View::handleTickEvent()
{
tickCounter++;
if(tickCounter > 60){
tickCounter = 0;
scrollWheel.animateToItem(scrollWheel.getSelectedItem() + 1, 10);
// application().gotoScreen2ScreenSlideTransitionEast();
}
}