Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

8 лет назад
8 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2016 PJRC.COM, LLC.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * 1. The above copyright notice and this permission notice shall be
  14. * included in all copies or substantial portions of the Software.
  15. *
  16. * 2. If the Software is incorporated into a build system that allows
  17. * selection among a list of target devices, then similar target
  18. * devices manufactured by PJRC.COM must be included in the list of
  19. * target devices and selectable in the same manner.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  25. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  26. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  28. * SOFTWARE.
  29. */
  30. #ifndef __INTERVALTIMER_H__
  31. #define __INTERVALTIMER_H__
  32. #include "kinetis.h"
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. class IntervalTimer {
  37. private:
  38. static const uint32_t MAX_PERIOD = UINT32_MAX / (F_BUS / 1000000.0);
  39. public:
  40. IntervalTimer() {
  41. channel = NULL;
  42. nvic_priority = 128;
  43. }
  44. ~IntervalTimer() {
  45. end();
  46. }
  47. bool begin(void (*funct)(), unsigned int microseconds) {
  48. if (microseconds == 0 || microseconds > MAX_PERIOD) return false;
  49. uint32_t cycles = (F_BUS / 1000000) * microseconds - 1;
  50. if (cycles < 36) return false;
  51. return beginCycles(funct, cycles);
  52. }
  53. bool begin(void (*funct)(), int microseconds) {
  54. if (microseconds < 0) return false;
  55. return begin(funct, (unsigned int)microseconds);
  56. }
  57. bool begin(void (*funct)(), unsigned long microseconds) {
  58. return begin(funct, (unsigned int)microseconds);
  59. }
  60. bool begin(void (*funct)(), long microseconds) {
  61. return begin(funct, (int)microseconds);
  62. }
  63. bool begin(void (*funct)(), float microseconds) {
  64. if (microseconds <= 0 || microseconds > MAX_PERIOD) return false;
  65. uint32_t cycles = (float)(F_BUS / 1000000) * microseconds - 0.5;
  66. if (cycles < 36) return false;
  67. return beginCycles(funct, cycles);
  68. }
  69. bool begin(void (*funct)(), double microseconds) {
  70. return begin(funct, (float)microseconds);
  71. }
  72. void end();
  73. void priority(uint8_t n) {
  74. nvic_priority = n;
  75. #if defined(KINETISK)
  76. if (channel) {
  77. int index = channel - KINETISK_PIT_CHANNELS;
  78. NVIC_SET_PRIORITY(IRQ_PIT_CH0 + index, nvic_priority);
  79. }
  80. #elif defined(KINETISL)
  81. if (channel) {
  82. int index = channel - KINETISK_PIT_CHANNELS;
  83. nvic_priorites[index] = nvic_priority;
  84. if (nvic_priorites[0] <= nvic_priorites[1]) {
  85. NVIC_SET_PRIORITY(IRQ_PIT, nvic_priorites[0]);
  86. } else {
  87. NVIC_SET_PRIORITY(IRQ_PIT, nvic_priorites[1]);
  88. }
  89. }
  90. #endif
  91. }
  92. operator IRQ_NUMBER_t() {
  93. if (channel) {
  94. #if defined(KINETISK)
  95. int index = channel - KINETISK_PIT_CHANNELS;
  96. return (IRQ_NUMBER_t)(IRQ_PIT_CH0 + index);
  97. #elif defined(KINETISL)
  98. return IRQ_PIT;
  99. #endif
  100. }
  101. return (IRQ_NUMBER_t)NVIC_NUM_INTERRUPTS;
  102. }
  103. private:
  104. KINETISK_PIT_CHANNEL_t *channel;
  105. uint8_t nvic_priority;
  106. #if defined(KINETISL)
  107. static uint8_t nvic_priorites[2];
  108. #endif
  109. bool beginCycles(void (*funct)(), uint32_t cycles);
  110. };
  111. #ifdef __cplusplus
  112. }
  113. #endif
  114. #endif