void nrf_802154_hp_timer_start(void) { #if !RAAL_SOFTDEVICE && !RAAL_SIMULATOR nrf_timer_mode_set(TIMER, NRF_TIMER_MODE_TIMER); nrf_timer_bit_width_set(TIMER, NRF_TIMER_BIT_WIDTH_32); nrf_timer_frequency_set(TIMER, NRF_TIMER_FREQ_1MHz); nrf_timer_task_trigger(TIMER, NRF_TIMER_TASK_START); #endif // !RAAL_SOFTDEVICE && !RAAL_SIMULATOR }
void jshInit() { jshInitDevices(); nrf_utils_lfclk_config_and_start(); BITFIELD_CLEAR(jshPinSoftPWM); JshUSARTInfo inf; jshUSARTInitInfo(&inf); inf.pinRX = DEFAULT_CONSOLE_RX_PIN; inf.pinTX = DEFAULT_CONSOLE_TX_PIN; inf.baudRate = DEFAULT_CONSOLE_BAUDRATE; jshUSARTSetup(EV_SERIAL1, &inf); // Initialize UART for communication with Espruino/terminal. init = 1; // Enable and sort out the timer nrf_timer_mode_set(NRF_TIMER1,NRF_TIMER_MODE_TIMER); nrf_timer_bit_width_set(NRF_TIMER1, NRF_TIMER_BIT_WIDTH_32); nrf_timer_frequency_set(NRF_TIMER1, NRF_TIMER_FREQ_1MHz); // hmm = only a few options here // Irq setup NVIC_SetPriority(TIMER1_IRQn, 3); // low - don't mess with BLE :) NVIC_ClearPendingIRQ(TIMER1_IRQn); NVIC_EnableIRQ(TIMER1_IRQn); nrf_timer_int_enable(NRF_TIMER1, NRF_TIMER_INT_COMPARE0_MASK ); // Pin change nrf_drv_gpiote_init(); jswrap_nrf_bluetooth_init(); }
void us_ticker_init(void) { if (us_ticker_initialized) { nrf_timer_event_clear(NRF_TIMER1, NRF_TIMER_EVENT_COMPARE0); nrf_timer_int_disable(NRF_TIMER1, nrf_timer_compare_int_get(NRF_TIMER_CC_CHANNEL0)); return; } nrf_timer_task_trigger(NRF_TIMER1, NRF_TIMER_TASK_STOP); nrf_timer_int_disable(NRF_TIMER1, nrf_timer_compare_int_get(NRF_TIMER_CC_CHANNEL0)); /* Configure timer as follows: * - timer mode, * - timer width 16 bits for NRF51 and 32 bits for NRF52, * - timer freq 1 MHz. */ nrf_timer_mode_set(NRF_TIMER1, NRF_TIMER_MODE_TIMER); nrf_timer_frequency_set(NRF_TIMER1, NRF_TIMER_FREQ_1MHz); #ifdef NRF52 nrf_timer_bit_width_set(NRF_TIMER1, NRF_TIMER_BIT_WIDTH_32); #else nrf_timer_bit_width_set(NRF_TIMER1, NRF_TIMER_BIT_WIDTH_16); #endif nrf_timer_cc_write(NRF_TIMER1, NRF_TIMER_CC_CHANNEL0, 0); nrf_timer_event_clear(NRF_TIMER1, NRF_TIMER_EVENT_COMPARE0); NVIC_SetVector(TIMER1_IRQn, (uint32_t)us_ticker_irq_handler); nrf_drv_common_irq_enable(TIMER1_IRQn, APP_IRQ_PRIORITY_HIGH); nrf_timer_task_trigger(NRF_TIMER1, NRF_TIMER_TASK_START); /* Bug fix. First value can't be trusted. */ nrf_timer_task_trigger(NRF_TIMER1, NRF_TIMER_TASK_CAPTURE1); us_ticker_initialized = true; }
ret_code_t nrf_drv_timer_init(nrf_drv_timer_t const * const p_instance, nrf_drv_timer_config_t const * p_config, nrf_timer_event_handler_t timer_event_handler) { timer_control_block_t * p_cb = &m_cb[p_instance->instance_id]; #ifdef SOFTDEVICE_PRESENT ASSERT(p_instance->p_reg != NRF_TIMER0); ASSERT(p_config); #endif if (p_cb->state != NRF_DRV_STATE_UNINITIALIZED) { return NRF_ERROR_INVALID_STATE; } if (timer_event_handler == NULL) { return NRF_ERROR_INVALID_PARAM; } /* Warning 685: Relational operator '<=' always evaluates to 'true'" * Warning in NRF_TIMER_IS_BIT_WIDTH_VALID macro. Macro validate timers resolution. * Not necessary in nRF52 based systems. Obligatory in nRF51 based systems. */ /*lint -save -e685 */ ASSERT(NRF_TIMER_IS_BIT_WIDTH_VALID(p_instance->p_reg, p_config->bit_width)); //lint -restore p_cb->handler = timer_event_handler; p_cb->context = p_config->p_context; uint8_t i; for (i = 0; i < p_instance->cc_channel_count; ++i) { nrf_timer_event_clear(p_instance->p_reg, nrf_timer_compare_event_get(i)); } nrf_drv_common_irq_enable(nrf_drv_get_IRQn(p_instance->p_reg), p_config->interrupt_priority); nrf_timer_mode_set(p_instance->p_reg, p_config->mode); nrf_timer_bit_width_set(p_instance->p_reg, p_config->bit_width); nrf_timer_frequency_set(p_instance->p_reg, p_config->frequency); p_cb->state = NRF_DRV_STATE_INITIALIZED; return NRF_SUCCESS; }
ret_code_t nrf_drv_timer_init(nrf_drv_timer_t const * const p_instance, nrf_drv_timer_config_t const * p_config, nrf_timer_event_handler_t timer_event_handler) { timer_control_block_t * p_cb = &m_cb[p_instance->instance_id]; #ifdef SOFTDEVICE_PRESENT ASSERT(p_instance->p_reg != NRF_TIMER0); #endif ASSERT(NRF_TIMER_IS_BIT_WIDTH_VALID(p_instance->p_reg, p_config->bit_width)); if (p_cb->state != NRF_DRV_STATE_UNINITIALIZED) { return NRF_ERROR_INVALID_STATE; } if (timer_event_handler == NULL) { return NRF_ERROR_INVALID_PARAM; } if (p_config == NULL) { p_config = &m_default_config[p_instance->instance_id]; } p_cb->handler = timer_event_handler; p_cb->context = p_config->p_context; uint8_t i; for (i = 0; i < p_instance->cc_channel_count; ++i) { nrf_timer_event_clear(p_instance->p_reg, nrf_timer_compare_event_get(i)); } nrf_drv_common_irq_enable(nrf_drv_get_IRQn(p_instance->p_reg), p_config->interrupt_priority); nrf_timer_mode_set(p_instance->p_reg, p_config->mode); nrf_timer_bit_width_set(p_instance->p_reg, p_config->bit_width); nrf_timer_frequency_set(p_instance->p_reg, p_config->frequency); p_cb->state = NRF_DRV_STATE_INITIALIZED; return NRF_SUCCESS; }
ret_code_t nrf_drv_timer_init(nrf_drv_timer_t const * const p_instance, nrf_drv_timer_config_t const * p_config, nrf_timer_event_handler_t timer_event_handler) { ASSERT((p_instance->instance_id) < TIMER_INSTANCE_NUMBER); ASSERT(TIMER_IS_BIT_WIDTH_VALID(p_instance->instance_id, p_config->bit_width)); if (m_cb[p_instance->instance_id].state != NRF_DRV_STATE_UNINITIALIZED) { return NRF_ERROR_INVALID_STATE; // timer already initialized } if (p_config == NULL) { p_config = &m_default_config[p_instance->instance_id]; } #ifdef SOFTDEVICE_PRESENT if (p_instance->p_reg == NRF_TIMER0) { return NRF_ERROR_INVALID_PARAM; } #endif nrf_drv_common_irq_enable(p_instance->irq, p_config->interrupt_priority); if (timer_event_handler != NULL) { m_timer_event_handlers[p_instance->instance_id] = timer_event_handler; } else { return NRF_ERROR_INVALID_PARAM; } nrf_timer_mode_set(p_instance->p_reg, p_config->mode); nrf_timer_bit_width_set(p_instance->p_reg, p_config->bit_width); nrf_timer_frequency_set(p_instance->p_reg, p_config->frequency); m_cb[p_instance->instance_id].state = NRF_DRV_STATE_INITIALIZED; return NRF_SUCCESS; }
void jshInit() { jshInitDevices(); nrf_utils_lfclk_config_and_start(); JshUSARTInfo inf; // Just for show, not actually used... jshUSARTSetup(EV_SERIAL1, &inf); // Initialize UART for communication with Espruino/terminal. init = 1; // Enable and sort out the timer nrf_timer_mode_set(NRF_TIMER1,NRF_TIMER_MODE_TIMER); nrf_timer_bit_width_set(NRF_TIMER1, NRF_TIMER_BIT_WIDTH_32); nrf_timer_frequency_set(NRF_TIMER1, NRF_TIMER_FREQ_1MHz); // hmm = only a few options here // Irq setup NVIC_SetPriority(TIMER1_IRQn, 15); // low - don't mess with BLE :) NVIC_ClearPendingIRQ(TIMER1_IRQn); NVIC_EnableIRQ(TIMER1_IRQn); nrf_timer_int_enable(NRF_TIMER1, NRF_TIMER_INT_COMPARE0_MASK ); jswrap_nrf_bluetooth_init(); }
ret_code_t nrf_drv_timer_init(nrf_drv_timer_t const * const p_instance, nrf_drv_timer_config_t const * p_config, nrf_timer_event_handler_t timer_event_handler) { timer_control_block_t * p_cb = &m_cb[p_instance->instance_id]; ASSERT(((p_instance->p_reg == NRF_TIMER0) && TIMER0_ENABLED) || (p_instance->p_reg != NRF_TIMER0)); ASSERT(((p_instance->p_reg == NRF_TIMER1) && TIMER1_ENABLED) || (p_instance->p_reg != NRF_TIMER1)); ASSERT(((p_instance->p_reg == NRF_TIMER2) && TIMER2_ENABLED) || (p_instance->p_reg != NRF_TIMER2)); #if TIMER_COUNT == 5 ASSERT(((p_instance->p_reg == NRF_TIMER3) && TIMER3_ENABLED) || (p_instance->p_reg != NRF_TIMER3)); ASSERT(((p_instance->p_reg == NRF_TIMER4) && TIMER4_ENABLED) || (p_instance->p_reg != NRF_TIMER4)); #endif //TIMER_COUNT #ifdef SOFTDEVICE_PRESENT ASSERT(p_instance->p_reg != NRF_TIMER0); ASSERT(p_config); #endif ret_code_t err_code; if (p_cb->state != NRF_DRV_STATE_UNINITIALIZED) { err_code = NRF_ERROR_INVALID_STATE; NRF_LOG_WARNING("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code)); return err_code; } if (timer_event_handler == NULL) { err_code = NRF_ERROR_INVALID_PARAM; NRF_LOG_WARNING("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code)); return err_code; } /* Warning 685: Relational operator '<=' always evaluates to 'true'" * Warning in NRF_TIMER_IS_BIT_WIDTH_VALID macro. Macro validate timers resolution. * Not necessary in nRF52 based systems. Obligatory in nRF51 based systems. */ /*lint -save -e685 */ ASSERT(NRF_TIMER_IS_BIT_WIDTH_VALID(p_instance->p_reg, p_config->bit_width)); //lint -restore p_cb->handler = timer_event_handler; p_cb->context = p_config->p_context; uint8_t i; for (i = 0; i < p_instance->cc_channel_count; ++i) { nrf_timer_event_clear(p_instance->p_reg, nrf_timer_compare_event_get(i)); } nrf_drv_common_irq_enable(nrf_drv_get_IRQn(p_instance->p_reg), p_config->interrupt_priority); nrf_timer_mode_set(p_instance->p_reg, p_config->mode); nrf_timer_bit_width_set(p_instance->p_reg, p_config->bit_width); nrf_timer_frequency_set(p_instance->p_reg, p_config->frequency); p_cb->state = NRF_DRV_STATE_INITIALIZED; err_code = NRF_SUCCESS; NRF_LOG_INFO("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code)); return err_code; }