timer.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. Copyright 2011 Jun Wako <wakojun@gmail.com>
  3. Copyright 2021 Simon Arlott
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #pragma once
  16. #if __has_include_next("_timer.h")
  17. # include_next "_timer.h" /* Include the platform's _timer.h */
  18. #endif
  19. #include <stdint.h>
  20. #define TIMER_DIFF(a, b, max) ((max == UINT8_MAX) ? ((uint8_t)((a) - (b))) : ((max == UINT16_MAX) ? ((uint16_t)((a) - (b))) : ((max == UINT32_MAX) ? ((uint32_t)((a) - (b))) : ((a) >= (b) ? (a) - (b) : (max) + 1 - (b) + (a)))))
  21. #define TIMER_DIFF_8(a, b) TIMER_DIFF(a, b, UINT8_MAX)
  22. #define TIMER_DIFF_16(a, b) TIMER_DIFF(a, b, UINT16_MAX)
  23. #define TIMER_DIFF_32(a, b) TIMER_DIFF(a, b, UINT32_MAX)
  24. #define TIMER_DIFF_RAW(a, b) TIMER_DIFF_8(a, b)
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. extern volatile uint32_t timer_count;
  29. void timer_init(void);
  30. void timer_clear(void);
  31. void timer_save(void);
  32. void timer_restore(void);
  33. uint16_t timer_read(void);
  34. uint32_t timer_read32(void);
  35. uint16_t timer_elapsed(uint16_t last);
  36. uint32_t timer_elapsed32(uint32_t last);
  37. // Utility functions to check if a future time has expired & autmatically handle time wrapping if checked / reset frequently (half of max value)
  38. #define timer_expired(current, future) ((uint16_t)(current - future) < UINT16_MAX / 2)
  39. #define timer_expired32(current, future) ((uint32_t)(current - future) < UINT32_MAX / 2)
  40. // Use an appropriate timer integer size based on architecture (16-bit will overflow sooner)
  41. #if FAST_TIMER_T_SIZE < 32
  42. # define TIMER_DIFF_FAST(a, b) TIMER_DIFF_16(a, b)
  43. # define timer_expired_fast(current, future) timer_expired(current, future)
  44. typedef uint16_t fast_timer_t;
  45. fast_timer_t inline timer_read_fast(void) {
  46. return timer_read();
  47. }
  48. fast_timer_t inline timer_elapsed_fast(fast_timer_t last) {
  49. return timer_elapsed(last);
  50. }
  51. #else
  52. # define TIMER_DIFF_FAST(a, b) TIMER_DIFF_32(a, b)
  53. # define timer_expired_fast(current, future) timer_expired32(current, future)
  54. typedef uint32_t fast_timer_t;
  55. fast_timer_t inline timer_read_fast(void) {
  56. return timer_read32();
  57. }
  58. fast_timer_t inline timer_elapsed_fast(fast_timer_t last) {
  59. return timer_elapsed32(last);
  60. }
  61. #endif
  62. #ifdef __cplusplus
  63. }
  64. #endif