ArduinoCore-samd
ArduinoCore-samd copied to clipboard
Hello, recently bought 3 different models of xioa, rp2040, nrf51840 and samd21, the first two installed in arduino fine on my arm64 machine including the bossac dependency, but samd21 failed...
Inside [EnergySaving::enable_eic_wake](https://github.com/Seeed-Studio/ArduinoCore-samd/blame/3116a04e052e49eedbdbe149876739315a600e9c/libraries/EnergySaving/src/EnergySaving.cpp#L71), there is a switch/case that assigns the input pin number to a WAKEUPENx bit. This function mangles them up in a way that will never wake a Seeeduino...
Commit bee0a78a left behind some code fragment which causes a syntax error. The compiler error message is: ``` .../Seeeduino/hardware/samd/1.8.4/variants/XIAO_m0/variant.h:219:25: warning: extra tokens at end of #endif directive [-Wendif-labels] ``` The...
Hi, I'm trying to read the software version from peripheral device as a sanity check upon software startup and faced with very strange issue. I wrote a bare-bone code to...
The function `setPeriod()` sets the wrong register value. According to the [comment](https://github.com/Seeed-Studio/ArduinoCore-samd/blob/9e8beb1f8cb1d0a307a54dd5d4d7f60d0bb3bf39/libraries/TimerTC3/TimerTC3.cpp#L5), these timer library is inspired on the [khoih-prog/SAMD_TimerInterrupt](https://github.com/khoih-prog/SAMD_TimerInterrupt), which has the right code. For TC3: https://github.com/khoih-prog/SAMD_TimerInterrupt/blob/88c4a730ce3396cdf71f69936d24e6eb0d7f9b0a/src/SAMDTimerInterrupt.hpp#L424-L430 https://github.com/khoih-prog/SAMD_TimerInterrupt/blob/88c4a730ce3396cdf71f69936d24e6eb0d7f9b0a/src/SAMDTimerInterrupt.hpp#L724-L730 For...
Does the new version of the board 1.8.3/1.8.4 support both WiFi and tensorflowlite at the same time?
Observed symptoms: - When attempting to write from e.g. a Linux host to the (super adorable) Seeeduino XIAO, there is basically 0 buffer. The host write will block until the...
I am trying to use my XIAO to program an ESP32, but esptool.py requires flow control, it is expecting an FTDI chip. How can I achieve flow control (NAK, etc),...
I'm trying to use pwm() on TC4 (D6 on the Seeduino Xiao), but the duty cycle is being calculated incorrectly in wiring_pwm.cpp line 271: ` duty = mapResolution(duty, 10, 16);...