From 3339b6841c76e4bbce60060c3d79db8311b35448 Mon Sep 17 00:00:00 2001 From: "Hansi, dl9rdz" Date: Wed, 22 May 2019 14:03:15 +0200 Subject: [PATCH] data types cleanup --- libraries/SondeLib/Display.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/SondeLib/Display.h b/libraries/SondeLib/Display.h index 77f5a08..5c76daa 100644 --- a/libraries/SondeLib/Display.h +++ b/libraries/SondeLib/Display.h @@ -7,11 +7,11 @@ struct DispEntry { - uint8_t y; - uint8_t x; - uint16_t fmt; + int8_t y; + int8_t x; + int16_t fmt; void (*func)(DispEntry *de); - char *extra; + const char *extra; };