We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First i want to thank you for your brilliant implementation of the ST7735 driver, most performant driver i had a look at .... THANKS !!!
i found a small issue initializing PWM for backlight in the function uint32_t Displ_BackLight(uint8_t cmd)
instead of setting the correct CCR value, it calls itself
case 'I': HAL_TIM_PWM_Start(&BKLIT_T, BKLIT_CHANNEL); Displ_BackLight(BKLIT_INIT_LEVEL); <<<<<<<<<<<<<< doesnt work break;
correction, tested and ok
case 'I': HAL_TIM_PWM_Start(&BKLIT_T, BKLIT_CHANNEL); BKLIT_TIMER->BKLIT_CCR=BKLIT_INIT_LEVEL; break;
brgds, tiwag
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First i want to thank you for your brilliant implementation of the ST7735 driver,
most performant driver i had a look at .... THANKS !!!
i found a small issue initializing PWM for backlight in the function
uint32_t Displ_BackLight(uint8_t cmd)
instead of setting the correct CCR value, it calls itself
case 'I': HAL_TIM_PWM_Start(&BKLIT_T, BKLIT_CHANNEL); Displ_BackLight(BKLIT_INIT_LEVEL); <<<<<<<<<<<<<< doesnt work break;
correction, tested and ok
case 'I': HAL_TIM_PWM_Start(&BKLIT_T, BKLIT_CHANNEL); BKLIT_TIMER->BKLIT_CCR=BKLIT_INIT_LEVEL; break;
brgds, tiwag
The text was updated successfully, but these errors were encountered: