forked from hezfproject/TofCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.h
41 lines (35 loc) · 1.21 KB
/
version.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
#ifndef VERSION_H
#define VERSION_H
#define VERSION "MSSS5.0-1704_Release"
#define RELEASE "2019.2.19"
/******************************************************/
//default : old_lcd parameter
//#define NEW_LCD_20120104
//#define NEW_LCD_20120907
#define NEW_LCD_20121220
/******************************************************/
#if defined NEW_LCD_20120104
//NEW LCD
#define LCD_PARAMETER1 0xff
#define LCD_PARAMETER2 0xdc
#elif defined NEW_LCD_20120907
#define LCD_PARAMETER1 0xfb
#define LCD_PARAMETER2 0xe4
#elif defined NEW_LCD_20121220
#define LCD_PARAMETER1 0xf0
#define LCD_PARAMETER2 0x6f
#else
//OLD LCD
#define LCD_PARAMETER1 0xf2
#define LCD_PARAMETER2 0xfc
#endif
/* 2.0 OAD version */
#define OAD_CARD_VERSION (0x0FA0) // B means 2011, 8 means Aug, 5 means version 5 of 2011.08
#define OAD_LOCATOR_VERSION (0x0E61)
#define OAD_LOC_STATION_VERSION (0x0E61)
#define OAD_RSSI_STATION_VERSION (0x0E61)
#define OAD_CHECKIN_STATION_VERSION (0x0E61)
#define OAD_COM_STATION_VERSION (0x0E61)
/* UWB card OAD version*/
#define OAD_UWB_CARD_VERSION (0x11AA) //11 means 2017,A means Oct, 1 means version 1 of 2017.10
#endif