b.liu | e0ab244 | 2024-02-06 18:53:28 +0800 | [diff] [blame] | 1 | /* |
2 | * cust_info.h | ||||
3 | * | ||||
4 | * Cust partition information header. | ||||
5 | * | ||||
6 | * Author : lb | ||||
7 | * Date : 2024/2/6 15:15:19 | ||||
8 | */ | ||||
9 | #ifndef _CUST_INFO_H | ||||
10 | #define _CUST_INFO_H | ||||
11 | |||||
12 | #define CUST_INFO_HEADER 0x464F5441 | ||||
13 | |||||
14 | typedef struct { | ||||
15 | unsigned int header; | ||||
16 | unsigned int band_type; // 1 CN ; 2 : EU | ||||
17 | } mbtk_cust_info_t ; | ||||
18 | |||||
19 | |||||
20 | #endif /* _CUST_INFO_H */ |