OSDN Git Service

[v1.0][Doc] v1.0(.0) Release.
[openi2cradio/OpenI2CRadio.git] / helps.c
diff --git a/helps.c b/helps.c
index 5d9d53a..ee60369 100644 (file)
--- a/helps.c
+++ b/helps.c
@@ -45,20 +45,19 @@ const char *userfreq_helpstr[10] = {
         "E: Backlight", "F: (Exit) Help",
     };
 
-const char *updown_helpstr[18] = {
-        "5: Menu", " ",
+const char *updown_helpstr[16] = {
+        "5: Menu", "0: Narrow/Broad",
         "1: Slow Down", "3: Slow Up",
         "4: Down", "6: Up",
         "7: Fast Down", "9: Fast Up",
         "2: Band Down", "8: Band Up",
-        "0: Narrow/Broad", " ",
         "A: AM/FM", "B: User freq",
         "C Scan", "D: Stereo mode",
         "E: Backlight", "F: (Exit) Help",
     };
 
 const char *setup_helpstr[14] = {
-        "0: Power OFF",  " ",
+        "0: Power OFF",  "6: UI Update ",
         "3: BL Level", "E: BL time",
         "A: Load", "D: Reset default",
         "C: Save status", " ",
@@ -67,27 +66,28 @@ const char *setup_helpstr[14] = {
         "5: Cancel", "f: (Exit) Help",
     };
 
-const char *mainmenu_helpstr[14] = {
+const char *mainmenu_helpstr[16] = {
         "0: Setup", "1: Band",
-        "3: Freq", " "
+        "2:Resv" , "3: Freq",
         "4: Call user", "6: Set user",
         "7: Power Off", "8: Volume",
-        "9: Width", "a: AM/FM",
-        "b: Cancel","c: Set user",
-        "d: Input user","f: (Exit) Help",
+        "9: Reload", "A: AM/FM",
+        "B: Cancel","C: Set user",
+        "D: Input user","E: FM PITCH",
+        " ", "F: (Exit) Help",
 };
 
 const char *numeric_helpstr[8] = {
-     "On numeric input", " ",
-    "0-9: Numeric", "f: enter",
-    "a: Delete", "b: Reset value",
-    "d: Left", "e: Right",
+     "On numeric", " input",
+    "0-9: Numeric", "F: Enter",
+    "A: Delete", "B: Reset value",
+    "D: Left", "E: Right",
 };
 
 
 const char *version_helpstr[8] = {
     "Open I2C Radio", "V1.00",
-    "(C) 2013", "K.Ohta",
+    "(C) 2013", "Kyuma Ohta",
     "Licensed under", "GPLv2+LE",
     "Press any key", " to continue.",
 };
@@ -131,9 +131,9 @@ void setup_help(void)
 unsigned char printhelp_2lines(const char *l1, const char *l2)
 {
     _CLS();
-    _LOCATE(0,0);
+    //_LOCATE(0,0);
     printstr(l1);
-    _LOCATE(0,1);
+    _LOCATE_0_1();
     printstr(l2);
     _HOME();
     return pollkey_single();
@@ -158,11 +158,12 @@ void mainmenu_help(void)
 
     char l;
     l = 0;
+    if(help_header() == charcode_f) return;
     do {
         c = printhelp_2lines(mainmenu_helpstr[l], mainmenu_helpstr[l + 1]);
         if(c == charcode_f) return;
         l += 2;
-        if(l >= 14) {
+        if(l >= 16) {
             c = numeric_help();
             if(c == charcode_f) return;
             if(help_version() == charcode_f) return;
@@ -182,7 +183,7 @@ void updown_help(void)
         c = printhelp_2lines(updown_helpstr[l], updown_helpstr[l + 1]);
         if(c == charcode_f) return;
         l += 2;
-        if(l >= 18) {
+        if(l >= 16) {
             c = numeric_help();
             if(c == charcode_f) return;
             if(help_version() == charcode_f) return;