gps5 2.0.0.0
|
API for configuring and manipulating GPS 5 Click driver. More...
Topics | |
GPS 5 Device Settings | |
Settings for registers of GPS 5 Click driver. | |
GPS 5 MikroBUS Map | |
MikroBUS pin mapping of GPS 5 Click driver. | |
Functions | |
void | gps5_cfg_setup (gps5_cfg_t *cfg) |
GPS 5 configuration object setup function. | |
err_t | gps5_init (gps5_t *ctx, gps5_cfg_t *cfg) |
GPS 5 initialization function. | |
err_t | gps5_generic_write (gps5_t *ctx, char *data_buf, uint16_t len) |
GPS 5 data writing function. | |
err_t | gps5_generic_read (gps5_t *ctx, char *data_buf, uint16_t max_len) |
GPS 5 data reading function. | |
void | gps5_set_rst_pin (gps5_t *ctx, uint8_t state) |
GPS 5 set RST pin function. | |
void | gps5_set_stb_pin (gps5_t *ctx, uint8_t state) |
GPS 5 set STB pin function. | |
void | gps5_set_en_pin (gps5_t *ctx, uint8_t state) |
GPS 5 set EN pin function. | |
err_t | gps5_parse_gngga (char *rsp_buf, uint8_t gngga_element, char *element_data) |
GPS 5 parse GNGGA function. | |
API for configuring and manipulating GPS 5 Click driver.
Any initialization code needed for MCU to function properly. Do not remove this line or clock might not be set correctly.
void gps5_cfg_setup | ( | gps5_cfg_t * | cfg | ) |
GPS 5 configuration object setup function.
This function initializes click configuration structure to initial values.
[out] | cfg | : Click configuration structure. See gps5_cfg_t object definition for detailed explanation. |
err_t gps5_generic_read | ( | gps5_t * | ctx, |
char * | data_buf, | ||
uint16_t | max_len ) |
GPS 5 data reading function.
This function reads a desired number of data bytes by using UART serial interface.
[in] | ctx | : Click context object. See gps5_t object definition for detailed explanation. |
[out] | data_buf | : Output read data. |
[in] | max_len | : Number of bytes to be read. |
>0
- Number of data bytes read, <=0
- Error/Empty Ring buffer. See #err_t definition for detailed explanation. err_t gps5_generic_write | ( | gps5_t * | ctx, |
char * | data_buf, | ||
uint16_t | len ) |
GPS 5 data writing function.
This function writes a desired number of data bytes by using UART serial interface.
[in] | ctx | : Click context object. See gps5_t object definition for detailed explanation. |
[in] | data_buf | : Data buffer for sending. |
[in] | len | : Number of bytes for sending. |
>=0
- Success, <0
- Error. See #err_t definition for detailed explanation. err_t gps5_init | ( | gps5_t * | ctx, |
gps5_cfg_t * | cfg ) |
GPS 5 initialization function.
This function initializes all necessary pins and peripherals used for this click board.
[out] | ctx | : Click context object. See gps5_t object definition for detailed explanation. |
[in] | cfg | : Click configuration structure. See gps5_cfg_t object definition for detailed explanation. |
0
- Success, -1
- Error. See #err_t definition for detailed explanation. err_t gps5_parse_gngga | ( | char * | rsp_buf, |
uint8_t | gngga_element, | ||
char * | element_data ) |
GPS 5 parse GNGGA function.
This function parses the GNGGA data from the read response buffer.
[in] | rsp_buf | : Response buffer. |
[in] | gngga_element | : GNGGA element position [1-14]. |
[out] | element_data | : Element data parsed. |
0
- Success, -1
- Error. See #err_t definition for detailed explanation. void gps5_set_en_pin | ( | gps5_t * | ctx, |
uint8_t | state ) |
GPS 5 set EN pin function.
This function sets the EN pin logic state.
[in] | ctx | : Click context object. See gps5_t object definition for detailed explanation. |
[in] | state | : Pin logic state. |
void gps5_set_rst_pin | ( | gps5_t * | ctx, |
uint8_t | state ) |
GPS 5 set RST pin function.
This function sets the RST pin logic state.
[in] | ctx | : Click context object. See gps5_t object definition for detailed explanation. |
[in] | state | : Pin logic state. |