You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,9 @@ optional arguments:
59
59
```
60
60
61
61
## Configuration
62
-
The configuration file is of the YAML format. It is provided with a default configuration which you should change to suit your needs. You will need to reference in-line comments and external module documentation to fully understand all configuration options. Many configuration options can be overwritten by command line provided arguments.
62
+
The configuration file is of the YAML format. It is provided with a default configuration which you should change to suit your needs. You will need to reference in-line comments and external module documentation to fully understand all configuration options.
63
+
64
+
The configuration YAML will only be used if specified as a commadn line argument. Many indiviudal configuration options can be overwritten by command line provided arguments.
63
65
64
66
```yaml
65
67
# Configuration file for piPACT reference collection software
@@ -122,7 +124,7 @@ In this mode, the advertiser will run infinitely until a user commanded stop is
122
124
123
125
1. Start the advertiser. The addition of the `&` flag causes the command to be executed in the background. This allows the user to retain control of the command line which makes commanding the advertiser to stop much easier.
124
126
```console
125
-
pi@raspberrypi:~ $ sudo python3 pi_pact.py -a &
127
+
pi@raspberrypi:~ $ sudo python3 pi_pact.py -a --config pi_pact_config.yml &
126
128
[1] 2083
127
129
```
128
130
2. Observe the informational log messages.
@@ -142,7 +144,7 @@ In this mode, the advertiser will run either until the specified timeout or unti
142
144
143
145
1. Start the advertiser. The addition of the `&` flag causes the command to be executed in the background. This allows the user to retain control of the command line which makes commanding the advertiser to stop much easier.
144
146
```console
145
-
pi@raspberrypi:~ $ sudo python3 pi_pact.py -a --timeout 20 &
@@ -169,7 +171,7 @@ In this mode, the scanner will run infinitely until a user commanded stop is spe
169
171
170
172
1. Start the scanner. The addition of the `&` flag causes the command to be executed in the background. This allows the user to retain control of the command line which makes commanding the scanner to stop much easier.
@@ -189,7 +191,7 @@ In this mode, the scanner will run either until the specified timeout or until a
189
191
190
192
1. Start the scanner. The addition of the `&` flag causes the command to be executed in the background. This allows the user to retain control of the command line which makes commanding the scanner to stop much easier.
0 commit comments