
fix Security breach found by Tencent Blade Team please refer to security advisory - CVE-2020-11068
69 lines
1.5 KiB
C
69 lines
1.5 KiB
C
/*!
|
|
* \file pam7q.h
|
|
*
|
|
* \brief PAM7Q GPS receiver driver implementation
|
|
*
|
|
* \copyright Revised BSD License, see section \ref LICENSE.
|
|
*
|
|
* \code
|
|
* ______ _
|
|
* / _____) _ | |
|
|
* ( (____ _____ ____ _| |_ _____ ____| |__
|
|
* \____ \| ___ | (_ _) ___ |/ ___) _ \
|
|
* _____) ) ____| | | || |_| ____( (___| | | |
|
|
* (______/|_____)_|_|_| \__)_____)\____)_| |_|
|
|
* (C)2013-2017 Semtech
|
|
*
|
|
* \endcode
|
|
*
|
|
* \author Miguel Luis ( Semtech )
|
|
*
|
|
* \author Gregory Cristian ( Semtech )
|
|
*/
|
|
#ifndef __PAM7Q_H__
|
|
#define __PAM7Q_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
void PAM7QInit( void );
|
|
|
|
uint8_t PAM7QGetDeviceAddr( void );
|
|
|
|
void PAM7QSetDeviceAddr( uint8_t addr );
|
|
|
|
bool PAM7QGetGpsData( uint8_t *nmeaString, uint8_t *nmeaStringSize, uint16_t nmeaMaxStringSize );
|
|
|
|
uint8_t PAM7QWrite( uint8_t addr, uint8_t data );
|
|
|
|
uint8_t PAM7QWriteBuffer( uint8_t addr, uint8_t *data, uint8_t size );
|
|
|
|
uint8_t PAM7QRead( uint8_t addr, uint8_t *data );
|
|
|
|
uint8_t PAM7QReadBuffer( uint8_t addr, uint8_t *data, uint8_t size );
|
|
|
|
void GpsMcuOnPpsSignal( void );
|
|
|
|
/*
|
|
* MPL3115A2 I2C address
|
|
*/
|
|
#define PAM7Q_I2C_ADDRESS 0x42
|
|
|
|
#define MESSAGE_SIZE_1 0xFD
|
|
#define MESSAGE_SIZE_2 0xFE
|
|
|
|
#define PAYLOAD 0xFF
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __PAM7Q_H__
|
|
|