-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,23 @@ | ||
# dbus-recorder | ||
Can record and replay data from D-Bus. Used by the CCGX demo function | ||
Can record and replay data from D-Bus. Used by the Venus OS demo function. | ||
|
||
Besides the recorder & replay function, the repo also holds the set of recordings | ||
which is played when enabling the demo function on a Venus device. To run them | ||
yourself, use `play.sh`. | ||
|
||
For a full list options, see the help: | ||
|
||
``` | ||
$ ./dbusrecorder.py --help | ||
Usage: ./dbusrecorder [OPTION] | ||
-h, --help display this help and exit | ||
-c enable tracing to console (standard off) | ||
-t enable tracing to file (standard off) | ||
-d set tracing level to debug (standard info) | ||
-v, --version returns the program version | ||
--record record specified dbus-service to specified file | ||
--duration time duration recording in seconds (0 is infinite) | ||
-p play specified file | ||
--file filename to record or simulate from | ||
--banner shows program-name and version at startup | ||
``` |