rudetrooper / Octoprint-Chituboard

Added basic support chituboard based printers(Elegoo Mars, Anycubic Photon, Phrozen, etc.) to octoprint.
GNU Affero General Public License v3.0
81 stars 18 forks source link

Fixed a syntax error in line 65, Chituboard.sh #24

Closed mcdviii closed 2 years ago

mcdviii commented 2 years ago

Line 65 adds two arguments separated by a comma to /boot/config.txt. This was causing an issue where the OS would not accept any input after boot (OctoPrint server also failed to start).

I've fixed the issue & condensed enable_uart=1 into the same command. The echo -e flag tells echo to parse escaped characters. Each command in quotations is separated by a newline character.

mcdviii commented 2 years ago

Further research shows that the line as it was added in the original file was intended to be one line, with comma in place. Closing the PR.