Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added "Optional Features" section in Firmware config #227

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions STM32_Mini12864/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,26 @@ When compiling klipper, use the following options:
│ │ Clock Reference (Internal clock) ---> │ │
│ │ Communication interface (USB (on PA9/PA10)) ---> │ │
│ │ USB ids ---> │ │
│ │ Optional features (to reduce code size) ---> │ │
│ │ () GPIO pins to set at micro-controller startup │ │
│ │ │ │
│ └─────────────────────────────────────────────────────────────────────┘ │

Optional features (to reduce code size): (Klipper > v0.12)

│ ┌─────────────────────────────────────────────────────────────────────┐ │
│ │ [*] Support GPIO "bit-banging" devices │ │
│ │ [*] Support LCD devices │ │
│ │ [ ] Support external sensor devices │ │
│ │ [ ] Support lis2dw 3-axis accelerometer │ │
│ │ [ ] Support ldc1612 eddy current sensor │ │
│ │ [ ] Support HX711 and HX717 ADC chips │ │
│ │ [ ] Support ADS 1220 ADC chip │ │
│ │ [*] Support software based I2C "bit-banging" │ │
│ │ [*] Support software based SPI "bit-banging" │ │
│ │ │ │
│ └─────────────────────────────────────────────────────────────────────┘ │


Note that when switching between MCU architectures it is important to run "make clean" before a "make". This prevents any strange build errors.

Expand All @@ -51,6 +68,8 @@ Now flash the firmware

make flash FLASH_DEVICE=0483:df11

Ignore the errors thrown at the end.

Hit the reset button again. You are now running Klipper.

## Klipper Configuration
Expand Down