forked from commaai/openpilot
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add param to enable engagement with the white panda (commaai#127)
* add param to enable engagement with the white panda * add to readme and fix false to true * make opEdit executable on linux * add to releases * move features to separate file
- Loading branch information
Showing
6 changed files
with
34 additions
and
13 deletions.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# opEdit Features: | ||
- You can misspell parameter names and opEdit should be able to figure out which parameter you want. Ex. `cmra off` would be parsed as: `camera_offset` | ||
- You can also still enter the corresponding parameter index while choosing parameters to edit | ||
- Type `a` to add a parameter, `d` to delete a parameter, or `l` to toggle live tuning only mode | ||
- Shows a detailed description for each parameter once you choose it | ||
- Parameter value type restriction. Ensures a user cannot save an unsupported value type for any parameters, breaking the fork | ||
- Remembers which mode you were last in and initializes opEdit with that mode (live tuning or not) | ||
- Case insensitive boolean and NoneType entrance. Type `faLsE` to save `False (bool)`, etc | ||
- **Parameters marked with `(live!)` will have updates take affect within 3 seconds while driving! All other params will require a reboot of your EON/C2 to take effect.** | ||
|
||
## To run the opEdit parameter manager: | ||
```python | ||
cd /data/openpilot | ||
python op_edit.py | ||
``` | ||
|
||
**OR** | ||
|
||
```python | ||
cd /data/openpilot | ||
./op_edit.py | ||
``` |
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
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
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
Empty file.
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