From 9f95ff5b6ba01db09552b84a0ab79607060a2666 Mon Sep 17 00:00:00 2001 From: Ali Labbene Date: Wed, 11 Dec 2019 08:59:21 +0100 Subject: Official ARM version: v5.4.0 Add CMSIS V5.4.0, please refer to index.html available under \docs folder. Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure used in existing projects, and thus avoid projects mass update Note: the following components have been removed from ARM original delivery (as not used in ST packages) - CMSIS_EW2018.pdf - .gitattributes - .gitignore - \Device - \CMSIS - \CoreValidation - \DAP - \Documentation - \DoxyGen - \Driver - \Pack - \RTOS\CMSIS_RTOS_Tutorial.pdf - \RTOS\RTX - \RTOS\Template - \RTOS2\RTX - \Utilities - All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2 Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3 --- docs/Core_A/html/group__PTM__timer__functions.html | 296 +++++++++++++++++++++ 1 file changed, 296 insertions(+) create mode 100644 docs/Core_A/html/group__PTM__timer__functions.html (limited to 'docs/Core_A/html/group__PTM__timer__functions.html') diff --git a/docs/Core_A/html/group__PTM__timer__functions.html b/docs/Core_A/html/group__PTM__timer__functions.html new file mode 100644 index 0000000..23051df --- /dev/null +++ b/docs/Core_A/html/group__PTM__timer__functions.html @@ -0,0 +1,296 @@ + + + + + +Private Timer Functions +CMSIS-Core (Cortex-A): Private Timer Functions + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-Core (Cortex-A) +  Version 1.1.2 +
+
CMSIS-Core support for Cortex-A processor-based devices
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
Private Timer Functions
+
+
+ +

Private Timer Functions controls private timer registers present on Cortex-A5 and A9 class devices.
+References: Cortex-A5 MPCore Technical Reference Manual, Cortex-A9 MPCore Technical Reference Manual. +More...

+ + + + + +

+Data Structures

struct  Timer_Type
 Structure type to access the Private Timer. More...
 
+ + + + +

+Macros

#define PTIM   ((Timer_Type *) TIMER_BASE )
 Timer register struct. More...
 
+ + + + + + + + + + + + + + + + + +

+Functions

__STATIC_INLINE void PTIM_SetLoadValue (uint32_t value)
 Set the load value to timers LOAD register. More...
 
__STATIC_INLINE uint32_t PTIM_GetLoadValue (void)
 Get the load value from timers LOAD register. More...
 
__STATIC_INLINE uint32_t PTIM_GetCurrentValue (void)
 Get current counter value from timers COUNTER register. More...
 
__STATIC_INLINE void PTIM_SetControl (uint32_t value)
 Configure the timer using its CONTROL register. More...
 
__STATIC_INLINE uint32_t PTIM_GetControl (void)
 
__STATIC_INLINE void PTIM_ClearEventFlag (void)
 
+

Description

+

Macro Definition Documentation

+ +
+
+ + + + +
#define PTIM   ((Timer_Type *) TIMER_BASE )
+
+ +
+
+

Function Documentation

+ +
+
+ + + + + + + + +
__STATIC_INLINE void PTIM_ClearEventFlag (void )
+
+

ref Timer_Type::CONTROL Clears the event flag in timers ISR register.

+ +
+
+ +
+
+ + + + + + + + +
__STATIC_INLINE uint32_t PTIM_GetControl (void )
+
+

ref Timer_Type::CONTROL Get the current timer configuration from its CONTROL register.

+
Returns
Timer_Type::CONTROL
+ +
+
+ +
+
+ + + + + + + + +
__STATIC_INLINE uint32_t PTIM_GetCurrentValue (void )
+
+
Returns
Timer_Type::COUNTER
+ +
+
+ +
+
+ + + + + + + + +
__STATIC_INLINE uint32_t PTIM_GetLoadValue (void )
+
+
Returns
Timer_Type::LOAD
+ +
+
+ +
+
+ + + + + + + + +
__STATIC_INLINE void PTIM_SetControl (uint32_t value)
+
+
Parameters
+ + +
[in]valueThe new configuration value to be set.
+
+
+ +
+
+ +
+
+ + + + + + + + +
__STATIC_INLINE void PTIM_SetLoadValue (uint32_t value)
+
+
Parameters
+ + +
[in]valueThe load value to be set.
+
+
+ +
+
+
+
+ + + + -- cgit