You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File: ili9486.c
Function: void ili9486_Scroll(int16_t Scroll, uint16_t TopFix, uint16_t BottonFix)
Since the static uint16_t scrparam[4] array is zero initialized, the line Scroll = (0 - Scroll) % scrparam[2];
will generate a divide by zero error when executed the first time.
The text was updated successfully, but these errors were encountered:
File: ili9486.c
Function:
void ili9486_Scroll(int16_t Scroll, uint16_t TopFix, uint16_t BottonFix)
Since the
static uint16_t scrparam[4]
array is zero initialized, the lineScroll = (0 - Scroll) % scrparam[2];
will generate a divide by zero error when executed the first time.
The text was updated successfully, but these errors were encountered: