timer.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. //*****************************************************************************
  2. //
  3. // timer.h - Prototypes for the timer module
  4. //
  5. // Copyright (c) 2005-2009 Luminary Micro, Inc. All rights reserved.
  6. // Software License Agreement
  7. //
  8. // Luminary Micro, Inc. (LMI) is supplying this software for use solely and
  9. // exclusively on LMI's microcontroller products.
  10. //
  11. // The software is owned by LMI and/or its suppliers, and is protected under
  12. // applicable copyright laws. All rights are reserved. You may not combine
  13. // this software with "viral" open-source software in order to form a larger
  14. // program. Any use in violation of the foregoing restrictions may subject
  15. // the user to criminal sanctions under applicable laws, as well as to civil
  16. // liability for the breach of the terms and conditions of this license.
  17. //
  18. // THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
  19. // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
  20. // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
  21. // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
  22. // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
  23. //
  24. // This is part of revision 4694 of the Stellaris Peripheral Driver Library.
  25. //
  26. //*****************************************************************************
  27. #ifndef __TIMER_H__
  28. #define __TIMER_H__
  29. //*****************************************************************************
  30. //
  31. // If building with a C++ compiler, make all of the definitions in this header
  32. // have a C binding.
  33. //
  34. //*****************************************************************************
  35. #ifdef __cplusplus
  36. extern "C"
  37. {
  38. #endif
  39. //*****************************************************************************
  40. //
  41. // Values that can be passed to TimerConfigure as the ulConfig parameter.
  42. //
  43. //*****************************************************************************
  44. #define TIMER_CFG_32_BIT_OS 0x00000001 // 32-bit one-shot timer
  45. #define TIMER_CFG_32_BIT_PER 0x00000002 // 32-bit periodic timer
  46. #define TIMER_CFG_32_RTC 0x01000000 // 32-bit RTC timer
  47. #define TIMER_CFG_16_BIT_PAIR 0x04000000 // Two 16-bit timers
  48. #define TIMER_CFG_A_ONE_SHOT 0x00000001 // Timer A one-shot timer
  49. #define TIMER_CFG_A_PERIODIC 0x00000002 // Timer A periodic timer
  50. #define TIMER_CFG_A_CAP_COUNT 0x00000003 // Timer A event counter
  51. #define TIMER_CFG_A_CAP_TIME 0x00000007 // Timer A event timer
  52. #define TIMER_CFG_A_PWM 0x0000000A // Timer A PWM output
  53. #define TIMER_CFG_B_ONE_SHOT 0x00000100 // Timer B one-shot timer
  54. #define TIMER_CFG_B_PERIODIC 0x00000200 // Timer B periodic timer
  55. #define TIMER_CFG_B_CAP_COUNT 0x00000300 // Timer B event counter
  56. #define TIMER_CFG_B_CAP_TIME 0x00000700 // Timer B event timer
  57. #define TIMER_CFG_B_PWM 0x00000A00 // Timer B PWM output
  58. //*****************************************************************************
  59. //
  60. // Values that can be passed to TimerIntEnable, TimerIntDisable, and
  61. // TimerIntClear as the ulIntFlags parameter, and returned from TimerIntStatus.
  62. //
  63. //*****************************************************************************
  64. #define TIMER_CAPB_EVENT 0x00000400 // CaptureB event interrupt
  65. #define TIMER_CAPB_MATCH 0x00000200 // CaptureB match interrupt
  66. #define TIMER_TIMB_TIMEOUT 0x00000100 // TimerB time out interrupt
  67. #define TIMER_RTC_MATCH 0x00000008 // RTC interrupt mask
  68. #define TIMER_CAPA_EVENT 0x00000004 // CaptureA event interrupt
  69. #define TIMER_CAPA_MATCH 0x00000002 // CaptureA match interrupt
  70. #define TIMER_TIMA_TIMEOUT 0x00000001 // TimerA time out interrupt
  71. //*****************************************************************************
  72. //
  73. // Values that can be passed to TimerControlEvent as the ulEvent parameter.
  74. //
  75. //*****************************************************************************
  76. #define TIMER_EVENT_POS_EDGE 0x00000000 // Count positive edges
  77. #define TIMER_EVENT_NEG_EDGE 0x00000404 // Count negative edges
  78. #define TIMER_EVENT_BOTH_EDGES 0x00000C0C // Count both edges
  79. //*****************************************************************************
  80. //
  81. // Values that can be passed to most of the timer APIs as the ulTimer
  82. // parameter.
  83. //
  84. //*****************************************************************************
  85. #define TIMER_A 0x000000ff // Timer A
  86. #define TIMER_B 0x0000ff00 // Timer B
  87. #define TIMER_BOTH 0x0000ffff // Timer Both
  88. //*****************************************************************************
  89. //
  90. // Prototypes for the APIs.
  91. //
  92. //*****************************************************************************
  93. extern void TimerEnable(unsigned long ulBase, unsigned long ulTimer);
  94. extern void TimerDisable(unsigned long ulBase, unsigned long ulTimer);
  95. extern void TimerConfigure(unsigned long ulBase, unsigned long ulConfig);
  96. extern void TimerControlLevel(unsigned long ulBase, unsigned long ulTimer,
  97. tBoolean bInvert);
  98. extern void TimerControlTrigger(unsigned long ulBase, unsigned long ulTimer,
  99. tBoolean bEnable);
  100. extern void TimerControlEvent(unsigned long ulBase, unsigned long ulTimer,
  101. unsigned long ulEvent);
  102. extern void TimerControlStall(unsigned long ulBase, unsigned long ulTimer,
  103. tBoolean bStall);
  104. extern void TimerRTCEnable(unsigned long ulBase);
  105. extern void TimerRTCDisable(unsigned long ulBase);
  106. extern void TimerPrescaleSet(unsigned long ulBase, unsigned long ulTimer,
  107. unsigned long ulValue);
  108. extern unsigned long TimerPrescaleGet(unsigned long ulBase,
  109. unsigned long ulTimer);
  110. extern void TimerLoadSet(unsigned long ulBase, unsigned long ulTimer,
  111. unsigned long ulValue);
  112. extern unsigned long TimerLoadGet(unsigned long ulBase, unsigned long ulTimer);
  113. extern unsigned long TimerValueGet(unsigned long ulBase,
  114. unsigned long ulTimer);
  115. extern void TimerMatchSet(unsigned long ulBase, unsigned long ulTimer,
  116. unsigned long ulValue);
  117. extern unsigned long TimerMatchGet(unsigned long ulBase,
  118. unsigned long ulTimer);
  119. extern void TimerIntRegister(unsigned long ulBase, unsigned long ulTimer,
  120. void (*pfnHandler)(void));
  121. extern void TimerIntUnregister(unsigned long ulBase, unsigned long ulTimer);
  122. extern void TimerIntEnable(unsigned long ulBase, unsigned long ulIntFlags);
  123. extern void TimerIntDisable(unsigned long ulBase, unsigned long ulIntFlags);
  124. extern unsigned long TimerIntStatus(unsigned long ulBase, tBoolean bMasked);
  125. extern void TimerIntClear(unsigned long ulBase, unsigned long ulIntFlags);
  126. //*****************************************************************************
  127. //
  128. // TimerQuiesce() has been deprecated. SysCtlPeripheralReset() should be used
  129. // instead to return the timer to its reset state.
  130. //
  131. //*****************************************************************************
  132. #ifndef DEPRECATED
  133. extern void TimerQuiesce(unsigned long ulBase);
  134. #endif
  135. //*****************************************************************************
  136. //
  137. // Mark the end of the C bindings section for C++ compilers.
  138. //
  139. //*****************************************************************************
  140. #ifdef __cplusplus
  141. }
  142. #endif
  143. #endif // __TIMER_H__