Skip to content

Commit ac8beb4

Browse files
committed
Terminal-Cursor-Control-Updates
Add term_cmd to simpletools library and update documentation page. Revert simpletext library's putChar to before August 26th, 2016. Link colormath library into Simple Libraries Index.html. Update revision history in Update Your Learn Folder.html.
1 parent 4b91861 commit ac8beb4

20 files changed

+692
-447
lines changed

Learn/Simple Libraries Index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ <h3 style="font-family:verdana;">Utility</h3>
2727
</blockquote>
2828
</p>
2929

30+
<p>
31+
<blockquote>
32+
<a href="Simple%20Libraries/Utility/libcolormath/Documentation%20colormath%20Library.html" target="_blank">colormath.h</a> - Tools for working with and converting
33+
colors and their components, represented as integers.
34+
</blockquote>
35+
</p>
36+
3037
<p>
3138
<blockquote>
3239
<a href="Simple%20Libraries/Utility/libstacktest/Documentation%20stacktest%20Library.html" target="_blank">stacktest.h</a> - Tools for testing the number of stack variables functions running in another cores use.
-158 Bytes
Binary file not shown.
-514 Bytes
Binary file not shown.

Learn/Simple Libraries/TextDevices/libsimpletext/putChar.c

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,12 @@ void putChar(char c)
2424

2525
#include "simpletext.h"
2626

27-
volatile char st_cursorPosition = 0;
28-
2927
void putChar(char c)
3028
{
3129
extern text_t *dport_ptr;
32-
if((c == '\n') && (st_cursorPosition == 0))
33-
{
30+
if(c == '\n')
3431
dport_ptr->txChar(dport_ptr, '\r');
35-
}
36-
else
37-
{
38-
st_cursorPosition--;
39-
}
4032
dport_ptr->txChar(dport_ptr, c);
41-
42-
if(c == 2 || c == 14 || c == 15)
43-
{
44-
if(c > 2)
45-
st_cursorPosition = 1;
46-
else
47-
st_cursorPosition = 2;
48-
}
4933
}
5034

5135
/*

Learn/Simple Libraries/Utility/libsimpletools/Documentation simpletools Library.html

Lines changed: 60 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Learn/Simple Libraries/Utility/libsimpletools/Doxyfile.doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = "simpletools library"
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = v0.98.1
35+
PROJECT_NUMBER = v0.98.2
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer
758 Bytes
Binary file not shown.

Learn/Simple Libraries/Utility/libsimpletools/html/files.html

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Learn/Simple Libraries/Utility/libsimpletools/html/globals.html

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Learn/Simple Libraries/Utility/libsimpletools/html/globals_defs.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)