Gaël Écorchard
Gaël Écorchard
Please find the logs attached! dev1 ``` Expected at char 012 Expected: 0000 00 00 f0 b0 5e 54 a4 00 00 00 06 07 01 30 00 01 0010...
I may have found a bug probably during preprocessing of an ino file by arduino-cmake. Excerpt (I cannot show the whole file): ``` cpp void loop() { if (true) {...
I try to compile firmwares for different boards in the same CMakeLists.txt. Here is an excerpt of it: ``` cmake register_hardware_platform(/home/gael/sketchbook/hardware/arbotix) set(ARDUINO_DEFAULT_BOARD arbotix) generate_arduino_firmware(commander SKETCH commander BOARD atmega328 ) ```...
Even when using `register_arduino_platform`, the bootloader search path is not the directory specified. This leads to this error on Ubuntu ``` /usr/share/arduino/hardware/arduino/bootloaders/atmega644p/ATmegaBOOT_644P.hex Missing bootloader image, not creating bootloader burn target...
`./build.sh --install --prefix=~/.local` fails with the error ``` tee: '~/.local/bin/bat-modules': No such file or directory ``` Copying manually `bin/bat-modules` to `~/.local/bin` does not help. Commit 0d9468e1cfb263026812decf5371750340e557d5.
I have a .desktop file with `Exec="/home/gael/.cache/cesnet-owncloud/03-tmp/AppImage/PrusaSlicer-2.2.0+linux-x64-202003211856.AppImage" %U` which dmenu-extended converts to ```json [ "PrusaSlicer AppImage", "\"/home/gael/.cache/cesnet-owncloud/03-tmp/AppImage/PrusaSlicer-2.2.0+linux-x64-202003211856.AppImage\"" ], ``` These extra double-quotes prevent the menu entry to work. Removing them...
Add update_bundle service to add one or more bundles. Add remove_bundle to remove one bundle identified by its name.
Hi, first of all, thanks for developing this project and trying and avoiding the Arduino "IDE". I'm trying to compile the Sketch `Blink.ino`: ``` cd /tmp mkdir act && cd...