Tircown / ERCF-easy-brd

GNU General Public License v3.0
184 stars 44 forks source link

Updated bossac installation process/steps documented in Readme.md #16

Open heymoe opened 1 year ago

heymoe commented 1 year ago

Changing the current install process for bossac from:

sudo apt install libreadline-dev libwxgtk3.0-*
git clone https://github.com/shumatech/BOSSA.git
cd BOSSA
make
sudo cp bin/bossac /usr/local/bin

to this:

git clone https://github.com/shumatech/BOSSA.git
cd BOSSA
make bossac
sudo cp bin/bossac /usr/local/bin

removes the need to install the libreadline-dev and libwgtk3.0-* OS packages that are only needed to compile the GUI BOSSA apps which are not needed to flash firmware to the Seeeduino XIAO board. The updated make command ("make bossac") will just compile the bossac command line binary and nothing else. This will also speed up the build/make process since the GUI BOSSA apps won't get built.

I followed the updated process and was successful at flashing my ERCF Easy Board with Klipper.

katanabladesman commented 3 months ago

Just wanted to say thank you for sharing this, this fixed it for me too.