changeset 762:32529dfea3b0

Preparing a 1.6.2 release candidate
author heinrichsweikamp
date Sun, 26 Mar 2023 11:27:29 +0200
parents 31883eacf1fa
children aa6006975e76
files Current build/OSTC4update_221127.bin Current build/OSTC4update_230326.bin Discovery/Src/settings.c Small_CPU/Src/baseCPU2.c
diffstat 4 files changed, 13 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
Binary file Current build/OSTC4update_221127.bin has changed
Binary file Current build/OSTC4update_230326.bin has changed
--- a/Discovery/Src/settings.c	Tue Mar 21 12:57:37 2023 +0100
+++ b/Discovery/Src/settings.c	Sun Mar 26 11:27:29 2023 +0200
@@ -41,7 +41,7 @@
 SSettings Settings;
 
 const uint8_t RTErequiredHigh = 3;
-const uint8_t RTErequiredLow = 0;
+const uint8_t RTErequiredLow = 1;
 
 const uint8_t FONTrequiredHigh = 1;
 const uint8_t FONTrequiredLow =	0;
@@ -60,15 +60,15 @@
 {
     .versionFirst   = 1,
     .versionSecond 	= 6,
-    .versionThird   = 1,
-    .versionBeta    = 1,
+    .versionThird   = 2,
+    .versionBeta    = 0,
 
     /* 4 bytes with trailing 0 */
     .signature = "mh",
 
-    .release_year = 22,
-    .release_month = 8,
-    .release_day = 19,
+    .release_year = 23,
+    .release_month = 3,
+    .release_day = 26,
     .release_sub = 0,
 
     /* max 48 with trailing 0 */
--- a/Small_CPU/Src/baseCPU2.c	Tue Mar 21 12:57:37 2023 +0100
+++ b/Small_CPU/Src/baseCPU2.c	Sun Mar 26 11:27:29 2023 +0200
@@ -166,21 +166,21 @@
 // See CPU2-RTE.ld
 const SFirmwareData cpu2_FirmwareData __attribute__(( section(".firmware_data") ))= {
 		.versionFirst = 3,
-		.versionSecond = 0,
-		.versionThird = 1,
-		.versionBeta = 1,
+		.versionSecond = 1,
+		.versionThird = 0,
+		.versionBeta = 0,
 
 /* 4 bytes with trailing 0 */
 		.signature = "mh",
 
-		.release_year = 22,
-		.release_month = 8,
-		.release_day = 19,
+		.release_year = 23,
+		.release_month = 3,
+		.release_day = 26,
 		.release_sub = 0,
 
 		/* max 48 with trailing 0 */
 		//release_info ="12345678901234567890123456789012345678901"
-		.release_info = "stable Nov'19",
+		.release_info = "stable March 2023",
 
 		/* for safety reasons and coming functions */
 		.magic[0] = FIRMWARE_MAGIC_FIRST, .magic[1] = FIRMWARE_MAGIC_SECOND,