diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cae7067 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +Release/ +Debug/ +*.opensdf +*.sdf +*.vcxproj.user + diff --git a/Form1.cpp b/Form1.cpp index 4c5bd1f..f29cab6 100644 --- a/Form1.cpp +++ b/Form1.cpp @@ -2439,7 +2439,7 @@ void Form1::parse_hbr(unsigned char data, int bytect){ // 10A7 // ... // 10A148 - display( data, 10, TLM_A, 1+(framect*3) ); + display( data, 10, TLM_A, (framect*3)-2 ); break; case 59: @@ -2569,7 +2569,7 @@ void Form1::parse_hbr(unsigned char data, int bytect){ // 10A8 // ... // 10A149 - display( data, 10, TLM_A, 2+(framect*3) ); + display( data, 10, TLM_A, (framect*3)-1 ); break; case 88: @@ -2676,7 +2676,7 @@ void Form1::parse_hbr(unsigned char data, int bytect){ // 10A9 // ... // 10A150 - display( data, 10, TLM_A, 3+(framect*3) ); + display( data, 10, TLM_A, (framect*3) ); break; case 120: diff --git a/GroundStation.exe b/GroundStation.exe index a2b8543..0ce444e 100644 Binary files a/GroundStation.exe and b/GroundStation.exe differ