diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-08-14 11:46:35 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-09-20 12:45:00 -0400 |
commit | 3ccecc568dbfd505fe3bdc46b4d16bf7a4528996 (patch) | |
tree | 136120849523ef2e0fc5c98ed632d4e03cdf31e9 /config | |
parent | cee200e509f5cbd948617f287646f23f5f761fd7 (diff) | |
download | kutter-3ccecc568dbfd505fe3bdc46b4d16bf7a4528996.tar.gz kutter-3ccecc568dbfd505fe3bdc46b4d16bf7a4528996.tar.xz kutter-3ccecc568dbfd505fe3bdc46b4d16bf7a4528996.zip |
mcu: Initial support for multiple micro-controllers
Add initial support for controlling multiple independent
micro-controllers from a single Klippy host instance. Add basic
support for synchronizing the clocks of the additional mcus to the
main mcu's clock.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index b3091e77..935a3d52 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -42,6 +42,17 @@ # the fan is disabled. The default is 50 Celsius. +# Additional micro-controllers (one may define any number of sections +# with an "mcu" prefix). Additional micro-controllers introduce +# additional pins that may be configured as heaters, steppers, fans, +# etc.. For example, if an "[mcu extra_mcu]" section is introduced, +# then pins such as "extra_mcu:ar9" may then be used elsewhere in the +# config (where "ar9" is a hardware pin name or alias name on the +# given mcu). +#[mcu my_extra_mcu] +# See the "mcu" section in example.cfg for configuration parameters. + + # Statically configured digital output pins (one may define any number # of sections with a "static_digital_output" prefix). Pins configured # here will be setup as a GPIO output during MCU configuration. |