Per Tillisch

Results 1081 comments of Per Tillisch

As I brought up in https://github.com/arduino-libraries/Mouse/pull/13#issuecomment-598643770: One thing to note is that this example already comes bundled with the Arduino IDE (and Arduino Web Editor) under **[File > Examples >...

I think it must be. I tried it both with and without the ATmega328 emulation enabled for both boards and I got the same result (Uno WiFi Rev2 always works,...

The CI didn't run on the PR because the repo is private, but you can see the jobs here: https://github.com/per1234/arduino-examples/actions/runs/239053006

Look closely at the commands you shared. You can see the option file argument right here in the command, _after_ the `-Og` flag: > ```text > @/home/zak/.arduino15/packages/arduino/hardware/mbed_portenta/4.1.1/variants/PORTENTA_H7_M7/cflags.txt > ``` Note...

> understand which flag gets accepted by gcc (the first it encounters, the last ? ) and add the -Os entry there It is the last: https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#:~:text=If%20you%20use%20multiple%20%2DO%20options%2C%20with%20or%20without%20level%20numbers%2C%20the%20last%20such%20option%20is%20the%20one%20that%20is%20effective. > If you...

Although it is very interesting, I would appreciate it if we can keep this discussion tightly focused on the original subject matter. You are welcome to continue the other conversations...

The problem still occurs using avr-gcc 7.3.0-atmel3.6.1-arduino5.

The Boards Manager JSON URL for the package that provides the staging version of Arduino AVR Boards with avr-gcc 7.3.0-atmel3.6.1-arduino5 has not been advertised publicly before that I've seen, so...

Duplicate of #10 See the discussion there for an explanation of why it is that way.

The `BOOTSZ` fuse is set for a 2 kB boot section on the Nano boards shipped by Arduino. So if you change the `upload.maximum_size` then you are allowing the application...