Multi Telemetry: fix patch level

This commit is contained in:
pascallanger 2016-12-21 20:26:31 +01:00
parent 7bb26a7f07
commit 9b6d2bce58
2 changed files with 6 additions and 5 deletions

View File

@ -17,8 +17,9 @@
// Version
//******************
#define VERSION_MAJOR 1
#define VERSION_MINOR 16
#define VERSION_PATCH_LEVEL 1
#define VERSION_MINOR 1
#define VERSION_PATCH_LEVEL_H 6
#define VERSION_PATCH_LEVEL_L 2
//******************
// Protocols

View File

@ -92,8 +92,8 @@ static void multi_send_status()
// Version number example: 1.16.1
Serial_write(VERSION_MAJOR);
Serial_write(VERSION_MINOR);
Serial_write(VERSION_PATCH_LEVEL);
Serial_write(0);
Serial_write(VERSION_PATCH_LEVEL_H);
Serial_write(VERSION_PATCH_LEVEL_L);
}
#endif