|
|
|
@ -317,6 +317,18 @@ struct log_VICN_s {
@@ -317,6 +317,18 @@ struct log_VICN_s {
|
|
|
|
|
float yaw; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/* --- GSN0 - GPS SNR #0 --- */ |
|
|
|
|
#define LOG_GSN0_MSG 26 |
|
|
|
|
struct log_GSN0_s { |
|
|
|
|
uint8_t satellite_snr[16]; /**< Signal to noise ratio of satellite. 0 for none, 255 for max. */ |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/* --- GSN1 - GPS SNR #1 --- */ |
|
|
|
|
#define LOG_GSN1_MSG 27 |
|
|
|
|
struct log_GSN1_s { |
|
|
|
|
uint8_t satellite_snr[16]; /**< Signal to noise ratio of satellite. 0 for none, 255 for max. */ |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/********** SYSTEM MESSAGES, ID > 0x80 **********/ |
|
|
|
|
|
|
|
|
|
/* --- TIME - TIME STAMP --- */ |
|
|
|
@ -368,6 +380,8 @@ static const struct log_format_s log_formats[] = {
@@ -368,6 +380,8 @@ static const struct log_format_s log_formats[] = {
|
|
|
|
|
LOG_FORMAT(ESTM, "ffffffffffBBBB", "s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,nStat,statNaN,covNaN,kGainNaN"), |
|
|
|
|
LOG_FORMAT(PWR, "fffBBBBB", "Periph5V,Servo5V,RSSI,UsbOk,BrickOk,ServoOk,PeriphOC,HipwrOC"), |
|
|
|
|
LOG_FORMAT(VICN, "ffffff", "X,Y,Z,Roll,Pitch,Yaw"), |
|
|
|
|
LOG_FORMAT(GSN0, "BBBBBBBBBBBBBBBB", "s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13,s14,s15"), |
|
|
|
|
LOG_FORMAT(GSN1, "BBBBBBBBBBBBBBBB", "s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13,s14,s15"), |
|
|
|
|
|
|
|
|
|
/* system-level messages, ID >= 0x80 */ |
|
|
|
|
/* FMT: don't write format of format message, it's useless */ |
|
|
|
|