From b3fceaaf41c7ce1702b8bb8694c3d9ee202535c8 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:07:30 -0500 Subject: [PATCH 01/14] Update CubeSatSim_rttelemetry.csv add 10 bit ground commands count --- spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv index 556e73d3..5d0627de 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv @@ -1,4 +1,4 @@ -47,TYPE,FIELD,BITS,UNIT,CONVERSION,MODULE,MODULE_NUM,MODULE_LINE,LINE_TYPE,SHORT_NAME,DESCRIPTION +48,TYPE,FIELD,BITS,UNIT,CONVERSION,MODULE,MODULE_NUM,MODULE_LINE,LINE_TYPE,SHORT_NAME,DESCRIPTION 0,RT,Sensor 2,12,integer,1,Experiments,6,8,3,Sensor 2,STEM Payload Extra Sensor 2 1,RT,Sensor 3,12,integer,1,Experiments,6,9,3,Sensor 3,STEM Payload Extra Sensor 3 2,RT,BATT_V,12,V,cubesatsim_voltage|FLOAT2,Battery,4,1,3,Battery Voltage,INA219 Battery Voltage @@ -45,4 +45,6 @@ 43,RT,RXAntenna,1,-,16,Radio,1,3,0,RX Antenna,Receive antenna status 44,RT,TXAntenna,1,-,16,Radio,1,2,0,TX Antenna,Transmit antenna status 45,RT,C2CStatus,2,-,COMMAND_STATUS,Computer Software,3,5,0,Command Control, Command & Control Status -46,RT,Pad,56,-,0,NONE,0,0,0,NONE,NONE +46,RT,GroundCommands2,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received +47,RT,Pad,46,-,0,NONE,0,0,0,NONE,NONE + From c50314af2b2c467e326a100258cc83221a2cf236 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:08:19 -0500 Subject: [PATCH 02/14] Update CubeSatSim_rttelemetry.csv remove old Ground Commands --- spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv index 5d0627de..c3a5ba3b 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv @@ -41,10 +41,11 @@ 39,RT,I2CBus1Failure,1,-,17,Computer Hardware,2,2,0,I2C Bus 1,I2C bus 1 failure indicator 40,RT,I2CBus3Failure,1,-,17,Computer Hardware,2,3,0,I2C Bus 3,I2C bus 3 failure indicator 41,RT,CameraFailure,1,-,17,Computer Hardware,2,4,0,Camera,Camera failure indicator -42,RT,GroundCommands,4,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received +42,RT,GroundCommands,4,-,1,Computer Software,0,0,0,Ground Commands,Number of ground commands received 43,RT,RXAntenna,1,-,16,Radio,1,3,0,RX Antenna,Receive antenna status 44,RT,TXAntenna,1,-,16,Radio,1,2,0,TX Antenna,Transmit antenna status 45,RT,C2CStatus,2,-,COMMAND_STATUS,Computer Software,3,5,0,Command Control, Command & Control Status 46,RT,GroundCommands2,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received 47,RT,Pad,46,-,0,NONE,0,0,0,NONE,NONE + From c8da1ac6a2f8df8ba46adb2a17ba8858f9bcce34 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:16:24 -0500 Subject: [PATCH 03/14] Update main.c add 2nd groundCommandCount --- main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.c b/main.c index fdfa7384..af213d10 100644 --- a/main.c +++ b/main.c @@ -1601,6 +1601,8 @@ void get_tlm_fox() { encodeA(b, 51 + head_offset, status); encodeB(b, 52 + head_offset, rxAntennaDeployed + txAntennaDeployed * 2 + c2cStatus * 4); + encodeA(b, 54 + head_offset, groundCommandCount); + if (mode == BPSK) { encodeA(b_max, 51 + head_offset, status); encodeA(b_min, 51 + head_offset, status); From 93c4c90c2319b9c99c15d9150cf8d30261ee277e Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:24:13 -0500 Subject: [PATCH 04/14] Update main.c change offset --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index af213d10..f5115e60 100644 --- a/main.c +++ b/main.c @@ -1601,7 +1601,7 @@ void get_tlm_fox() { encodeA(b, 51 + head_offset, status); encodeB(b, 52 + head_offset, rxAntennaDeployed + txAntennaDeployed * 2 + c2cStatus * 4); - encodeA(b, 54 + head_offset, groundCommandCount); + encodeA(b, 53 + head_offset, groundCommandCount); if (mode == BPSK) { encodeA(b_max, 51 + head_offset, status); From 3714000a026d8a633c4c4664068a19a099bbbcd8 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:28:04 -0500 Subject: [PATCH 05/14] Update CubeSatSim_PSK_rttelemetry.csv add groundCommandCount2 --- spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv index 2d34abc9..90735c39 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv @@ -1,4 +1,4 @@ -61,TYPE,FIELD,BITS,UNIT,CONVERSION,MODULE,MODULE_NUM,MODULE_LINE,LINE_TYPE,SHORT_NAME,DESCRIPTION +62,TYPE,FIELD,BITS,UNIT,CONVERSION,MODULE,MODULE_NUM,MODULE_LINE,LINE_TYPE,SHORT_NAME,DESCRIPTION 0,realTime,Sensor 2,12,integer,1,Experiments,6,8,3,Sensor 2,STEM Payload Extra Sensor 2 1,realTime,Sensor 3,12,integer,1,Experiments,6,9,3,Sensor 3,STEM Payload Extra Sensor 3 2,realTime,BATT_V,12,V,cubesatsim_voltage|FLOAT2,Battery,4,1,3,Battery Voltage,INA219 Battery Voltage @@ -41,7 +41,7 @@ 39,realTime,I2CBus1Failure,1,-,17,Computer Hardware,2,2,0,I2C Bus 1,I2C bus 1 failure indicator 40,realTime,I2CBus3Failure,1,-,17,Computer Hardware,2,3,0,I2C Bus 3,I2C bus 3 failure indicator 41,realTime,CameraFailure,1,-,17,Computer Hardware,2,4,0,Camera,Camera failure indicator -42,realTime,GroundCommands,4,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received +42,realTime,GroundCommands,4,-,1,NONE,0,0,0,Ground Commands,Number of ground commands received 43,realTime,RxAntenna,1,-,16,Radio,1,3,0,RX Antenna,Receive antenna status 44,realTime,TxAntenna,1,-,16,Radio,1,2,0,TX Antenna,Transmit antenna status 45,realTime,C2CStatus,2,-,COMMAND_STATUS,Computer Software,3,5,0,Command Control, Command & Control Status @@ -59,4 +59,6 @@ 57,realTime,swCmds,32,-,35,NONE,7,6,0,Diagnostic,ICR Diagnostic information 58,realTime,hwCmdCnt,6,-,1,NONE,7,7,0,HW Command Count,Number of hardware commands since last reset 59,realTime,swCmdCnt,6,-,1,NONE,7,8,0,SW Command Count,Number of software commands since last reset -60,realTime,pad2,27,-,0,NONE,0,0,0,NONE,Filler +60,realTime,GroundCommands,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received +61,realTime,pad2,27,-,0,NONE,0,0,0,NONE,Filler + From 99bdf193101ba2b4a0565834d2968e82e2ae9117 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:28:36 -0500 Subject: [PATCH 06/14] Update CubeSatSim_PSK_rttelemetry.csv reduce pad size --- spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv index 90735c39..67d1e57e 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv @@ -60,5 +60,6 @@ 58,realTime,hwCmdCnt,6,-,1,NONE,7,7,0,HW Command Count,Number of hardware commands since last reset 59,realTime,swCmdCnt,6,-,1,NONE,7,8,0,SW Command Count,Number of software commands since last reset 60,realTime,GroundCommands,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received -61,realTime,pad2,27,-,0,NONE,0,0,0,NONE,Filler +61,realTime,pad2,17,-,0,NONE,0,0,0,NONE,Filler + From c5c518698ff83e346b366ef4ef11ca51e16ad785 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:29:59 -0500 Subject: [PATCH 07/14] Update CubeSatSim_PSK_rttelemetry.csv change name --- spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv index 67d1e57e..eed7d985 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv @@ -59,7 +59,8 @@ 57,realTime,swCmds,32,-,35,NONE,7,6,0,Diagnostic,ICR Diagnostic information 58,realTime,hwCmdCnt,6,-,1,NONE,7,7,0,HW Command Count,Number of hardware commands since last reset 59,realTime,swCmdCnt,6,-,1,NONE,7,8,0,SW Command Count,Number of software commands since last reset -60,realTime,GroundCommands,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received +60,realTime,GroundCommands2,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received 61,realTime,pad2,17,-,0,NONE,0,0,0,NONE,Filler + From c63108f3bd98cdda3366f492701ccf83ae55df1c Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:40:50 -0500 Subject: [PATCH 08/14] Update CubeSatSim_PSK_rttelemetry.csv move GroundCommands2 --- .../CubeSatSim_PSK_rttelemetry.csv | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv index eed7d985..bedd627b 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv @@ -45,22 +45,23 @@ 43,realTime,RxAntenna,1,-,16,Radio,1,3,0,RX Antenna,Receive antenna status 44,realTime,TxAntenna,1,-,16,Radio,1,2,0,TX Antenna,Transmit antenna status 45,realTime,C2CStatus,2,-,COMMAND_STATUS,Computer Software,3,5,0,Command Control, Command & Control Status -46,realTime,ICR3VProt,12,V,43,NONE,7,2,3,3V Prot,ICR 3V Proteted -47,realTime,ICR2dot5V,12,V,43,NONE,7,3,3,2.5V,ICR 2.5V -48,realTime,ICR2dot5VProt,12,V,43,NONE,7,4,3,2.5V Prot,ICR 2.5V Protected -49,realTime,rf6,12,-,0,NONE,0,0,0,None,None -50,realTime,rf7,12,-,0,NONE,0,0,0,None,None -51,realTime,MuxTest,12,V,43,NONE,7,5,3,Sensor Power,Sensor Power Voltage at the ICR -52,realTime,LtVGACtl,12,V,42,NONE,1,4,3,VGA Control,Control Voltage to the Variable Gain Amplifier (VGA) -53,realTime,pad,4,-,34,NONE,0,0,0,None,Unused -54,realTime,IHUdiagData,32,-,18,NONE,3,2,0,Diagnostic Info,Diagnostic Data on IHU Performance -55,realTime,pad1,1,-,0,NONE,0,0,0,NONE,Filler -56,realTime,wodSize,8,000s,36,NONE,3,3,0,WOD Stored,Number of WOD data payloads kept for each of Science and Housekeeping. In hundreds -57,realTime,swCmds,32,-,35,NONE,7,6,0,Diagnostic,ICR Diagnostic information -58,realTime,hwCmdCnt,6,-,1,NONE,7,7,0,HW Command Count,Number of hardware commands since last reset -59,realTime,swCmdCnt,6,-,1,NONE,7,8,0,SW Command Count,Number of software commands since last reset -60,realTime,GroundCommands2,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received +46,realTime,GroundCommands2,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received +47,realTime,ICR3VProt,12,V,43,NONE,7,2,3,3V Prot,ICR 3V Proteted +48,realTime,ICR2dot5V,12,V,43,NONE,7,3,3,2.5V,ICR 2.5V +49,realTime,ICR2dot5VProt,12,V,43,NONE,7,4,3,2.5V Prot,ICR 2.5V Protected +50,realTime,rf6,12,-,0,NONE,0,0,0,None,None +51,realTime,rf7,12,-,0,NONE,0,0,0,None,None +52,realTime,MuxTest,12,V,43,NONE,7,5,3,Sensor Power,Sensor Power Voltage at the ICR +53,realTime,LtVGACtl,12,V,42,NONE,1,4,3,VGA Control,Control Voltage to the Variable Gain Amplifier (VGA) +54,realTime,pad,4,-,34,NONE,0,0,0,None,Unused +55,realTime,IHUdiagData,32,-,18,NONE,3,2,0,Diagnostic Info,Diagnostic Data on IHU Performance +56,realTime,pad1,1,-,0,NONE,0,0,0,NONE,Filler +57,realTime,wodSize,8,000s,36,NONE,3,3,0,WOD Stored,Number of WOD data payloads kept for each of Science and Housekeeping. In hundreds +58,realTime,swCmds,32,-,35,NONE,7,6,0,Diagnostic,ICR Diagnostic information +59,realTime,hwCmdCnt,6,-,1,NONE,7,7,0,HW Command Count,Number of hardware commands since last reset +60,realTime,swCmdCnt,6,-,1,NONE,7,8,0,SW Command Count,Number of software commands since last reset 61,realTime,pad2,17,-,0,NONE,0,0,0,NONE,Filler + From f7ddcbdfd5f605465fc3a25edae02bf45da60ffe Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:47:32 -0500 Subject: [PATCH 09/14] remove blank lines at end --- spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv | 4 ---- spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv | 2 -- 2 files changed, 6 deletions(-) diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv index bedd627b..9fdaed04 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_PSK_rttelemetry.csv @@ -61,7 +61,3 @@ 59,realTime,hwCmdCnt,6,-,1,NONE,7,7,0,HW Command Count,Number of hardware commands since last reset 60,realTime,swCmdCnt,6,-,1,NONE,7,8,0,SW Command Count,Number of software commands since last reset 61,realTime,pad2,17,-,0,NONE,0,0,0,NONE,Filler - - - - diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv index c3a5ba3b..59779cdf 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv @@ -47,5 +47,3 @@ 45,RT,C2CStatus,2,-,COMMAND_STATUS,Computer Software,3,5,0,Command Control, Command & Control Status 46,RT,GroundCommands2,10,-,1,Computer Software,3,3,0,Ground Commands,Number of ground commands received 47,RT,Pad,46,-,0,NONE,0,0,0,NONE,NONE - - From 79edb6ba30eef501b2ef4b5c63937a57798e68e2 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:51:45 -0500 Subject: [PATCH 10/14] Update README.md --- spacecraft/FoxTelem_1.13i/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spacecraft/FoxTelem_1.13i/README.md b/spacecraft/FoxTelem_1.13i/README.md index d085dedc..00626f45 100644 --- a/spacecraft/FoxTelem_1.13i/README.md +++ b/spacecraft/FoxTelem_1.13i/README.md @@ -1,6 +1,8 @@ These files update the spacecraft files in FoxTelem version 1.13i or later and fix a bug in the payload altitude sensor display. -You can download them as a zip file: [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23217474/foxtelem_spacecraft_files.zip) +You can download them as a zip file: [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23393161/foxtelem_spacecraft_files.zip) + +[foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23217474/foxtelem_spacecraft_files.zip) Extract (unzip foxtelem_spacecraft_files) and copy into FoxTelem spacecraft folder, replacing existing files. From a6676683ab09d19ad9314e2671cab085bc3a32db Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 07:56:26 -0500 Subject: [PATCH 11/14] Update README.md added other files --- spacecraft/FoxTelem_1.13i/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacecraft/FoxTelem_1.13i/README.md b/spacecraft/FoxTelem_1.13i/README.md index 00626f45..7d691ef3 100644 --- a/spacecraft/FoxTelem_1.13i/README.md +++ b/spacecraft/FoxTelem_1.13i/README.md @@ -1,6 +1,6 @@ These files update the spacecraft files in FoxTelem version 1.13i or later and fix a bug in the payload altitude sensor display. -You can download them as a zip file: [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23393161/foxtelem_spacecraft_files.zip) +You can download them as a zip file: [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23393272/foxtelem_spacecraft_files.zip) [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23217474/foxtelem_spacecraft_files.zip) From 2f33c8326baca43abc52aba4ca9aeab592a1daf5 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 08:00:34 -0500 Subject: [PATCH 12/14] change module to NONE --- spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv b/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv index 59779cdf..967514bc 100644 --- a/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv +++ b/spacecraft/FoxTelem_1.13i/CubeSatSim_rttelemetry.csv @@ -41,7 +41,7 @@ 39,RT,I2CBus1Failure,1,-,17,Computer Hardware,2,2,0,I2C Bus 1,I2C bus 1 failure indicator 40,RT,I2CBus3Failure,1,-,17,Computer Hardware,2,3,0,I2C Bus 3,I2C bus 3 failure indicator 41,RT,CameraFailure,1,-,17,Computer Hardware,2,4,0,Camera,Camera failure indicator -42,RT,GroundCommands,4,-,1,Computer Software,0,0,0,Ground Commands,Number of ground commands received +42,RT,GroundCommands,4,-,1,NONE,0,0,0,Ground Commands,Number of ground commands received 43,RT,RXAntenna,1,-,16,Radio,1,3,0,RX Antenna,Receive antenna status 44,RT,TXAntenna,1,-,16,Radio,1,2,0,TX Antenna,Transmit antenna status 45,RT,C2CStatus,2,-,COMMAND_STATUS,Computer Software,3,5,0,Command Control, Command & Control Status From 1fe3ced0c1c9b3478a01b6e72cfb03b531a3e20a Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 08:03:40 -0500 Subject: [PATCH 13/14] Update README.md added all files --- spacecraft/FoxTelem_1.13i/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacecraft/FoxTelem_1.13i/README.md b/spacecraft/FoxTelem_1.13i/README.md index 7d691ef3..b5431fe9 100644 --- a/spacecraft/FoxTelem_1.13i/README.md +++ b/spacecraft/FoxTelem_1.13i/README.md @@ -1,9 +1,9 @@ These files update the spacecraft files in FoxTelem version 1.13i or later and fix a bug in the payload altitude sensor display. -You can download them as a zip file: [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23393272/foxtelem_spacecraft_files.zip) +You can download them as a zip file: [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23393444/foxtelem_spacecraft_files.zip) [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23217474/foxtelem_spacecraft_files.zip) -Extract (unzip foxtelem_spacecraft_files) and copy into FoxTelem spacecraft folder, replacing existing files. +Extract (unzip foxtelem_spacecraft_files.zip) and copy into FoxTelem spacecraft folder, replacing existing files. Next time you run FoxTelem, the CubeSatSim-FSK and CubeSatSim-BPSK spacecraft will be automatically updated. From 86db53eb1357d8b5b6970fe68a72a8f7ea82b853 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 6 Nov 2025 08:07:59 -0500 Subject: [PATCH 14/14] Update README.md remove old zip file --- spacecraft/FoxTelem_1.13i/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/spacecraft/FoxTelem_1.13i/README.md b/spacecraft/FoxTelem_1.13i/README.md index b5431fe9..765fba49 100644 --- a/spacecraft/FoxTelem_1.13i/README.md +++ b/spacecraft/FoxTelem_1.13i/README.md @@ -2,8 +2,6 @@ These files update the spacecraft files in FoxTelem version 1.13i or later and f You can download them as a zip file: [foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23393444/foxtelem_spacecraft_files.zip) -[foxtelem_spacecraft_files.zip](https://github.com/user-attachments/files/23217474/foxtelem_spacecraft_files.zip) - Extract (unzip foxtelem_spacecraft_files.zip) and copy into FoxTelem spacecraft folder, replacing existing files. Next time you run FoxTelem, the CubeSatSim-FSK and CubeSatSim-BPSK spacecraft will be automatically updated.