Skip to content

Commit 7a6c0c6

Browse files
authored
Release v4.2.1
Merge pull request #35 from MMMZZZZ/dev
2 parents cbd87f5 + c6199a2 commit 7a6c0c6

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

Syntherrupter_Nextion/Source_as_Text/Program.s.txt

+13
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ Program.s
77
if(bauds!=115200)
88
{
99
bauds=115200
10+
if(bauds!=115200)
11+
{
12+
// bauds will always return 9600 in the Nextion Editor/Debugger. Hence we enter this
13+
// section only if we are running within the debugger.
14+
// The debugger does not send the startup messages that Nextion devices send.
15+
// Since the Tiva firmware relies on them, we do it manually here.
16+
//
17+
// Power Up
18+
printh 00 00 00 ff ff ff
19+
//
20+
// Ready
21+
printh 88 ff ff ff
22+
}
1023
}
1124
//
1225
// Allow wake up on touch and on serial command (f.ex. reset command) in case it is not already allowed.

Syntherrupter_Nextion/Source_as_Text/Startup.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Text tNxtFWVersion
139139
Scope : local
140140
Send Component ID : disabled
141141
Associated Keyboard: none
142-
Text : v4.2.0
142+
Text : v4.2.1
143143
Max. Text Size : 20
144144

145145
Events
-11.3 KB
Binary file not shown.

Syntherrupter_Tiva/InterrupterConfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define INTERRUPTER_CONFIG_H_
1010

1111

12-
#define TIVA_FW_VERSION "v4.2.0"
12+
#define TIVA_FW_VERSION "v4.2.1"
1313

1414
#ifdef COIL_COUNT_1
1515
#define COIL_COUNT 1

0 commit comments

Comments
 (0)