diff options
| -rw-r--r-- | ao-tools/ao-mega/ao-mega.c | 1 | ||||
| -rw-r--r-- | ao-tools/lib/cc.h | 3 | 
2 files changed, 3 insertions, 1 deletions
| diff --git a/ao-tools/ao-mega/ao-mega.c b/ao-tools/ao-mega/ao-mega.c index e06df88d..523229e6 100644 --- a/ao-tools/ao-mega/ao-mega.c +++ b/ao-tools/ao-mega/ao-mega.c @@ -126,6 +126,7 @@ main (int argc, char **argv)  							printf (" s%d %6d",  								j, log.u.volt.sense[j]);  						} +						printf ("pyro %04x\n", log.u.volt.pyro);  						printf ("\n");  						break;  					default: diff --git a/ao-tools/lib/cc.h b/ao-tools/lib/cc.h index 625540bb..c07f8cd0 100644 --- a/ao-tools/lib/cc.h +++ b/ao-tools/lib/cc.h @@ -306,7 +306,8 @@ struct ao_log_mega {  			int16_t		v_pbatt;	/* 6 */  			int16_t		n_sense;	/* 8 */  			int16_t		sense[10];	/* 10 */ -		} volt;					/* 30 */ +			uint16_t	pyro;		/* 30 */ +		} volt;					/* 32 */  		/* AO_LOG_GPS_TIME */  		struct {  			int32_t		latitude;	/* 4 */ | 
