diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-24 20:15:57 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-11-24 20:21:13 -0500 |
commit | 982567a69a8b3a03306deb5bbf0d03d36b998737 (patch) | |
tree | 4d1d9f140460ef630a958411e25e6f75df3e5074 | |
parent | 86b074e1ee5a8c22dcdb4a877bc1298afcbe6aec (diff) | |
download | kutter-982567a69a8b3a03306deb5bbf0d03d36b998737.tar.gz kutter-982567a69a8b3a03306deb5bbf0d03d36b998737.tar.xz kutter-982567a69a8b3a03306deb5bbf0d03d36b998737.zip |
config: Rename avrsim.cfg to generic-simulavr.cfg
Rename the file to be more similar to the naming of other files.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | config/generic-simulavr.cfg (renamed from config/avrsim.cfg) | 11 | ||||
-rw-r--r-- | docs/Debugging.md | 2 |
2 files changed, 8 insertions, 5 deletions
diff --git a/config/avrsim.cfg b/config/generic-simulavr.cfg index 043595a9..db6e05e5 100644 --- a/config/avrsim.cfg +++ b/config/generic-simulavr.cfg @@ -1,7 +1,10 @@ -# Support for internal testing with the "simulavr" program. To use -# this config, compile the firmware for an AVR atmega644p, disable the -# AVR watchdog timer, set the MCU frequency to 20000000, and set the -# serial baud rate to 250000. +# This file contains example pin mappings for testing with the +# "simulavr" program. To use this config, compile the firmware for an +# AVR atmega644p, enable "low-level configuration options", and enable +# "simulavr software emulation". Further details are in +# docs/Debugging.md. + +# See the example.cfg file for a description of available parameters. [stepper_x] # Pins: PA5, PA4, PA1 diff --git a/docs/Debugging.md b/docs/Debugging.md index 605c288b..dfd04add 100644 --- a/docs/Debugging.md +++ b/docs/Debugging.md @@ -91,7 +91,7 @@ with Klippy, and send it to Klipper running in simulavr (see python virtual environment): ``` -~/klippy-env/bin/python ./klippy/klippy.py config/avrsim.cfg -i test.gcode -v +~/klippy-env/bin/python ./klippy/klippy.py config/generic-simulavr.cfg -i test.gcode -v ``` Using simulavr with gtkwave |