-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #293 from mfs12/fix-message-title-display
Fix message title display
- Loading branch information
Showing
13 changed files
with
28 additions
and
15 deletions.
There are no files selected for viewing
Submodule librrf
updated
21 files
+67 −0 | .cproject | |
+1 −0 | .gitignore | |
+2 −0 | .settings/org.eclipse.core.resources.prefs | |
+2 −0 | .settings/org.eclipse.core.runtime.prefs | |
+ − | RRFLibraries.pdp | |
+68 −28 | src/General/Bitmap.h | |
+3 −0 | src/General/NamedEnum.h | |
+1 −1 | src/General/NumericConverter.cpp | |
+1 −1 | src/General/NumericConverter.h | |
+0 −18 | src/General/SafeStrtod.cpp | |
+1 −3 | src/General/SafeStrtod.h | |
+2 −4 | src/General/SafeVsnprintf.cpp | |
+1 −1 | src/General/SafeVsnprintf.h | |
+1 −1 | src/General/StringRef.cpp | |
+6 −6 | src/General/Vector.hpp | |
+43 −8 | src/General/function_ref.h | |
+23 −14 | src/Math/Isqrt.cpp | |
+3 −1 | src/Math/Isqrt.h | |
+291 −66 | src/RTOSIface/RTOSIface.cpp | |
+43 −24 | src/RTOSIface/RTOSIface.h | |
+1 −0 | src/ecv_duet3d.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
M291 P"test message mode 0" R"test mode S0" S0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
M291 P"test message mode 1" R"test mode S1" S1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
M291 P"test message mode 2" R"test mode S2" S2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
M291 P"test message mode 3" R"test mode S3" S3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
M291 P"select a choice" R"test mode 4" S4 K{"choice1", "choice2", "choice3", "choice4", "choice5", "choice6", "choice7", "choice8", "choice9", "choice10" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
M291 P"enter an integer number" R"test mode 5" S5 L10 H100 F50 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
M291 P"enter a float number" R"test mode 6" S6 L0.1 H1.0 F0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
M291 P"enter a text" R"test mode 7" S7 L2 H20 F"abc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
M291 P"test message mode 0" R"test title" S0 | ||
M291 P"test message mode 1" R"test title" S1 | ||
M291 P"test message mode 2" R"test title" S2 | ||
M291 P"test message mode 3" R"test title" S3 |