You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/****************************************************************************
** File name : HTConst.h
** Description : define const
** Create date : 2018.09.01
** Auther by : Liuyx
** Version info : V1.0.01
** Copyright (C) 2002-2018 xi'an huatek, Inc Co., Ltd
** Update record:
** DATE AUTHER DESC
** -------------------------------------------------------------------------
** 2018.09.01 Liuyx first build
****************************************************************************/
# ifndef __HT_CONST_H
# define __HT_CONST_H
// ASCI× Ö·ûÊý× Ö¶¨Òå
# define KEY0 '0'
# define KEY1 '1'
# define KEY2 '2'
# define KEY3 '3'
# define KEY4 '4'
# define KEY5 '5'
# define KEY6 '6'
# define KEY7 '7'
# define KEY8 '8'
# define KEY9 '9'
// Êý×Ö¶¨Òå
# define KEY_0 0x00
# define KEY_1 0x01
# define KEY_2 0x02
# define KEY_3 0x03
# define KEY_4 0x04
# define KEY_9 0x09
# ifndef MAX_PATH
# define MAX_PATH 260
# endif
// use buffer size define
# define DEF_BUFFER_32 32
# define DEF_BUFFER_64 64
# define DEF_BUFFER_128 128
# define DEF_BUFFER_256 256
# define DEF_BUFFER_1K 1024
# define DEF_BUFFER_2K 2048
# define DEF_BUFFER_4K 4096
# define DEF_BUFFER_8K 8192
# define DEF_BUFFER_512K 1024*512
# define MAX_SLEEP_EMPTY 5 // ms
# endif // end __HT_CONST_H