-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.h
60 lines (40 loc) · 2.03 KB
/
util.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/************************************************************************/
/* */
/* util.c -- Common Utility Procedures for the PIC32MX */
/* */
/************************************************************************/
/* Author: Michael T. Alexander */
/* Copyright 2009, Digilent Inc. */
/************************************************************************/
/* Module Description: */
/* */
/* This header contains declarations for common utility functions. */
/* */
/************************************************************************/
/* Revision History: */
/* */
/* 04/28/2009 (MichaelA): created */
/* */
/************************************************************************/
#if !defined(_UTIL_INC)
#define _UTIL_INC
#include "stdtypes.h"
/* ------------------------------------------------------------ */
/* Macro Declarations */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* General Type Declarations */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* Object Class Declarations */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* Variable Declarations */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* Procedure Declarations */
/* ------------------------------------------------------------ */
void DelayMs( WORD tmsDelay );
void DelayUs( WORD tusDelay );
/* ------------------------------------------------------------ */
#endif