Paparazzi UAS  v5.10_stable-5-g83a0da5-dirty
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
gps_ubx_i2c.c File Reference

pprz link device for Ublox over I2C More...

#include "mcu_periph/i2c.h"
#include "modules/gps/gps_ubx_i2c.h"
#include "subsystems/datalink/downlink.h"
#include <math.h>
+ Include dependency graph for gps_ubx_i2c.c:

Go to the source code of this file.

Macros

#define GPS_I2C_SLAVE_ADDR   (0x42 << 1)
 
#define GPS_I2C_ADDR_NB_AVAIL_BYTES   0xFD
 number of bytes available register More...
 
#define GPS_I2C_ADDR_DATA   0xFF
 data stream register More...
 

Functions

void null_function (struct GpsUbxI2C *p)
 null function More...
 
int gps_i2c_check_free_space (struct GpsUbxI2C *p, long *fd, uint16_t len)
 Check available space in transmit buffer. More...
 
void gps_i2c_put_byte (struct GpsUbxI2C *p, long fd, uint8_t data)
 Put byte into transmit buffer. More...
 
void gps_i2c_put_buffer (struct GpsUbxI2C *p, long fd, uint8_t *data, uint16_t len)
 Put bytes into transmit buffer. More...
 
void gps_i2c_msg_ready (struct GpsUbxI2C *p, long fd)
 send buffer when ready More...
 
uint8_t gps_i2c_char_available (struct GpsUbxI2C *p)
 check if a new character is available More...
 
uint8_t gps_i2c_getch (struct GpsUbxI2C *p)
 get a new char More...
 
void gps_ubx_i2c_init (void)
 init function More...
 
bool gps_i2c_tx_is_ready (void)
 is driver ready to send a message More...
 
void gps_i2c_begin (void)
 config is done, begin reading messages More...
 
void gps_ubx_i2c_periodic (void)
 handle message sending More...
 
void gps_ubx_i2c_read_event (void)
 handle message reception More...
 

Variables

struct GpsUbxI2C gps_i2c
 
bool gps_ubx_i2c_ucenter_done
 ucenter finished configuring flag More...
 
uint16_t gps_ubx_i2c_bytes_to_read
 ublox bytes to read More...
 

Detailed Description

pprz link device for Ublox over I2C

This module adds i2c functionality for the ublox using existing driver

Definition in file gps_ubx_i2c.c.

Macro Definition Documentation

#define GPS_I2C_ADDR_DATA   0xFF

data stream register

Definition at line 46 of file gps_ubx_i2c.c.

Referenced by gps_ubx_i2c_read_event().

#define GPS_I2C_ADDR_NB_AVAIL_BYTES   0xFD

number of bytes available register

Definition at line 45 of file gps_ubx_i2c.c.

Referenced by gps_ubx_i2c_periodic().

#define GPS_I2C_SLAVE_ADDR   (0x42 << 1)

Definition at line 38 of file gps_ubx_i2c.c.

Referenced by gps_ubx_i2c_periodic(), and gps_ubx_i2c_read_event().

Function Documentation

void gps_i2c_begin ( void  )

config is done, begin reading messages

Definition at line 159 of file gps_ubx_i2c.c.

References TRUE.

Referenced by gps_ubx_ucenter_periodic().

+ Here is the caller graph for this function:

uint8_t gps_i2c_char_available ( struct GpsUbxI2C p)

check if a new character is available

Parameters
punused

Definition at line 149 of file gps_ubx_i2c.c.

References gps_i2c, GpsUbxI2C::rx_buf_avail, and GpsUbxI2C::rx_buf_idx.

Referenced by gps_ubx_i2c_init(), and gps_ubx_i2c_periodic().

+ Here is the caller graph for this function:

int gps_i2c_check_free_space ( struct GpsUbxI2C p,
long *  fd,
uint16_t  len 
)

Check available space in transmit buffer.

Parameters
punused
fdunused
lennumber of bytes to check

Definition at line 125 of file gps_ubx_i2c.c.

References gps_i2c, GPS_I2C_BUF_SIZE, and GpsUbxI2C::tx_buf_idx.

Referenced by gps_ubx_i2c_init().

+ Here is the caller graph for this function:

uint8_t gps_i2c_getch ( struct GpsUbxI2C p)

get a new char

Parameters
punused

Definition at line 164 of file gps_ubx_i2c.c.

References gps_i2c, GpsUbxI2C::rx_buf, and GpsUbxI2C::rx_buf_idx.

Referenced by gps_ubx_i2c_init().

+ Here is the caller graph for this function:

void gps_i2c_msg_ready ( struct GpsUbxI2C p,
long  fd 
)

send buffer when ready

Parameters
punused

Definition at line 143 of file gps_ubx_i2c.c.

References FALSE, gps_i2c, gps_i2c_write_cfg, GpsUbxI2C::tx_rdy, and GpsUbxI2C::write_state.

Referenced by gps_ubx_i2c_init().

+ Here is the caller graph for this function:

void gps_i2c_put_buffer ( struct GpsUbxI2C p,
long  fd,
uint8_t data,
uint16_t  len 
)

Put bytes into transmit buffer.

Parameters
punused
fdunused
databyte to put in buffer

Definition at line 130 of file gps_ubx_i2c.c.

References gps_i2c_put_byte().

Referenced by gps_ubx_i2c_init().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void gps_i2c_put_byte ( struct GpsUbxI2C p,
long  fd,
uint8_t  data 
)

Put byte into transmit buffer.

Parameters
punused
fdunused
databyte to put in buffer

Definition at line 138 of file gps_ubx_i2c.c.

References gps_i2c, GpsUbxI2C::tx_buf, and GpsUbxI2C::tx_buf_idx.

Referenced by gps_i2c_put_buffer(), and gps_ubx_i2c_init().

+ Here is the caller graph for this function:

bool gps_i2c_tx_is_ready ( void  )

is driver ready to send a message

Definition at line 154 of file gps_ubx_i2c.c.

References gps_i2c, and GpsUbxI2C::tx_rdy.

Referenced by gps_ubx_ucenter_periodic().

+ Here is the caller graph for this function:

void gps_ubx_i2c_init ( void  )

init function

< check if transmit buffer is not full

< put one byte

< put several bytes

< send completed buffer

< check if a new character is available

< get a new char

< set device baudrate

Definition at line 96 of file gps_ubx_i2c.c.

References GpsUbxI2C::device, FALSE, gps_i2c, gps_i2c_char_available(), gps_i2c_check_free_space(), gps_i2c_getch(), gps_i2c_msg_ready(), gps_i2c_put_buffer(), gps_i2c_put_byte(), gps_i2c_read_standby, gps_i2c_write_standby, I2CTransDone, null_function(), GpsUbxI2C::read_state, GpsUbxI2C::rx_buf_avail, GpsUbxI2C::rx_buf_idx, i2c_transaction::status, GpsUbxI2C::trans, TRUE, GpsUbxI2C::tx_buf_idx, GpsUbxI2C::tx_rdy, and GpsUbxI2C::write_state.

+ Here is the call graph for this function:

void null_function ( struct GpsUbxI2C p)

null function

Parameters
punused

Definition at line 123 of file gps_ubx_i2c.c.

Referenced by gps_ubx_i2c_init().

+ Here is the caller graph for this function:

Variable Documentation

uint16_t gps_ubx_i2c_bytes_to_read

ublox bytes to read

Definition at line 53 of file gps_ubx_i2c.c.

Referenced by gps_ubx_i2c_read_event().

bool gps_ubx_i2c_ucenter_done

ucenter finished configuring flag

Definition at line 52 of file gps_ubx_i2c.c.