EE445M RTOS
Taken at the University of Texas Spring 2015
jitter.h
Go to the documentation of this file.
1 /* -*- mode: c; c-basic-offset: 4; -*- */
2 /* Created by Hershal Bhave and Eric Crosson 2015-02-28 */
3 /* Revision history: Look in Git FGT */
4 #ifndef __jitter__
5 #define __jitter__
6 
7 #include <stdint.h>
8 #include <stdbool.h>
9 
14 #define PIDWORK_BUFFER_SIZE 32
15 
16 static volatile uint32_t PIDWORK;
17 static volatile uint32_t HIGHEST_PIDWORK;
18 static volatile uint32_t LOWEST_PIDWORK;
19 static volatile uint32_t PIDWORK_IDX;
20 static volatile uint32_t PIDWORK_BUFFER[PIDWORK_BUFFER_SIZE];
21 
22 void pidwork_increment();
23 void pidwork_record();
24 
25 #endif /* __jitter__ */
26 
27 /* End Doxygen group
28  * @}
29  */
static volatile uint32_t PIDWORK_IDX
Definition: jitter.h:19
void pidwork_increment()
Definition: jitter.c:15
static volatile uint32_t PIDWORK
Definition: jitter.h:16
static volatile uint32_t LOWEST_PIDWORK
Definition: jitter.h:18
static volatile uint32_t PIDWORK_BUFFER[32]
Definition: jitter.h:20
static volatile uint32_t HIGHEST_PIDWORK
Definition: jitter.h:17
void pidwork_record()
Definition: jitter.c:25
#define PIDWORK_BUFFER_SIZE
Definition: jitter.h:14