aboutsummaryrefslogtreecommitdiff
path: root/libraries/Bridge/examples/ConsoleAsciiTable
diff options
context:
space:
mode:
authorCristian Maglie <c.maglie@bug.st>2013-06-05 20:20:18 +0200
committerCristian Maglie <c.maglie@bug.st>2013-06-05 20:20:18 +0200
commit2f547367fd58582e6f820fbf0bd6a276288bbc4a (patch)
tree55ec99c649759db43297a96f380c9621316ff431 /libraries/Bridge/examples/ConsoleAsciiTable
parent48a4f76e4271567a7c7649c507668e23345190c3 (diff)
Added comment to some examples
Diffstat (limited to 'libraries/Bridge/examples/ConsoleAsciiTable')
-rw-r--r--libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino5
1 files changed, 4 insertions, 1 deletions
diff --git a/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino b/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino
index d547df7..4cdf4c1 100644
--- a/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino
+++ b/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino
@@ -29,7 +29,7 @@ void setup() {
Bridge.begin();
Console.begin();
- // Uncomment the followinf line to enable buffering:
+ // Uncomment the following line to enable buffering:
// - better transmission speed and efficiency
// - needs to call Console.flush() to ensure that all
// transmitted data is sent
@@ -81,6 +81,9 @@ void loop() {
// if printed last visible character '~' or 126, stop:
if(thisByte == 126) { // you could also use if (thisByte == '~') {
+ // ensure the latest bit of data is sent
+ Console.flush();
+
// This loop loops forever and does nothing
while(true) {
continue;