Skip to content

Commit

Permalink
boards/feather-m0: update PWM config
Browse files Browse the repository at this point in the history
  • Loading branch information
benpicco committed Jul 8, 2020
1 parent 6547b36 commit 8f568a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boards/feather-m0/include/periph_conf.h
Expand Up @@ -170,10 +170,10 @@ static const pwm_conf_chan_t pwm_chan1_config[] = {
/* PWM device configuration */
static const pwm_conf_t pwm_config[] = {
#if PWM_0_EN
{TCC0, pwm_chan0_config, ARRAY_SIZE(pwm_chan0_config)},
{TCC_CONFIG(TCC0), pwm_chan0_config, ARRAY_SIZE(pwm_chan0_config), SAM0_GCLK_MAIN},
#endif
#if PWM_1_EN
{TCC2, pwm_chan1_config, ARRAY_SIZE(pwm_chan1_config)},
{TCC_CONFIG(TCC2), pwm_chan1_config, ARRAY_SIZE(pwm_chan1_config), SAM0_GCLK_MAIN},
#endif
};

Expand Down

0 comments on commit 8f568a4

Please sign in to comment.