Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
imu_vectornav.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Michal Podhradsky, michal.podhradsky@aggiemail.usu.edu
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  */
22 
30 
31 // Systime
32 #include "mcu_periph/sys_time.h"
33 
34 // Abi
35 #include "modules/core/abi.h"
36 
37 // Generated
38 #include "generated/airframe.h"
39 
40 struct ImuVectornav imu_vn;
41 
42 #if PERIODIC_TELEMETRY
44 
45 
46 static void send_vn_info(struct transport_tx *trans, struct link_device *dev)
47 {
48  static uint16_t last_cnt = 0;
49  static uint16_t sec_cnt = 0;
50 
51  sec_cnt = imu_vn.vn_packet.counter - last_cnt;
52  imu_vn.vn_freq = sec_cnt; // update frequency counter
53 
54  pprz_msg_send_VECTORNAV_INFO(trans, dev, AC_ID,
58  &sec_cnt,
64  // update counter
65  last_cnt = imu_vn.vn_packet.counter;
66 
67  // reset mode
68  imu_vn.vn_data.mode = 0;
69 }
70 #endif
71 
72 
77 {
78  // Initialize variables
80  imu_vn.vn_freq = 0;
81 
82  // Initialize packet
91 
92  // initialize data structs
93  memset(&(imu_vn.vn_data), 0, sizeof(struct VNData));
94 
95 #if PERIODIC_TELEMETRY
96  register_periodic_telemetry(DefaultPeriodic, PPRZ_MSG_ID_VECTORNAV_INFO, send_vn_info);
97 #endif
98 }
99 
100 
101 
106 {
107  // receive data
109 
110  // read message
115  }
116 }
117 
118 
125 {
126  static uint16_t last_cnt = 0;
127  static uint16_t sec_cnt = 0;
128 
129  sec_cnt = imu_vn.vn_packet.counter - last_cnt;
130  imu_vn.vn_freq = sec_cnt; // update frequency counter
131 
132  // we want at least 75% of periodic frequency to be able to control the airfcraft
133  if (imu_vn.vn_freq >= (PERIODIC_FREQUENCY*0.75)) {
135  }
136  else {
138  }
139 }
140 
141 
146 {
147  uint64_t tmp = imu_vn.vn_data.nanostamp / 1000;
148  uint32_t now_ts = (uint32_t) tmp;
149 
150  // Send accel and gyro data separate for other AHRS algorithms
151  AbiSendMsgIMU_GYRO_RAW(IMU_VECTORNAV_ID, now_ts, &imu_vn.vn_data.gyro, 1, imu_vn.vn_freq, NAN);
152  AbiSendMsgIMU_ACCEL_RAW(IMU_VECTORNAV_ID, now_ts, &imu_vn.vn_data.accel, 1, imu_vn.vn_freq, NAN);
153 }
Main include for ABI (AirBorneInterface).
#define IMU_VECTORNAV_ID
float phi
in radians
float theta
in radians
float psi
in radians
void imu_vectornav_init(void)
Init IMU struct and set up ABI messages.
Definition: imu_vectornav.c:76
void imu_vectornav_event(void)
Event function to read and parse data from the serial port.
struct ImuVectornav imu_vn
Definition: imu_vectornav.c:40
void imu_vectornav_periodic(void)
Periodic function checks for the frequency of packets, triggers warning in case the IMU stops sending...
void imu_vectornav_propagate(void)
Send ABI messages.
static void send_vn_info(struct transport_tx *trans, struct link_device *dev)
Definition: imu_vectornav.c:46
Vectornav VN-200 IMU module, to be used with other AHRS/INS algorithms.
float vn_freq
data frequency
Definition: imu_vectornav.h:44
struct VNData vn_data
Data struct.
Definition: imu_vectornav.h:42
enum VNStatus vn_status
VN status.
Definition: imu_vectornav.h:43
struct VNPacket vn_packet
Packet struct.
Definition: imu_vectornav.h:41
static const struct usb_device_descriptor dev
Definition: usb_ser_hw.c:74
Architecture independent timing functions.
int8_t register_periodic_telemetry(struct periodic_telemetry *_pt, uint8_t _id, telemetry_cb _cb)
Register a telemetry callback function.
Definition: telemetry.c:51
Periodic telemetry system header (includes downlink utility and generated code).
#define DefaultPeriodic
Set default periodic telemetry.
Definition: telemetry.h:66
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
Definition: vl53l1_types.h:88
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l1_types.h:78
unsigned long long uint64_t
Definition: vl53l1_types.h:72
void vn200_read_message(struct VNPacket *vn_packet, struct VNData *vn_data)
Read received message and populate data struct with new measurements.
Definition: vn200_serial.c:184
void vn200_event(struct VNPacket *vnp)
Definition: vn200_serial.c:113
uint16_t framing_error
Definition: vn200_serial.h:71
uint32_t hdr_error
Definition: vn200_serial.h:64
uint8_t err
see page 122 of VN-200 datasheet
Definition: vn200_serial.h:96
@ VNNotTracking
Definition: vn200_serial.h:78
@ VNOK
Definition: vn200_serial.h:80
uint16_t overrun_error
Definition: vn200_serial.h:69
struct FloatRates gyro
Rates in the imu frame m/s.
Definition: vn200_serial.h:89
struct FloatEulers ypr_u
Attitude uncertainty, 1sigma, float, [degrees], yaw, pitch, roll.
Definition: vn200_serial.h:93
struct FloatVect3 accel
Acceleration in the imu frame, m/s.
Definition: vn200_serial.h:88
uint8_t mode
0-not tracking, 1 - poor performance, 2- OK
Definition: vn200_serial.h:95
float timestamp
Time since VN startup [s].
Definition: vn200_serial.h:85
@ VNMsgSync
Definition: vn200_serial.h:54
uint16_t counter
Definition: vn200_serial.h:74
uint64_t nanostamp
Definition: vn200_serial.h:84
bool msg_available
Definition: vn200_serial.h:62
uint16_t noise_error
Definition: vn200_serial.h:70
uint32_t chksm_error
Definition: vn200_serial.h:63
uint8_t msg_idx
Definition: vn200_serial.h:67
enum VNMsgStatus status
Definition: vn200_serial.h:66