| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- /* Copyright (c) 2015 Nordic Semiconductor. All Rights Reserved.
- *
- * The information contained herein is property of Nordic Semiconductor ASA.
- * Terms and conditions of usage are described in detail in NORDIC
- * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
- *
- * Licensees are granted free, non-transferable use of the information. NO
- * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
- * the file.
- *
- */
- #include "nrf_drv_adc.h"
- #include "nrf_drv_common.h"
- #include "nrf_assert.h"
- #include "app_util_platform.h"
- #include "app_util.h"
- typedef struct
- {
- nrf_drv_adc_event_handler_t event_handler;
- nrf_drv_adc_channel_t * p_head;
- nrf_drv_adc_channel_t * p_current_conv;
- nrf_adc_value_t * p_buffer;
- uint8_t size;
- uint8_t idx;
- nrf_drv_state_t state;
- } adc_cb_t;
- static adc_cb_t m_cb;
- static const nrf_drv_adc_config_t m_default_config = NRF_DRV_ADC_DEFAULT_CONFIG;
- ret_code_t nrf_drv_adc_init(nrf_drv_adc_config_t const * p_config,
- nrf_drv_adc_event_handler_t event_handler)
- {
- if (m_cb.state != NRF_DRV_STATE_UNINITIALIZED)
- {
- return NRF_ERROR_INVALID_STATE;
- }
- nrf_adc_event_clear(NRF_ADC_EVENT_END);
- if (event_handler)
- {
- if (!p_config)
- {
- p_config = (nrf_drv_adc_config_t *)&m_default_config;
- }
- nrf_drv_common_irq_enable(ADC_IRQn, p_config->interrupt_priority);
- }
- m_cb.event_handler = event_handler;
- m_cb.state = NRF_DRV_STATE_INITIALIZED;
- return NRF_SUCCESS;
- }
- void nrf_drv_adc_uninit(void)
- {
- m_cb.p_head = NULL;
- nrf_drv_common_irq_disable(ADC_IRQn);
- nrf_adc_int_disable(NRF_ADC_INT_END_MASK);
- nrf_adc_task_trigger(NRF_ADC_TASK_STOP);
- m_cb.state = NRF_DRV_STATE_UNINITIALIZED;
- }
- void nrf_drv_adc_channel_enable(nrf_drv_adc_channel_t * const p_channel)
- {
- ASSERT(mp_state == NRF_DRV_STATE_INITIALIZED);
- ASSERT(!is_address_from_stack(p_channel));
- p_channel->p_next = NULL;
- if (m_cb.p_head == NULL)
- {
- m_cb.p_head = p_channel;
- }
- else
- {
- nrf_drv_adc_channel_t * p_curr_channel = m_cb.p_head;
- while (p_curr_channel->p_next != NULL)
- {
- ASSERT(p_channel != p_curr_channel);
- p_curr_channel = p_curr_channel->p_next;
- }
- p_curr_channel->p_next = p_channel;
- }
- }
- void nrf_drv_adc_channel_disable(nrf_drv_adc_channel_t * const p_channel)
- {
- ASSERT(mp_state == NRF_DRV_STATE_INITIALIZED);
- ASSERT(m_cb.p_head);
- nrf_drv_adc_channel_t * p_curr_channel = m_cb.p_head;
- nrf_drv_adc_channel_t * p_prev_channel = NULL;
- while(p_curr_channel != p_channel)
- {
- p_prev_channel = p_curr_channel;
- p_curr_channel = p_curr_channel->p_next;
- ASSERT(p_curr_channel == NULL);
- }
- if (p_prev_channel)
- {
- p_prev_channel->p_next = p_curr_channel->p_next;
- }
- else
- {
- m_cb.p_head = p_curr_channel->p_next;
- }
- }
- void nrf_drv_adc_sample(void)
- {
- ASSERT(mp_state != NRF_DRV_STATE_UNINITIALIZED);
- ASSERT(!nrf_adc_is_busy());
- nrf_adc_start();
- }
- ret_code_t nrf_drv_adc_sample_convert(nrf_drv_adc_channel_t const * const p_channel,
- nrf_adc_value_t * p_value)
- {
- ASSERT(mp_state != NRF_DRV_STATE_UNINITIALIZED);
- if(m_cb.state == NRF_DRV_STATE_POWERED_ON)
- {
- return NRF_ERROR_BUSY;
- }
- else
- {
- m_cb.state = NRF_DRV_STATE_POWERED_ON;
- nrf_adc_config_set(p_channel->config.data);
- nrf_adc_enable();
- nrf_adc_int_disable(NRF_ADC_INT_END_MASK);
- nrf_adc_start();
- if (p_value)
- {
- while(!nrf_adc_event_check(NRF_ADC_EVENT_END)) {}
- nrf_adc_event_clear(NRF_ADC_EVENT_END);
- *p_value = (nrf_adc_value_t)nrf_adc_result_get();
- nrf_adc_disable();
- m_cb.state = NRF_DRV_STATE_INITIALIZED;
- }
- else
- {
- ASSERT(m_cb.event_handler);
- m_cb.p_buffer = NULL;
- nrf_adc_int_enable(NRF_ADC_INT_END_MASK);
- }
- return NRF_SUCCESS;
- }
- }
- static bool adc_sample_process()
- {
- nrf_adc_event_clear(NRF_ADC_EVENT_END);
- nrf_adc_disable();
- m_cb.p_buffer[m_cb.idx] = (nrf_adc_value_t)nrf_adc_result_get();
- m_cb.idx++;
- if (m_cb.idx < m_cb.size)
- {
- bool task_trigger = false;
- if (m_cb.p_current_conv->p_next == NULL)
- {
- m_cb.p_current_conv = m_cb.p_head;
- }
- else
- {
- m_cb.p_current_conv = m_cb.p_current_conv->p_next;
- task_trigger = true;
- }
- nrf_adc_config_set(m_cb.p_current_conv->config.data);
- nrf_adc_enable();
- if (task_trigger)
- {
- //nrf_adc_start();
- nrf_adc_task_trigger(NRF_ADC_TASK_START);
- }
- return false;
- }
- else
- {
- return true;
- }
- }
- ret_code_t nrf_drv_adc_buffer_convert(nrf_adc_value_t * buffer, uint16_t size)
- {
- ASSERT(mp_state != NRF_DRV_STATE_UNINITIALIZED);
- if(m_cb.state == NRF_DRV_STATE_POWERED_ON)
- {
- return NRF_ERROR_BUSY;
- }
- else
- {
- m_cb.state = NRF_DRV_STATE_POWERED_ON;
- m_cb.p_current_conv = m_cb.p_head;
- m_cb.size = size;
- m_cb.idx = 0;
- m_cb.p_buffer = buffer;
- nrf_adc_config_set(m_cb.p_current_conv->config.data);
- nrf_adc_event_clear(NRF_ADC_EVENT_END);
- nrf_adc_enable();
- if (m_cb.event_handler)
- {
- nrf_adc_int_enable(NRF_ADC_INT_END_MASK);
- }
- else
- {
- while(1)
- {
- while(!nrf_adc_event_check(NRF_ADC_EVENT_END)){}
- if (adc_sample_process())
- {
- m_cb.state = NRF_DRV_STATE_INITIALIZED;
- break;
- }
- }
- }
- return NRF_SUCCESS;
- }
- }
- bool nrf_drv_adc_is_busy(void)
- {
- ASSERT(mp_state != NRF_DRV_STATE_UNINITIALIZED);
- return (m_cb.state == NRF_DRV_STATE_POWERED_ON) ? true : false;
- }
- void ADC_IRQHandler(void)
- {
- if (m_cb.p_buffer == NULL)
- {
- nrf_adc_event_clear(NRF_ADC_EVENT_END);
- nrf_adc_int_disable(NRF_ADC_INT_END_MASK);
- nrf_adc_disable();
- nrf_drv_adc_evt_t evt;
- evt.type = NRF_DRV_ADC_EVT_SAMPLE;
- evt.data.sample.sample = (nrf_adc_value_t)nrf_adc_result_get();
- m_cb.state = NRF_DRV_STATE_INITIALIZED;
- m_cb.event_handler(&evt);
- }
- else if (adc_sample_process())
- {
- nrf_adc_int_disable(NRF_ADC_INT_END_MASK);
- nrf_drv_adc_evt_t evt;
- evt.type = NRF_DRV_ADC_EVT_DONE;
- evt.data.done.p_buffer = m_cb.p_buffer;
- evt.data.done.size = m_cb.size;
- m_cb.state = NRF_DRV_STATE_INITIALIZED;
- m_cb.event_handler(&evt);
- }
- }
|