-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmu.h
30 lines (22 loc) · 1007 Bytes
/
cmu.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
/**
* @file cmu.h
* @date 1/30/20
* @brief This modules defines the cmu_open function
*/
#ifndef SRC_HEADER_FILES_CMU_H
#define SRC_HEADER_FILES_CMU_H
//***********************************************************************************
// Include files
//***********************************************************************************
#include "em_cmu.h"
//***********************************************************************************
// defined files
//***********************************************************************************
//***********************************************************************************
// global variables
//***********************************************************************************
//***********************************************************************************
// function prototypes
//***********************************************************************************
void cmu_open(void);
#endif