From e9a3ca6259550e6158e1e633728f7308a0d4627f Mon Sep 17 00:00:00 2001 From: RFulchiero Date: Thu, 6 Dec 2018 16:04:15 -0600 Subject: [PATCH] Set the PWM clock prescaler back to default (1MHz clock) --- targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/pwmout_api.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/pwmout_api.c b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/pwmout_api.c index 11f6428a22..4f5f6dfb96 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/pwmout_api.c +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/pwmout_api.c @@ -101,9 +101,6 @@ static void nordic_pwm_init(pwmout_t *obj) .step_mode = NRF_PWM_STEP_AUTO, }; - // RF - test slowest prescalar setting (125kHz) - config.base_clock = NRF_PWM_CLK_125kHz; - /* Initialize instance with new configuration. */ ret_code_t result = nrfx_pwm_init(&nordic_nrf5_pwm_instance[obj->instance], &config,