rjw | 6c1fd8f | 2022-11-30 14:33:01 +0800 | [diff] [blame] | 1 | #ifndef _IMC_LBS_STRUCT_H_ |
| 2 | #define _IMC_LBS_STRUCT_H_ |
| 3 | |
| 4 | #include "kal_general_types.h" |
| 5 | #include "kal_public_defs.h" |
| 6 | |
| 7 | |
| 8 | /****************************************************************************** |
| 9 | * WFC location info |
| 10 | *****************************************************************************/ |
| 11 | #define IMS_MAX_TIME_STAMP_LENGTH 32 |
| 12 | typedef struct |
| 13 | { |
| 14 | kal_int64 lat; //double lat |
| 15 | kal_int64 lng; //double lng |
| 16 | kal_int32 acc; |
| 17 | } lbs_location_struct; |
| 18 | |
| 19 | typedef struct |
| 20 | { |
| 21 | LOCAL_PARA_HDR |
| 22 | kal_bool location_state; |
| 23 | } imc_lbs_pos_ntf_struct; |
| 24 | /** |
| 25 | * Description |
| 26 | * - recivied AGPS location info by LBS |
| 27 | * |
| 28 | * Direction |
| 29 | * - LBS -> IMC |
| 30 | */ |
| 31 | typedef struct |
| 32 | { |
| 33 | LOCAL_PARA_HDR |
| 34 | lbs_location_struct loc_info; |
| 35 | } imc_lbs_pos_ind_struct; |
| 36 | |
| 37 | #endif /* _IMC_LBS_STRUCT_H_ */ |