-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAsciiLib.h
37 lines (29 loc) · 1.28 KB
/
AsciiLib.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
/********************************************************************************************************
**
** Steve Tchuinte: this is a somewhat cleaned up version of the original;
**
**--------------File Info-------------------------------------------------------------------------------
** File name: AsciiLib.h
** Descriptions: None
**
**------------------------------------------------------------------------------------------------------
** Created by: AVRman
** Created date: 2010-11-2
** Version: 1.0
** Descriptions: The original version
**
**------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Descriptions:
********************************************************************************************************/
#ifndef __AsciiLib_H
#define __AsciiLib_H
/* Includes ------------------------------------------------------------------*/
#include <string.h>
/* Private define ------------------------------------------------------------*/
#define ASCII_8X16_System
/* Private function prototypes -----------------------------------------------*/
void GetASCIICode(unsigned char* pBuffer,unsigned char ASCII);
#endif