• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2   ****************************************************************************************
3   * @file    gr55xx_hal_adc.c
4   * @author  BLE Driver Team
5   * @brief   ADC HAL module driver.
6   ****************************************************************************************
7   * @attention
8   #####Copyright (c) 2019 GOODIX
9    All rights reserved.
10 
11    Redistribution and use in source and binary forms, with or without
12    modification, are permitted provided that the following conditions are met:
13    * Redistributions of source code must retain the above copyright
14     notice, this list of conditions and the following disclaimer.
15    * Redistributions in binary form must reproduce the above copyright
16      notice, this list of conditions and the following disclaimer in the
17      documentation and/or other materials provided with the distribution.
18    * Neither the name of GOODIX nor the names of its contributors may be used
19      to endorse or promote products derived from this software without
20      specific prior written permission.
21 
22    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25    ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
26    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32    POSSIBILITY OF SUCH DAMAGE.
33   ****************************************************************************************
34   */
35 
36 /* Includes ------------------------------------------------------------------*/
37 #include "gr55xx_hal.h"
38 #include "gr55xx_rom_symbol.h"
39 
40 #if defined(HAL_ADC_MODULE_ENABLED) && (defined(GR5515_D) || defined(GR5515_E))
41 
42 /* Private variables ---------------------------------------------------------*/
43 
44 static adc_callback_t adc_callback = {
45     .adc_msp_init               = hal_adc_msp_init,
46     .adc_msp_deinit             = hal_adc_msp_deinit,
47     .adc_conv_cplt_callback     = hal_adc_conv_cplt_callback
48 };
49 
50 /* Private function prototypes -----------------------------------------------*/
51 
hal_adc_init(adc_handle_t * p_adc)52 hal_status_t hal_adc_init(adc_handle_t *p_adc)
53 {
54     hal_adc_register_callback(&adc_callback);
55 
56     hal_status_t ret;
57     GLOBAL_EXCEPTION_DISABLE();
58     ret = hal_adc_init_ext(p_adc);
59     GLOBAL_EXCEPTION_ENABLE();
60 
61     return ret;
62 }
63 
hal_adc_deinit(adc_handle_t * p_adc)64 hal_status_t hal_adc_deinit(adc_handle_t *p_adc)
65 {
66     hal_adc_register_callback(&adc_callback);
67 
68     hal_status_t ret;
69     GLOBAL_EXCEPTION_DISABLE();
70     ret = hal_adc_deinit_ext(p_adc);
71     GLOBAL_EXCEPTION_ENABLE();
72 
73     return ret;
74 }
75 
hal_adc_msp_init(adc_handle_t * p_adc)76 __WEAK void hal_adc_msp_init(adc_handle_t *p_adc)
77 {
78     /* Prevent unused argument(s) compilation warning */
79     return;
80 
81     /* NOTE : This function should not be modified, when the callback is needed,
82               the hal_adc_msp_init can be implemented in the user file
83      */
84 }
85 
hal_adc_msp_deinit(adc_handle_t * p_adc)86 __WEAK void hal_adc_msp_deinit(adc_handle_t *p_adc)
87 {
88     /* Prevent unused argument(s) compilation warning */
89     return;
90 
91     /* NOTE : This function should not be modified, when the callback is needed,
92               the hal_adc_msp_deinit can be implemented in the user file
93      */
94 }
95 
hal_adc_conv_cplt_callback(adc_handle_t * p_adc)96 __WEAK void hal_adc_conv_cplt_callback(adc_handle_t *p_adc)
97 {
98     return;
99 }
100 
101 #endif /* HAL_ADC_MODULE_ENABLED */
102 
103