File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ cargo install gpio-utils
15
15
16
16
## Features
17
17
18
- - [ ] Infrastructure for providing names for the GPIOs in one systems providing
18
+ - [ ] Infrastructure for providing names for the GPIOs in one's system providing
19
19
names that map to individual pins. These names (in addition to GPIO numbers)
20
20
may be used with other commands.
21
21
- [ ] Ability to export/unexport GPIOs and expose symlinks using the GPIO "friendly"
@@ -32,7 +32,7 @@ system:
32
32
33
33
1 . The ` gpio ` command. This provides the core functionality for GPIO Utils and
34
34
is useful in its own right.
35
- 2 . The ` gpio ` init script. This init script can be integrated into a target
35
+ 2 . The ` gpio ` init script/systemd service . This can be integrated into a target
36
36
system and will ensure that configured GPIOs get exported on system startup
37
37
(The GPIO command searches for ` /etc/gpio.toml ` and ` /etc/gpio.d/*.toml `
38
38
configs)
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ fn main() {
26
26
27
27
// gpio poll
28
28
. subcommand ( SubCommand :: with_name ( "poll" )
29
- . about ( "Wait for an event to happen on an GPIO Input" )
29
+ . about ( "Wait for an event to happen on a GPIO Input" )
30
30
. arg ( Arg :: with_name ( "pin" )
31
31
. help ( "The pin name (or number)" )
32
32
. index ( 1 )
@@ -70,7 +70,7 @@ fn main() {
70
70
71
71
// gpio status
72
72
. subcommand ( SubCommand :: with_name ( "status" )
73
- . about ( "Output status of all configured GPIOs" )
73
+ . about ( "Output status of a GPIO or all GPIOs if no pin is specified " )
74
74
. arg ( Arg :: with_name ( "pin" )
75
75
. help ( "The pin name (or number)" )
76
76
. index ( 1 )
You can’t perform that action at this time.
0 commit comments