/*** * @Author: chenjie * @Date: 2022-06-06 * @LastEditTime: 2022-10-27 * @LastEditors: chenjie * @Description: * @FilePath: \S32K146_4G\code\app\AppTaskGps.h * @Copyright (c) 2022 by chenjie, All Rights Reserved. */ #ifndef APPTASKGPS_H_ #define APPTASKGPS_H_ #include "hal_adapter.h" #include "AppGlobalVar.h" #include "AppFuncLib.h" void GpsTask(void *pvParameters); typedef struct _GPSInfo { uint8 locateMark; uint8 satelliteNum; uint8 direction[2]; uint8 speed[2]; uint8 altitude[2]; uint8 latitude[4]; uint8 longitude[4]; uint8 AccMileage[4]; } GPSInfo; #endif /* APPTASKGPS_H_ */