main.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. #include "ch.h"
  14. #include "hal.h"
  15. #define DAC_BUFFER_SIZE 360
  16. /*
  17. * DAC test buffer (sine wave).
  18. */
  19. static const dacsample_t dac_buffer[DAC_BUFFER_SIZE] = {
  20. 2047, 2082, 2118, 2154, 2189, 2225, 2260, 2296, 2331, 2367, 2402, 2437,
  21. 2472, 2507, 2542, 2576, 2611, 2645, 2679, 2713, 2747, 2780, 2813, 2846,
  22. 2879, 2912, 2944, 2976, 3008, 3039, 3070, 3101, 3131, 3161, 3191, 3221,
  23. 3250, 3278, 3307, 3335, 3362, 3389, 3416, 3443, 3468, 3494, 3519, 3544,
  24. 3568, 3591, 3615, 3637, 3660, 3681, 3703, 3723, 3744, 3763, 3782, 3801,
  25. 3819, 3837, 3854, 3870, 3886, 3902, 3917, 3931, 3944, 3958, 3970, 3982,
  26. 3993, 4004, 4014, 4024, 4033, 4041, 4049, 4056, 4062, 4068, 4074, 4078,
  27. 4082, 4086, 4089, 4091, 4092, 4093, 4094, 4093, 4092, 4091, 4089, 4086,
  28. 4082, 4078, 4074, 4068, 4062, 4056, 4049, 4041, 4033, 4024, 4014, 4004,
  29. 3993, 3982, 3970, 3958, 3944, 3931, 3917, 3902, 3886, 3870, 3854, 3837,
  30. 3819, 3801, 3782, 3763, 3744, 3723, 3703, 3681, 3660, 3637, 3615, 3591,
  31. 3568, 3544, 3519, 3494, 3468, 3443, 3416, 3389, 3362, 3335, 3307, 3278,
  32. 3250, 3221, 3191, 3161, 3131, 3101, 3070, 3039, 3008, 2976, 2944, 2912,
  33. 2879, 2846, 2813, 2780, 2747, 2713, 2679, 2645, 2611, 2576, 2542, 2507,
  34. 2472, 2437, 2402, 2367, 2331, 2296, 2260, 2225, 2189, 2154, 2118, 2082,
  35. 2047, 2012, 1976, 1940, 1905, 1869, 1834, 1798, 1763, 1727, 1692, 1657,
  36. 1622, 1587, 1552, 1518, 1483, 1449, 1415, 1381, 1347, 1314, 1281, 1248,
  37. 1215, 1182, 1150, 1118, 1086, 1055, 1024, 993, 963, 933, 903, 873,
  38. 844, 816, 787, 759, 732, 705, 678, 651, 626, 600, 575, 550,
  39. 526, 503, 479, 457, 434, 413, 391, 371, 350, 331, 312, 293,
  40. 275, 257, 240, 224, 208, 192, 177, 163, 150, 136, 124, 112,
  41. 101, 90, 80, 70, 61, 53, 45, 38, 32, 26, 20, 16,
  42. 12, 8, 5, 3, 2, 1, 0, 1, 2, 3, 5, 8,
  43. 12, 16, 20, 26, 32, 38, 45, 53, 61, 70, 80, 90,
  44. 101, 112, 124, 136, 150, 163, 177, 192, 208, 224, 240, 257,
  45. 275, 293, 312, 331, 350, 371, 391, 413, 434, 457, 479, 503,
  46. 526, 550, 575, 600, 626, 651, 678, 705, 732, 759, 787, 816,
  47. 844, 873, 903, 933, 963, 993, 1024, 1055, 1086, 1118, 1150, 1182,
  48. 1215, 1248, 1281, 1314, 1347, 1381, 1415, 1449, 1483, 1518, 1552, 1587,
  49. 1622, 1657, 1692, 1727, 1763, 1798, 1834, 1869, 1905, 1940, 1976, 2012
  50. };
  51. /*
  52. * DAC streaming callback.
  53. */
  54. size_t nx = 0, ny = 0, nz = 0;
  55. static void end_cb1(DACDriver *dacp) {
  56. nz++;
  57. if (dacIsBufferComplete(dacp)) {
  58. nx += DAC_BUFFER_SIZE / 2;
  59. }
  60. else {
  61. ny += DAC_BUFFER_SIZE / 2;
  62. }
  63. if ((nz % 1000) == 0) {
  64. palTogglePad(GPIOD, GPIOD_LED3);
  65. }
  66. }
  67. /*
  68. * DAC error callback.
  69. */
  70. static void error_cb1(DACDriver *dacp, dacerror_t err) {
  71. (void)dacp;
  72. (void)err;
  73. chSysHalt("DAC failure");
  74. }
  75. static const DACConfig dac1cfg1 = {
  76. .init = 2047U,
  77. .datamode = DAC_DHRM_12BIT_RIGHT_DUAL,
  78. .cr = 0
  79. };
  80. static const DACConversionGroup dacgrpcfg1 = {
  81. .num_channels = 2U,
  82. .end_cb = end_cb1,
  83. .error_cb = error_cb1,
  84. .trigger = DAC_TRG(0)
  85. };
  86. /*
  87. * GPT2 configuration.
  88. */
  89. static const GPTConfig gpt6cfg1 = {
  90. .frequency = 1000000U,
  91. .callback = NULL,
  92. .cr2 = TIM_CR2_MMS_1, /* MMS = 010 = TRGO on Update Event. */
  93. .dier = 0U
  94. };
  95. /*
  96. * Application entry point.
  97. */
  98. int main(void) {
  99. /*
  100. * System initializations.
  101. * - HAL initialization, this also initializes the configured device drivers
  102. * and performs the board-specific initializations.
  103. * - Kernel initialization, the main() function becomes a thread and the
  104. * RTOS is active.
  105. */
  106. halInit();
  107. chSysInit();
  108. /*
  109. * Starting DAC1 driver, setting up the output pins as analog as suggested
  110. * by the Reference Manual.
  111. */
  112. palSetPadMode(GPIOA, 4, PAL_MODE_INPUT_ANALOG);
  113. palSetPadMode(GPIOA, 5, PAL_MODE_INPUT_ANALOG);
  114. dacStart(&DACD1, &dac1cfg1);
  115. /*
  116. * Starting GPT6 driver, it is used for triggering the DAC.
  117. */
  118. gptStart(&GPTD6, &gpt6cfg1);
  119. /*
  120. * Starting a continuous conversion.
  121. * Note, the buffer size is divided by two because two elements are fetched
  122. * for each transfer.
  123. */
  124. dacStartConversion(&DACD1, &dacgrpcfg1,
  125. (dacsample_t *)dac_buffer, DAC_BUFFER_SIZE / 2U);
  126. gptStartContinuous(&GPTD6, 2U);
  127. /*
  128. * Normal main() thread activity, if the button is pressed then the DAC
  129. * transfer is stopped.
  130. */
  131. while (true) {
  132. if (palReadPad(GPIOA, GPIOA_BUTTON)) {
  133. gptStopTimer(&GPTD6);
  134. dacStopConversion(&DACD1);
  135. }
  136. chThdSleepMilliseconds(500);
  137. }
  138. return 0;
  139. }