-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPulseCounterMgr.h
34 lines (26 loc) · 1.27 KB
/
PulseCounterMgr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* --------------------------------- Notes --------------------------------- */
/* --------------------------------- Module -------------------------------- */
#ifndef __PULSECOUNTERMGR_H__
#define __PULSECOUNTERMGR_H__
/* ----------------------------- Include files ----------------------------- */
#include "rkhsma.h"
/* ---------------------- External C language linkage ---------------------- */
#ifdef __cplusplus
extern "C" {
#endif
/* --------------------------------- Macros -------------------------------- */
/* -------------------------------- Constants ------------------------------ */
#define NUM_PULSE_COUNTERS 4
/* ........................ Declares active object ......................... */
RKH_SMA_DCLR(pulseCounterMgr);
/* ------------------------------- Data types ------------------------------ */
/* -------------------------- External variables --------------------------- */
/* -------------------------- Function prototypes -------------------------- */
void PulseCounterMgr_ctor(void);
/* -------------------- External C language linkage end -------------------- */
#ifdef __cplusplus
}
#endif
/* ------------------------------ Module end ------------------------------- */
#endif
/* ------------------------------ End of file ------------------------------ */