Skip to content
Snippets Groups Projects
Commit 5d9a0cfc authored by David Sidrane's avatar David Sidrane Committed by Daniel Agar
Browse files

nxphlite-v3:Fix RGB ordering Red and Green were swapped.

parent 0754b356
No related branches found
No related tags found
No related merge requests found
......@@ -146,16 +146,16 @@ __EXPORT const struct io_timers_t led_pwm_timers[MAX_LED_TIMERS] = {
__EXPORT const struct timer_io_channels_t led_pwm_channels[MAX_TIMER_LED_CHANNELS] = {
{
.gpio_out = LED_TIM3_CH1OUT, // RGB_R
.gpio_out = LED_TIM3_CH5OUT, // RGB_G
.gpio_in = 0,
.timer_index = 0,
.timer_channel = 2,
.timer_channel = 6,
},
{
.gpio_out = LED_TIM3_CH5OUT, // RGB_G
.gpio_out = LED_TIM3_CH1OUT, // RGB_R
.gpio_in = 0,
.timer_index = 0,
.timer_channel = 6,
.timer_channel = 2,
},
{
.gpio_out = LED_TIM3_CH4OUT, // RGB_B
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment