You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

150 lines
3.3KB

  1. #include "imxrt.h"
  2. #include "core_pins.h"
  3. #include "debug/printf.h"
  4. static uint8_t calibrating;
  5. static uint8_t analog_config_bits = 10;
  6. static uint8_t analog_num_average = 4;
  7. const uint8_t pin_to_channel[] = { // pg 482
  8. 7, // 0/A0 AD_B1_02
  9. 8, // 1/A1 AD_B1_03
  10. 12, // 2/A2 AD_B1_07
  11. 11, // 3/A3 AD_B1_06
  12. 6, // 4/A4 AD_B1_01
  13. 5, // 5/A5 AD_B1_00
  14. 15, // 6/A6 AD_B1_10
  15. 0, // 7/A7 AD_B1_11
  16. 13, // 8/A8 AD_B1_08
  17. 14, // 9/A9 AD_B1_09
  18. 128, // 10
  19. 128, // 11
  20. 128, // 12
  21. 128, // 13
  22. 7, // 14/A0 AD_B1_02
  23. 8, // 15/A1 AD_B1_03
  24. 12, // 16/A2 AD_B1_07
  25. 11, // 17/A3 AD_B1_06
  26. 6, // 18/A4 AD_B1_01
  27. 5, // 19/A5 AD_B1_00
  28. 15, // 20/A6 AD_B1_10
  29. 0, // 21/A7 AD_B1_11
  30. 13, // 22/A8 AD_B1_08
  31. 14, // 23/A9 AD_B1_09
  32. 1, // 24/A10 AD_B0_12
  33. 2 // 25/A11 AD_B0_13
  34. // 26/A12 AD_B1_14 - only on ADC2
  35. // 27/A13 AD_B1_15 - only on ADC2
  36. };
  37. static void wait_for_cal(void)
  38. {
  39. printf("wait_for_cal\n");
  40. while (ADC1_GC & ADC_GC_CAL) ;
  41. // TODO: check CALF, but what do to about CAL failure?
  42. calibrating = 0;
  43. printf("cal complete\n");
  44. }
  45. int analogRead(uint8_t pin)
  46. {
  47. if (pin > sizeof(pin_to_channel)) return 0;
  48. if (calibrating) wait_for_cal();
  49. uint8_t ch = pin_to_channel[pin];
  50. if (ch > 15) return 0;
  51. ADC1_HC0 = ch;
  52. while (!(ADC1_HS & ADC_HS_COCO0)) ; // wait
  53. return ADC1_R0;
  54. }
  55. void analogReference(uint8_t type)
  56. {
  57. }
  58. void analogReadRes(unsigned int bits)
  59. {
  60. }
  61. void analogReadAveraging(unsigned int num)
  62. {
  63. uint32_t tmp32, mode, avg=0;
  64. //disable averaging
  65. tmp32 = ADC1_GC;
  66. ADC1_GC &= ~0x20;
  67. mode = ADC1_CFG & ~0xC000;
  68. if (num >= 32) {
  69. mode |= ADC_CFG_AVGS(3);
  70. //Serial.println(ADC_CFG_AVGS(3), BIN);
  71. } else if (num >= 16) {
  72. mode |= ADC_CFG_AVGS(2);
  73. } else if (num >= 8) {
  74. mode |= ADC_CFG_AVGS(1);
  75. } else {
  76. mode |= ADC_CFG_AVGS(0);
  77. }
  78. ADC1_CFG = mode;
  79. //enable averaging
  80. ADC1_GC = tmp32;
  81. }
  82. #define MAX_ADC_CLOCK 20000000
  83. void analog_init(void)
  84. {
  85. uint32_t mode, avg=0;
  86. printf("analogInit\n");
  87. CCM_CCGR1 |= CCM_CCGR1_ADC1(CCM_CCGR_ON);
  88. if (analog_config_bits == 8) {
  89. // 8 bit conversion (17 clocks) plus 8 clocks for input settling
  90. mode = ADC_CFG_MODE(0) | ADC_CFG_ADSTS(3);
  91. } else if (analog_config_bits == 10) {
  92. // 10 bit conversion (17 clocks) plus 20 clocks for input settling
  93. mode = ADC_CFG_MODE(1) | ADC_CFG_ADSTS(2) | ADC_CFG_ADLSMP;
  94. } else {
  95. // 12 bit conversion (25 clocks) plus 24 clocks for input settling
  96. mode = ADC_CFG_MODE(2) | ADC_CFG_ADSTS(3) | ADC_CFG_ADLSMP;
  97. }
  98. if (analog_num_average >= 4) {
  99. if (analog_num_average >= 32) {
  100. mode |= ADC_CFG_AVGS(3);
  101. } else if (analog_num_average >= 16) {
  102. mode |= ADC_CFG_AVGS(2);
  103. } else if (analog_num_average >= 8) {
  104. mode |= ADC_CFG_AVGS(1);
  105. }
  106. avg = ADC_GC_AVGE;
  107. }
  108. #if 1
  109. mode |= ADC_CFG_ADIV(1) | ADC_CFG_ADICLK(3); // async clock
  110. #else
  111. uint32_t clock = F_BUS;
  112. if (clock > MAX_ADC_CLOCK*8) {
  113. mode |= ADC_CFG_ADIV(3) | ADC_CFG_ADICLK(1); // use IPG/16
  114. } else if (clock > MAX_ADC_CLOCK*4) {
  115. mode |= ADC_CFG_ADIV(2) | ADC_CFG_ADICLK(1); // use IPG/8
  116. } else if (clock > MAX_ADC_CLOCK*2) {
  117. mode |= ADC_CFG_ADIV(1) | ADC_CFG_ADICLK(1); // use IPG/4
  118. } else if (clock > MAX_ADC_CLOCK) {
  119. mode |= ADC_CFG_ADIV(0) | ADC_CFG_ADICLK(1); // use IPG/2
  120. } else {
  121. mode |= ADC_CFG_ADIV(0) | ADC_CFG_ADICLK(0); // use IPG
  122. }
  123. #endif
  124. ADC1_CFG = mode | ADC_HC_AIEN | ADC_CFG_ADHSC;
  125. ADC1_GC = avg | ADC_GC_CAL; // begin cal
  126. calibrating = 1;
  127. }