Browse Source

Text fixes.

Georgi Chorbadzhiyski 9 years ago
parent
commit
dfc473a128
2 changed files with 7 additions and 7 deletions
  1. 3
    3
      README
  2. 4
    4
      videohubctrl.c

+ 3
- 3
README View File

@@ -59,19 +59,19 @@ Video inputs configuration:
59 59
 
60 60
 Video outputs configuration:
61 61
  --vo-name <out_X> <name>   | Set video output port X name.
62
- --vo-input <out_X> <in_Y>  | Connect video output X to video input Y
62
+ --vo-input <out_X> <in_Y>  | Connect video output X to video input Y.
63 63
  --vo-lock <out_X>          | Lock output port X.
64 64
  --vo-unlock <out_X>        | Unlock output port X.
65 65
 
66 66
 Monitoring outputs configuration:
67 67
  --mo-name <mout_X> <name>  | Set monitoring port X name.
68
- --mo-route <mout_X> <in_Y> | Connect monitoring X to video input Y
68
+ --mo-input <mout_X> <in_Y> | Connect monitoring X to video input Y.
69 69
  --mo-lock <mout_X>         | Lock monitoring port X.
70 70
  --mo-unlock <mout_X>       | Unlock monitoring port X.
71 71
 
72 72
 Serial ports configuration:
73 73
  --se-name <ser_X> <name>   | Set serial port X name.
74
- --se-route <ser_X> <ser_Y> | Connect serial X to serial Y
74
+ --se-input <ser_X> <ser_Y> | Connect serial X to serial Y.
75 75
  --se-lock <ser_X>          | Lock serial port X.
76 76
  --se-unlock <ser_X>        | Unlock serial port X.
77 77
  --se-dir <ser_X> <dir>     | Set serial port X direction.

+ 4
- 4
videohubctrl.c View File

@@ -78,7 +78,7 @@ static const struct option long_options[] = {
78 78
 	{ "mo-unlock",			required_argument, NULL, 3004 },
79 79
 	{ "se-name",			required_argument, NULL, 4001 },
80 80
 	{ "se-input",			required_argument, NULL, 4002 },
81
-	{ "se-route",			required_argument, NULL, 4002 }, // Alias of --mo-input
81
+	{ "se-route",			required_argument, NULL, 4002 }, // Alias of --se-input
82 82
 	{ "se-lock",			required_argument, NULL, 4003 },
83 83
 	{ "se-unlock",			required_argument, NULL, 4004 },
84 84
 	{ "se-dir",				required_argument, NULL, 4005 },
@@ -113,19 +113,19 @@ static void show_help(struct videohub_data *data) {
113 113
 	printf("\n");
114 114
 	printf("Video outputs configuration:\n");
115 115
 	printf(" --vo-name <out_X> <name>   | Set video output port X name.\n");
116
-	printf(" --vo-input <out_X> <in_Y>  | Connect video output X to video input Y\n");
116
+	printf(" --vo-input <out_X> <in_Y>  | Connect video output X to video input Y.\n");
117 117
 	printf(" --vo-lock <out_X>          | Lock output port X.\n");
118 118
 	printf(" --vo-unlock <out_X>        | Unlock output port X.\n");
119 119
 	printf("\n");
120 120
 	printf("Monitoring outputs configuration:\n");
121 121
 	printf(" --mo-name <mout_X> <name>  | Set monitoring port X name.\n");
122
-	printf(" --mo-route <mout_X> <in_Y> | Connect monitoring X to video input Y\n");
122
+	printf(" --mo-input <mout_X> <in_Y> | Connect monitoring X to video input Y.\n");
123 123
 	printf(" --mo-lock <mout_X>         | Lock monitoring port X.\n");
124 124
 	printf(" --mo-unlock <mout_X>       | Unlock monitoring port X.\n");
125 125
 	printf("\n");
126 126
 	printf("Serial ports configuration:\n");
127 127
 	printf(" --se-name <ser_X> <name>   | Set serial port X name.\n");
128
-	printf(" --se-route <ser_X> <ser_Y> | Connect serial X to serial Y\n");
128
+	printf(" --se-input <ser_X> <ser_Y> | Connect serial X to serial Y.\n");
129 129
 	printf(" --se-lock <ser_X>          | Lock serial port X.\n");
130 130
 	printf(" --se-unlock <ser_X>        | Unlock serial port X.\n");
131 131
 	printf(" --se-dir <ser_X> <dir>     | Set serial port X direction.\n");

Loading…
Cancel
Save