gd32f30x_adc.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. /*!
  2. \file gd32f30x_adc.h
  3. \brief definitions for the ADC
  4. */
  5. /*
  6. Copyright (C) 2017 GigaDevice
  7. 2017-02-10, V1.0.1, firmware for GD32F30x
  8. */
  9. #ifndef GD32F30X_ADC_H
  10. #define GD32F30X_ADC_H
  11. #include "gd32f30x.h"
  12. /* ADC definitions */
  13. #define ADC0 ADC_BASE
  14. #define ADC1 (ADC_BASE + 0x400U)
  15. #if (defined(GD32F30X_HD) || defined(GD32F30X_XD))
  16. #define ADC2 (ADC_BASE + 0x1800U)
  17. #endif
  18. /* registers definitions */
  19. #define ADC_STAT(adcx) REG32((adcx) + 0x00U) /*!< ADC status register */
  20. #define ADC_CTL0(adcx) REG32((adcx) + 0x04U) /*!< ADC control register 0 */
  21. #define ADC_CTL1(adcx) REG32((adcx) + 0x08U) /*!< ADC control register 1 */
  22. #define ADC_SAMPT0(adcx) REG32((adcx) + 0x0CU) /*!< ADC sampling time register 0 */
  23. #define ADC_SAMPT1(adcx) REG32((adcx) + 0x10U) /*!< ADC sampling time register 1 */
  24. #define ADC_IOFF0(adcx) REG32((adcx) + 0x14U) /*!< ADC inserted channel data offset register 0 */
  25. #define ADC_IOFF1(adcx) REG32((adcx) + 0x18U) /*!< ADC inserted channel data offset register 1 */
  26. #define ADC_IOFF2(adcx) REG32((adcx) + 0x1CU) /*!< ADC inserted channel data offset register 2 */
  27. #define ADC_IOFF3(adcx) REG32((adcx) + 0x20U) /*!< ADC inserted channel data offset register 3 */
  28. #define ADC_WDHT(adcx) REG32((adcx) + 0x24U) /*!< ADC watchdog high threshold register */
  29. #define ADC_WDLT(adcx) REG32((adcx) + 0x28U) /*!< ADC watchdog low threshold register */
  30. #define ADC_RSQ0(adcx) REG32((adcx) + 0x2CU) /*!< ADC regular sequence register 0 */
  31. #define ADC_RSQ1(adcx) REG32((adcx) + 0x30U) /*!< ADC regular sequence register 1 */
  32. #define ADC_RSQ2(adcx) REG32((adcx) + 0x34U) /*!< ADC regular sequence register 2 */
  33. #define ADC_ISQ(adcx) REG32((adcx) + 0x38U) /*!< ADC inserted sequence register */
  34. #define ADC_IDATA0(adcx) REG32((adcx) + 0x3CU) /*!< ADC inserted data register 0 */
  35. #define ADC_IDATA1(adcx) REG32((adcx) + 0x40U) /*!< ADC inserted data register 1 */
  36. #define ADC_IDATA2(adcx) REG32((adcx) + 0x44U) /*!< ADC inserted data register 2 */
  37. #define ADC_IDATA3(adcx) REG32((adcx) + 0x48U) /*!< ADC inserted data register 3 */
  38. #define ADC_RDATA(adcx) REG32((adcx) + 0x4CU) /*!< ADC regular data register */
  39. #define ADC_OVSAMPCTL(adcx) REG32((adcx) + 0x80U) /*!< ADC oversampling control register */
  40. /* bits definitions */
  41. /* ADC_STAT */
  42. #define ADC_STAT_WDE BIT(0) /*!< analog watchdog event flag */
  43. #define ADC_STAT_EOC BIT(1) /*!< end of conversion */
  44. #define ADC_STAT_EOIC BIT(2) /*!< inserted channel end of conversion */
  45. #define ADC_STAT_STIC BIT(3) /*!< inserted channel start flag */
  46. #define ADC_STAT_STRC BIT(4) /*!< regular channel start flag */
  47. /* ADC_CTL0 */
  48. #define ADC_CTL0_WDCHSEL BITS(0,4) /*!< analog watchdog channel select bits */
  49. #define ADC_CTL0_EOCIE BIT(5) /*!< interrupt enable for EOC */
  50. #define ADC_CTL0_WDEIE BIT(6) /*!< analog watchdog interrupt enable */
  51. #define ADC_CTL0_EOICIE BIT(7) /*!< interrupt enable for inserted channels */
  52. #define ADC_CTL0_SM BIT(8) /*!< scan mode */
  53. #define ADC_CTL0_WDSC BIT(9) /*!< when in scan mode, analog watchdog is effective on a single channel */
  54. #define ADC_CTL0_ICA BIT(10) /*!< automatic inserted group conversion */
  55. #define ADC_CTL0_DISRC BIT(11) /*!< discontinuous mode on regular channels */
  56. #define ADC_CTL0_DISIC BIT(12) /*!< discontinuous mode on inserted channels */
  57. #define ADC_CTL0_DISNUM BITS(13,15) /*!< discontinuous mode channel count */
  58. #define ADC_CTL0_SYNCM BITS(16,19) /*!< sync mode selection */
  59. #define ADC_CTL0_IWDEN BIT(22) /*!< analog watchdog enable on inserted channels */
  60. #define ADC_CTL0_RWDEN BIT(23) /*!< analog watchdog enable on regular channels */
  61. #define ADC_CTL0_DRES BITS(24,25) /*!< ADC data resolution */
  62. /* ADC_CTL1 */
  63. #define ADC_CTL1_ADCON BIT(0) /*!< ADC converter on */
  64. #define ADC_CTL1_CTN BIT(1) /*!< continuous conversion */
  65. #define ADC_CTL1_CLB BIT(2) /*!< ADC calibration */
  66. #define ADC_CTL1_RSTCLB BIT(3) /*!< reset calibration */
  67. #define ADC_CTL1_DMA BIT(8) /*!< direct memory access mode */
  68. #define ADC_CTL1_DAL BIT(11) /*!< data alignment */
  69. #define ADC_CTL1_ETSIC BITS(12,14) /*!< external trigger select for inserted channel */
  70. #define ADC_CTL1_ETEIC BIT(15) /*!< external trigger enable for inserted channel */
  71. #define ADC_CTL1_ETSRC BITS(17,19) /*!< external trigger select for regular channel */
  72. #define ADC_CTL1_ETERC BIT(20) /*!< external trigger conversion mode for inserted channels */
  73. #define ADC_CTL1_SWICST BIT(21) /*!< start on inserted channel */
  74. #define ADC_CTL1_SWRCST BIT(22) /*!< start on regular channel */
  75. #define ADC_CTL1_TSVREN BIT(23) /*!< channel 16 and 17 enable of ADC0 */
  76. /* ADC_SAMPTx x=0..1 */
  77. #define ADC_SAMPTX_SPTN BITS(0,2) /*!< channel x sample time selection */
  78. /* ADC_IOFFx x=0..3 */
  79. #define ADC_IOFFX_IOFF BITS(0,11) /*!< data offset for inserted channel x */
  80. /* ADC_WDHT */
  81. #define ADC_WDHT_WDHT BITS(0,11) /*!< analog watchdog high threshold */
  82. /* ADC_WDLT */
  83. #define ADC_WDLT_WDLT BITS(0,11) /*!< analog watchdog low threshold */
  84. /* ADC_RSQx */
  85. #define ADC_RSQX_RSQN BITS(0,4) /*!< x conversion in regular sequence */
  86. #define ADC_RSQ0_RL BITS(20,23) /*!< regular channel sequence length */
  87. /* ADC_ISQ */
  88. #define ADC_ISQ_ISQN BITS(0,4) /*!< x conversion in regular sequence */
  89. #define ADC_ISQ_IL BITS(20,21) /*!< inserted sequence length */
  90. /* ADC_IDATAx x=0..3*/
  91. #define ADC_IDATAX_IDATAN BITS(0,15) /*!< inserted data x */
  92. /* ADC_RDATA */
  93. #define ADC_RDATA_RDATA BITS(0,15) /*!< regular data */
  94. #define ADC_RDATA_ADC1RDTR BITS(16,31) /*!< ADC1 regular channel data */
  95. /* ADC_OVSAMPCTL */
  96. #define ADC_OVSAMPCTL_OVSEN BIT(0) /*!< oversampling enable */
  97. #define ADC_OVSAMPCTL_OVSR BITS(2,4) /*!< oversampling ratio */
  98. #define ADC_OVSAMPCTL_OVSS BITS(5,8) /*!< oversampling shift */
  99. #define ADC_OVSAMPCTL_TOVS BIT(9) /*!< triggered oversampling */
  100. #define ADC_OVSAMPCTL_DRES BITS(12,13) /*!< oversampling shift */
  101. /* constants definitions */
  102. /* adc_stat register value */
  103. #define ADC_FLAG_WDE ADC_STAT_WDE /*!< analog watchdog event flag */
  104. #define ADC_FLAG_EOC ADC_STAT_EOC /*!< end of conversion */
  105. #define ADC_FLAG_EOIC ADC_STAT_EOIC /*!< inserted channel end of conversion */
  106. #define ADC_FLAG_STIC ADC_STAT_STIC /*!< inserted channel start flag */
  107. #define ADC_FLAG_STRC ADC_STAT_STRC /*!< regular channel start flag */
  108. /* adc_ctl0 register value */
  109. #define CTL0_DISNUM(regval) (BITS(13,15) & ((uint32_t)(regval) << 13)) /*!< write value to ADC_CTL0_DISNUM bit field */
  110. #define ADC_SCAN_MODE ADC_CTL0_SM /*!< scan mode */
  111. #define ADC_INSERTED_CHANNEL_AUTO ADC_CTL0_ICA /*!< inserted channel group convert automatically */
  112. #define CTL0_SYNCM(regval) (BITS(16,19) & ((uint32_t)(regval) << 16)) /*!< write value to ADC_CTL0_SYNCM bit field */
  113. #define ADC_MODE_FREE CTL0_SYNCM(0) /*!< all the ADCs work independently */
  114. #define ADC_DAUL_REGULAL_PARALLEL_INSERTED_PARALLEL CTL0_SYNCM(1) /*!< ADC0 and ADC1 work in combined regular parallel + inserted parallel mode */
  115. #define ADC_DAUL_REGULAL_PARALLEL_INSERTED_ROTATION CTL0_SYNCM(2) /*!< ADC0 and ADC1 work in combined regular parallel + trigger rotation mode */
  116. #define ADC_DAUL_INSERTED_PARALLEL_REGULAL_FOLLOWUP_FAST CTL0_SYNCM(3) /*!< ADC0 and ADC1 work in combined inserted parallel + follow-up fast mode */
  117. #define ADC_DAUL_INSERTED_PARALLEL_REGULAL_FOLLOWUP_SLOW CTL0_SYNCM(4) /*!< ADC0 and ADC1 work in combined inserted parallel + follow-up slow mode */
  118. #define ADC_DAUL_INSERTED_PARALLEL CTL0_SYNCM(5) /*!< ADC0 and ADC1 work in inserted parallel mode only */
  119. #define ADC_DAUL_REGULAL_PARALLEL CTL0_SYNCM(6) /*!< ADC0 and ADC1 work in regular parallel mode only */
  120. #define ADC_DAUL_REGULAL_FOLLOWUP_FAST CTL0_SYNCM(7) /*!< ADC0 and ADC1 work in follow-up fast mode only */
  121. #define ADC_DAUL_REGULAL_FOLLOWUP_SLOW CTL0_SYNCM(8) /*!< ADC0 and ADC1 work in follow-up slow mode only */
  122. #define ADC_DAUL_INSERTED_TRRIGGER_ROTATION CTL0_SYNCM(9) /*!< ADC0 and ADC1 work in trigger rotation mode only */
  123. /* adc_ctl1 register value */
  124. #define ADC_DATAALIGN_RIGHT ((uint32_t)0x00000000U) /*!< LSB alignment */
  125. #define ADC_DATAALIGN_LEFT ADC_CTL1_DAL /*!< MSB alignment */
  126. #define ADC_CONTINUOUS_MODE ADC_CTL1_CTN /*!< continuous mode */
  127. #define CTL1_ETSRC(regval) (BITS(17,19) & ((uint32_t)(regval) << 17)) /*!< write value to ADC_CTL1_ETSRC bit field */
  128. #define ADC0_1_EXTTRIG_REGULAR_T0_CH0 CTL1_ETSRC(0) /*!< timer 0 CC0 event select */
  129. #define ADC0_1_EXTTRIG_REGULAR_T0_CH1 CTL1_ETSRC(1) /*!< timer 0 CC1 event select */
  130. #define ADC0_1_EXTTRIG_REGULAR_T0_CH2 CTL1_ETSRC(2) /*!< timer 0 CC2 event select */
  131. #define ADC0_1_EXTTRIG_REGULAR_T1_CH1 CTL1_ETSRC(3) /*!< timer 1 CC1 event select */
  132. #define ADC0_1_EXTTRIG_REGULAR_T2_TRGO CTL1_ETSRC(4) /*!< timer 2 TRGO event select */
  133. #define ADC0_1_EXTTRIG_REGULAR_T3_CH3 CTL1_ETSRC(5) /*!< timer 3 CC3 event select */
  134. #define ADC0_1_EXTTRIG_REGULAR_T7_TRGO CTL1_ETSRC(6) /*!< timer 7 TRGO event select */
  135. #define ADC0_1_EXTTRIG_REGULAR_EXTI_11 CTL1_ETSRC(6) /*!< external interrupt line 11 */
  136. #define ADC0_1_2_EXTTRIG_REGULAR_NONE CTL1_ETSRC(7) /*!< software trigger */
  137. #define ADC2_EXTTRIG_REGULAR_T2_CH0 CTL1_ETSRC(0) /*!< timer 2 CC0 event select */
  138. #define ADC2_EXTTRIG_REGULAR_T1_CH2 CTL1_ETSRC(1) /*!< timer 1 CC2 event select */
  139. #define ADC2_EXTTRIG_REGULAR_T0_CH2 CTL1_ETSRC(2) /*!< timer 0 CC2 event select */
  140. #define ADC2_EXTTRIG_REGULAR_T7_CH0 CTL1_ETSRC(3) /*!< timer 7 CC0 event select */
  141. #define ADC2_EXTTRIG_REGULAR_T7_TRGO CTL1_ETSRC(4) /*!< timer 7 TRGO event select */
  142. #define ADC2_EXTTRIG_REGULAR_T4_CH0 CTL1_ETSRC(5) /*!< timer 4 CC0 event select */
  143. #define ADC2_EXTTRIG_REGULAR_T4_CH2 CTL1_ETSRC(6) /*!< timer 4 CC2 event select */
  144. #define CTL1_ETSIC(regval) (BITS(12,14) & ((uint32_t)(regval) << 12)) /*!< write value to ADC_CTL1_ETSIC bit field */
  145. #define ADC0_1_EXTTRIG_INSERTED_T0_TRGO CTL1_ETSIC(0) /*!< timer 0 TRGO event select */
  146. #define ADC0_1_EXTTRIG_INSERTED_T0_CH3 CTL1_ETSIC(1) /*!< timer 0 CC3 event select */
  147. #define ADC0_1_EXTTRIG_INSERTED_T1_TRGO CTL1_ETSIC(2) /*!< timer 1 TRGO event select */
  148. #define ADC0_1_EXTTRIG_INSERTED_T1_CH0 CTL1_ETSIC(3) /*!< timer 1 CC0 event select */
  149. #define ADC0_1_EXTTRIG_INSERTED_T2_CH3 CTL1_ETSIC(4) /*!< timer 2 CC3 event select */
  150. #define ADC0_1_EXTTRIG_INSERTED_T3_TRGO CTL1_ETSIC(5) /*!< timer 3 TRGO event select */
  151. #define ADC0_1_EXTTRIG_INSERTED_EXTI_15 CTL1_ETSIC(6) /*!< external interrupt line 15 */
  152. #define ADC0_1_EXTTRIG_INSERTED_T7_CH3 CTL1_ETSIC(6) /*!< timer 7 CC3 event select */
  153. #define ADC0_1_2_EXTTRIG_INSERTED_NONE CTL1_ETSIC(7) /*!< software trigger */
  154. #define ADC2_EXTTRIG_INSERTED_T0_TRGO CTL1_ETSIC(0) /*!< timer 0 TRGO event select */
  155. #define ADC2_EXTTRIG_INSERTED_T0_CH3 CTL1_ETSIC(1) /*!< timer 0 CC3 event select */
  156. #define ADC2_EXTTRIG_INSERTED_T3_CH2 CTL1_ETSIC(2) /*!< timer 3 CC2 event select */
  157. #define ADC2_EXTTRIG_INSERTED_T7_CH1 CTL1_ETSIC(3) /*!< timer 7 CC1 event select */
  158. #define ADC2_EXTTRIG_INSERTED_T7_CH3 CTL1_ETSIC(4) /*!< timer 7 CC3 event select */
  159. #define ADC2_EXTTRIG_INSERTED_T4_TRGO CTL1_ETSIC(5) /*!< timer 4 TRGO event select */
  160. #define ADC2_EXTTRIG_INSERTED_T4_CH3 CTL1_ETSIC(6) /*!< timer 4 CC3 event select */
  161. /* adc_samptx register value */
  162. #define SAMPTX_SPT(regval) (BITS(0,2) & ((uint32_t)(regval) << 0)) /*!< write value to ADC_SAMPTX_SPT bit field */
  163. #define ADC_SAMPLETIME_1POINT5 SAMPTX_SPT(0) /*!< 1.5 sampling cycles */
  164. #define ADC_SAMPLETIME_7POINT5 SAMPTX_SPT(1) /*!< 7.5 sampling cycles */
  165. #define ADC_SAMPLETIME_13POINT5 SAMPTX_SPT(2) /*!< 13.5 sampling cycles */
  166. #define ADC_SAMPLETIME_28POINT5 SAMPTX_SPT(3) /*!< 28.5 sampling cycles */
  167. #define ADC_SAMPLETIME_41POINT5 SAMPTX_SPT(4) /*!< 41.5 sampling cycles */
  168. #define ADC_SAMPLETIME_55POINT5 SAMPTX_SPT(5) /*!< 55.5 sampling cycles */
  169. #define ADC_SAMPLETIME_71POINT5 SAMPTX_SPT(6) /*!< 71.5 sampling cycles */
  170. #define ADC_SAMPLETIME_239POINT5 SAMPTX_SPT(7) /*!< 239.5 sampling cycles */
  171. /* adc_ioffx register value */
  172. #define IOFFX_IOFF(regval) (BITS(0,11) & ((uint32_t)(regval) << 0)) /*!< write value to ADC_IOFFX_IOFF bit field */
  173. /* adc_wdht register value */
  174. #define WDHT_WDHT(regval) (BITS(0,11) & ((uint32_t)(regval) << 0)) /*!< write value to ADC_WDHT_WDHT bit field */
  175. /* adc_wdlt register value */
  176. #define WDLT_WDLT(regval) (BITS(0,11) & ((uint32_t)(regval) << 0)) /*!< write value to ADC_WDLT_WDLT bit field */
  177. /* adc_rsqx register value */
  178. #define RSQ0_RL(regval) (BITS(20,23) & ((uint32_t)(regval) << 20)) /*!< write value to ADC_RSQ0_RL bit field */
  179. /* adc_isq register value */
  180. #define ISQ_IL(regval) (BITS(20,21) & ((uint32_t)(regval) << 20)) /*!< write value to ADC_ISQ_IL bit field */
  181. /* adc_ovsampctl register value */
  182. #define OVSAMPCTL_DRES(regval) (BITS(12,13) & ((uint32_t)(regval) << 12)) /*!< write value to ADC_OVSAMPCTL_DRES bit field */
  183. #define ADC_RESOLUTION_12B OVSAMPCTL_DRES(0) /*!< 12-bit ADC resolution */
  184. #define ADC_RESOLUTION_10B OVSAMPCTL_DRES(1) /*!< 10-bit ADC resolution */
  185. #define ADC_RESOLUTION_8B OVSAMPCTL_DRES(2) /*!< 8-bit ADC resolution */
  186. #define ADC_RESOLUTION_6B OVSAMPCTL_DRES(3) /*!< 6-bit ADC resolution */
  187. #define OVSAMPCTL_OVSS(regval) (BITS(5,8) & ((uint32_t)(regval) << 5)) /*!< write value to ADC_OVSAMPCTL_OVSS bit field */
  188. #define ADC_OVERSAMPLING_SHIFT_NONE OVSAMPCTL_OVSS(0) /*!< no oversampling shift */
  189. #define ADC_OVERSAMPLING_SHIFT_1B OVSAMPCTL_OVSS(1) /*!< 1-bit oversampling shift */
  190. #define ADC_OVERSAMPLING_SHIFT_2B OVSAMPCTL_OVSS(2) /*!< 2-bit oversampling shift */
  191. #define ADC_OVERSAMPLING_SHIFT_3B OVSAMPCTL_OVSS(3) /*!< 3-bit oversampling shift */
  192. #define ADC_OVERSAMPLING_SHIFT_4B OVSAMPCTL_OVSS(4) /*!< 4-bit oversampling shift */
  193. #define ADC_OVERSAMPLING_SHIFT_5B OVSAMPCTL_OVSS(5) /*!< 5-bit oversampling shift */
  194. #define ADC_OVERSAMPLING_SHIFT_6B OVSAMPCTL_OVSS(6) /*!< 6-bit oversampling shift */
  195. #define ADC_OVERSAMPLING_SHIFT_7B OVSAMPCTL_OVSS(7) /*!< 7-bit oversampling shift */
  196. #define ADC_OVERSAMPLING_SHIFT_8B OVSAMPCTL_OVSS(8) /*!< 8-bit oversampling shift */
  197. #define OVSAMPCTL_OVSR(regval) (BITS(2,4) & ((uint32_t)(regval) << 2)) /*!< write value to ADC_OVSAMPCTL_OVSR bit field */
  198. #define ADC_OVERSAMPLING_RATIO_MUL2 OVSAMPCTL_OVSR(0) /*!< oversampling ratio multiple 2 */
  199. #define ADC_OVERSAMPLING_RATIO_MUL4 OVSAMPCTL_OVSR(1) /*!< oversampling ratio multiple 4 */
  200. #define ADC_OVERSAMPLING_RATIO_MUL8 OVSAMPCTL_OVSR(2) /*!< oversampling ratio multiple 8 */
  201. #define ADC_OVERSAMPLING_RATIO_MUL16 OVSAMPCTL_OVSR(3) /*!< oversampling ratio multiple 16 */
  202. #define ADC_OVERSAMPLING_RATIO_MUL32 OVSAMPCTL_OVSR(4) /*!< oversampling ratio multiple 32 */
  203. #define ADC_OVERSAMPLING_RATIO_MUL64 OVSAMPCTL_OVSR(5) /*!< oversampling ratio multiple 64 */
  204. #define ADC_OVERSAMPLING_RATIO_MUL128 OVSAMPCTL_OVSR(6) /*!< oversampling ratio multiple 128 */
  205. #define ADC_OVERSAMPLING_RATIO_MUL256 OVSAMPCTL_OVSR(7) /*!< oversampling ratio multiple 256 */
  206. #define ADC_OVERSAMPLING_ALL_CONVERT 0U /*!< all oversampled conversions for a channel are done consecutively after a trigger */
  207. #define ADC_OVERSAMPLING_ONE_CONVERT 1U /*!< each oversampled conversion for a channel needs a trigger */
  208. /* ADC channel group definitions */
  209. #define ADC_REGULAR_CHANNEL ((uint8_t)0x01U) /*!< adc regular channel group */
  210. #define ADC_INSERTED_CHANNEL ((uint8_t)0x02U) /*!< adc inserted channel group */
  211. #define ADC_REGULAR_INSERTED_CHANNEL ((uint8_t)0x03U) /*!< both regular and inserted channel group */
  212. #define ADC_CHANNEL_DISCON_DISABLE ((uint8_t)0x04U) /*!< disable discontinuous mode of regular & inserted channel */
  213. /* ADC inserted channel definitions */
  214. #define ADC_INSERTED_CHANNEL_0 ((uint8_t)0x00U) /*!< adc inserted channel 0 */
  215. #define ADC_INSERTED_CHANNEL_1 ((uint8_t)0x01U) /*!< adc inserted channel 1 */
  216. #define ADC_INSERTED_CHANNEL_2 ((uint8_t)0x02U) /*!< adc inserted channel 2 */
  217. #define ADC_INSERTED_CHANNEL_3 ((uint8_t)0x03U) /*!< adc inserted channel 3 */
  218. /* ADC channel definitions */
  219. #define ADC_CHANNEL_0 ((uint8_t)0x00U) /*!< ADC channel 0 */
  220. #define ADC_CHANNEL_1 ((uint8_t)0x01U) /*!< ADC channel 1 */
  221. #define ADC_CHANNEL_2 ((uint8_t)0x02U) /*!< ADC channel 2 */
  222. #define ADC_CHANNEL_3 ((uint8_t)0x03U) /*!< ADC channel 3 */
  223. #define ADC_CHANNEL_4 ((uint8_t)0x04U) /*!< ADC channel 4 */
  224. #define ADC_CHANNEL_5 ((uint8_t)0x05U) /*!< ADC channel 5 */
  225. #define ADC_CHANNEL_6 ((uint8_t)0x06U) /*!< ADC channel 6 */
  226. #define ADC_CHANNEL_7 ((uint8_t)0x07U) /*!< ADC channel 7 */
  227. #define ADC_CHANNEL_8 ((uint8_t)0x08U) /*!< ADC channel 8 */
  228. #define ADC_CHANNEL_9 ((uint8_t)0x09U) /*!< ADC channel 9 */
  229. #define ADC_CHANNEL_10 ((uint8_t)0x0AU) /*!< ADC channel 10 */
  230. #define ADC_CHANNEL_11 ((uint8_t)0x0BU) /*!< ADC channel 11 */
  231. #define ADC_CHANNEL_12 ((uint8_t)0x0CU) /*!< ADC channel 12 */
  232. #define ADC_CHANNEL_13 ((uint8_t)0x0DU) /*!< ADC channel 13 */
  233. #define ADC_CHANNEL_14 ((uint8_t)0x0EU) /*!< ADC channel 14 */
  234. #define ADC_CHANNEL_15 ((uint8_t)0x0FU) /*!< ADC channel 15 */
  235. #define ADC_CHANNEL_16 ((uint8_t)0x10U) /*!< ADC channel 16 */
  236. #define ADC_CHANNEL_17 ((uint8_t)0x11U) /*!< ADC channel 17 */
  237. /* ADC interrupt */
  238. #define ADC_INT_WDE ADC_STAT_WDE /*!< analog watchdog event interrupt */
  239. #define ADC_INT_EOC ADC_STAT_EOC /*!< end of group conversion interrupt */
  240. #define ADC_INT_EOIC ADC_STAT_EOIC /*!< end of inserted group conversion interrupt */
  241. /* ADC interrupt flag */
  242. #define ADC_INT_FLAG_WDE ADC_STAT_WDE /*!< analog watchdog event interrupt flag */
  243. #define ADC_INT_FLAG_EOC ADC_STAT_EOC /*!< end of group conversion interrupt flag */
  244. #define ADC_INT_FLAG_EOIC ADC_STAT_EOIC /*!< end of inserted group conversion interrupt flag */
  245. /* function declarations */
  246. /* reset ADC */
  247. void adc_deinit(uint32_t adc_periph);
  248. /* enable ADC interface */
  249. void adc_enable(uint32_t adc_periph);
  250. /* disable ADC interface */
  251. void adc_disable(uint32_t adc_periph);
  252. /* ADC calibration and reset calibration */
  253. void adc_calibration_enable(uint32_t adc_periph);
  254. /* enable DMA request */
  255. void adc_dma_mode_enable(uint32_t adc_periph);
  256. /* disable DMA request */
  257. void adc_dma_mode_disable(uint32_t adc_periph);
  258. /* enable the temperature sensor and Vrefint channel */
  259. void adc_tempsensor_vrefint_enable(void);
  260. /* disable the temperature sensor and Vrefint channel */
  261. void adc_tempsensor_vrefint_disable(void);
  262. /* configure ADC resolution */
  263. void adc_resolution_config(uint32_t adc_periph , uint32_t resolution);
  264. /* configure ADC discontinuous mode */
  265. void adc_discontinuous_mode_config(uint32_t adc_periph , uint8_t adc_channel_group , uint8_t length);
  266. /* configure the ADC mode */
  267. void adc_mode_config(uint32_t mode);
  268. /* enable or disable ADC special function */
  269. void adc_special_function_config(uint32_t adc_periph , uint32_t function , ControlStatus newvalue);
  270. /* configure ADC data alignment */
  271. void adc_data_alignment_config(uint32_t adc_periph , uint32_t data_alignment);
  272. /* configure the length of regular channel group or inserted channel group */
  273. void adc_channel_length_config(uint32_t adc_periph , uint8_t adc_channel_group , uint32_t length);
  274. /* configure ADC regular channel */
  275. void adc_regular_channel_config(uint32_t adc_periph , uint8_t rank , uint8_t adc_channel , uint32_t sample_time);
  276. /* configure ADC inserted channel */
  277. void adc_inserted_channel_config(uint32_t adc_periph , uint8_t rank , uint8_t adc_channel , uint32_t sample_time);
  278. /* configure ADC inserted channel offset */
  279. void adc_inserted_channel_offset_config(uint32_t adc_periph , uint8_t inserted_channel , uint16_t offset);
  280. /* enable ADC external trigger */
  281. void adc_external_trigger_config(uint32_t adc_periph, uint8_t adc_channel_group, ControlStatus newvalue);
  282. /* configure ADC external trigger source */
  283. void adc_external_trigger_source_config(uint32_t adc_periph, uint8_t adc_channel_group, uint32_t external_trigger_source);
  284. /* enable ADC software trigger */
  285. void adc_software_trigger_enable(uint32_t adc_periph , uint8_t adc_channel_group);
  286. /* read ADC regular group data register */
  287. uint16_t adc_regular_data_read(uint32_t adc_periph);
  288. /* read ADC inserted group data register */
  289. uint16_t adc_inserted_data_read(uint32_t adc_periph , uint8_t inserted_channel);
  290. /* read the last ADC0 and ADC1 conversion result data in sync mode */
  291. uint32_t adc_sync_mode_convert_value_read(void);
  292. /* get the ADC flag bits */
  293. FlagStatus adc_flag_get(uint32_t adc_periph , uint32_t adc_flag);
  294. /* clear the ADC flag bits */
  295. void adc_flag_clear(uint32_t adc_periph , uint32_t adc_flag);
  296. /* get the ADC interrupt bits */
  297. FlagStatus adc_interrupt_flag_get(uint32_t adc_periph , uint32_t adc_interrupt);
  298. /* clear the ADC flag */
  299. void adc_interrupt_flag_clear(uint32_t adc_periph , uint32_t adc_interrupt);
  300. /* enable ADC interrupt */
  301. void adc_interrupt_enable(uint32_t adc_periph , uint32_t adc_interrupt);
  302. /* disable ADC interrupt */
  303. void adc_interrupt_disable(uint32_t adc_periph , uint32_t adc_interrupt);
  304. /* configure ADC analog watchdog single channel */
  305. void adc_watchdog_single_channel_enable(uint32_t adc_periph, uint8_t adc_channel);
  306. /* configure ADC analog watchdog group channel */
  307. void adc_watchdog_group_channel_enable(uint32_t adc_periph, uint8_t adc_channel_group);
  308. /* disable ADC analog watchdog */
  309. void adc_watchdog_disable(uint32_t adc_periph);
  310. /* configure ADC analog watchdog threshold */
  311. void adc_watchdog_threshold_config(uint32_t adc_periph , uint16_t low_threshold , uint16_t high_threshold);
  312. /* configure ADC oversample mode */
  313. void adc_oversample_mode_config(uint32_t adc_periph , uint8_t mode , uint16_t shift , uint8_t ratio);
  314. /* enable ADC oversample mode */
  315. void adc_oversample_mode_enable(uint32_t adc_periph);
  316. /* disable ADC oversample mode */
  317. void adc_oversample_mode_disable(uint32_t adc_periph);
  318. #endif /* GD32F30X_ADC_H */