diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/src/Core/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/src/Core/main.c b/src/common/src/Core/main.c index 8cce8da..5edd1f5 100644 --- a/src/common/src/Core/main.c +++ b/src/common/src/Core/main.c @@ -407,6 +407,11 @@ static void gps_monit_task(void __attribute__ ((unused))*pvParameters) { t_gps_print_latch = 1; + + usart_debug("ALIM %d mV\r\n", (int)roundf(1000.0f * analog_measure_12v())); + + const float temp = temperature_get(); + usart_debug("TEMP %d.%02d\r\n", (int)temp, (int)(temp * 100.0f - (int)(temp) * 100.0f)); } if (time.tm_sec % 30 > 0) { |
