Sander van de Bor

Results 9 comments of Sander van de Bor

I was never able to compile the BOSSA GUI, but I have a binary of BOSSAC for Arduino, supporting SAMD51 and SAME54. Let me know if that works for you...

I changed to Cygwin, but still have a similar issue. I added COMMON_CXXFLAGS=-std=c++11 in the makefile already per one of the previous posts. Mingw had no issues with the build...

I ended up just compiling the BOSSAC.EXE from Mattairtech in MSYS with MINGW32, just use the BOSSA/arduino/make_package.sh. Using BOSSAC in Arduino to upload sketches to a board with SAME54 now.

These are used on the ATMEGA4809 Arduino board to assign the An to analog inputs. The actual pin# is defined above, so A0 is pin 0 (AIN4), A10 is pin16...

Do you have an issue with the PORT interrupt not working when you are using the PIT interrupt? Here is an example where I used both: https://github.com/freemovers/teddy_bear/blob/main/main.c I can provide...

Here is some basic code that uses the Periodic Interrupt Timer (PIT) and a PORT interrupt. The timer is triggered every 4 seconds to turn off the LED while the...

I have not used the RTC for millis() before (the option in the Arduino Menu), but I just use the interrupt above. You can still use the default timer for...

@SpenceKonde, most peripherals can run in standby mode, but looks like the TCA and TCD are limited to idle sleep: ![image](https://user-images.githubusercontent.com/34286173/108749907-3fbb9680-74f5-11eb-85ad-b56d9312fac5.png)

Only the TCB you should be able to run in Standby, but you have to enable that option: ![image](https://user-images.githubusercontent.com/34286173/108805088-fb131800-7553-11eb-82a1-efade1c3e525.png) But you don't really need micros() running all the time for...