-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteleop.h
executable file
·42 lines (38 loc) · 1.17 KB
/
teleop.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
/*******************************************************************************
*
* TITLE: teleop.h
*
* VERSION: 0.1 (Beta)
*
* DATE: 31-Dec-2007
*
* AUTHOR: R. Kevin Watson
*
* COMMENTS: This file best viewed with tabs set to four.
*
* You are free to use this source code for any non-commercial
* use. Please do not make copies of this source code, modified
* or un-modified, publicly available on the internet or elsewhere
* without permission. Thanks.
*
* Copyright ©2007-2008 R. Kevin Watson. All rights are reserved.
*
********************************************************************************
*
* Change log:
*
* DATE REV DESCRIPTION
* ----------- --- ----------------------------------------------------------
* 31-Dec-2007 0.1 RKW Original
*
*******************************************************************************/
#ifndef _teleop_h
#define _teleop_h
#define HIBYTE(value) ((unsigned char)(((unsigned int)(value)>>8)&0xFF))
#define LOBYTE(value) ((unsigned char)(value))
// function prototypes
void Teleop_Init(void);
void Teleop(void);
void Teleop_Spin(void);
#endif