diff options
author | Keith Packard <keithp@keithp.com> | 2012-06-04 20:52:38 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-06-04 20:52:38 -0700 |
commit | e687a9bafc696998b47fd0300fbc89dece09509c (patch) | |
tree | e3c4f35bbd29ddda72a24c116ba02884a88cf135 /src/core/ao_cmd.c | |
parent | 1832e2f76c844e97a2bd11226b003fb2af8057db (diff) |
altos: Make 'v' command dump pressure sensor ROM values
Avoids needing a new command
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_cmd.c')
-rw-r--r-- | src/core/ao_cmd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/ao_cmd.c b/src/core/ao_cmd.c index fdc70007..40bb476c 100644 --- a/src/core/ao_cmd.c +++ b/src/core/ao_cmd.c @@ -252,6 +252,9 @@ version(void) #if HAS_LOG printf("log-format %u\n", ao_log_format); #endif +#if HAS_MS5607 + ao_ms5607_info(); +#endif printf("software-version %s\n", ao_version); } |