summaryrefslogtreecommitdiff
path: root/apps/examples/nxtext/nxtext_main.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-07-09 21:11:00 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-07-09 21:11:00 +0000
commit8f49596dcc5ab93470d7053f9f84aa822eb5d4fc (patch)
tree01712c8abf0522bd94f976d0b59c48d364597903 /apps/examples/nxtext/nxtext_main.c
parent5956e64bad49ffd72892ecc34ccfbbc8779a8871 (diff)
downloadnuttx-8f49596dcc5ab93470d7053f9f84aa822eb5d4fc.tar.gz
nuttx-8f49596dcc5ab93470d7053f9f84aa822eb5d4fc.tar.bz2
nuttx-8f49596dcc5ab93470d7053f9f84aa822eb5d4fc.zip
Fix an error in a bounding box calculation
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3763 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/nxtext/nxtext_main.c')
-rw-r--r--apps/examples/nxtext/nxtext_main.c30
1 files changed, 25 insertions, 5 deletions
diff --git a/apps/examples/nxtext/nxtext_main.c b/apps/examples/nxtext/nxtext_main.c
index 6704e148c..e6d0eca39 100644
--- a/apps/examples/nxtext/nxtext_main.c
+++ b/apps/examples/nxtext/nxtext_main.c
@@ -81,7 +81,7 @@
# define CONFIG_EXAMPLES_NXTEXT_DEVNO 0
#endif
-#define BGMSG_LINES 4
+#define BGMSG_LINES 24
/****************************************************************************
* Private Types
@@ -99,10 +99,30 @@
static const uint8_t g_pumsg[] = "Pop-Up!";
static const char *g_bgmsg[BGMSG_LINES] =
{
- "Now is the time ",
- "for all good men ",
- "To come to the aid ",
- "of their party. "
+ "\nJULIET\n",
+ "Wilt thou be gone? ",
+ "It is not yet near day:\n",
+ "It was the nightingale, ",
+ "and not the lark,\n",
+ "That pierced the fearful hollow ",
+ "of thine ear;\n",
+ "Nightly she sings ",
+ "on yon pomegranate-tree:\n",
+ "Believe me, love, "
+ "it was the nightingale.\n"
+ "\nROMEO\n"
+ "It was the lark, "
+ "the herald of the morn,\n"
+ "No nightingale: "
+ "look, love, what envious streaks\n"
+ "Do lace the severing clouds "
+ "in yonder east:\n"
+ "Night's candles are burnt out, "
+ "and jocund day\n"
+ "Stands tiptoe "
+ "on the misty mountain tops.\n"
+ "I must be gone and live, "
+ "or stay and die. \n"
};
#endif