Arduino_Apollo3
Arduino_Apollo3 copied to clipboard
Arduino core to support the Apollo3 microcontroller from Ambiq Micro
Reproduce: float value = 21.5; char symbol = 'C'; Serial.printf(" Temp: %2.2f%c ", ret, symbol); will display : Temp: %2.2f Not Temp: 21.5C. Both the value and the symbol are...
[sandeepmistry](https://github.com/sandeepmistry) provides a great [DA16200-WiFi-Library-for-Arduino](https://github.com/ArmDeveloperEcosystem/DA16200-WiFi-Library-for-Arduino). In principle, this should work with the redboard Artemis, which I am using. it does not work though. I copy the error code below and...
Hi everyone, I was going through the BusVoltage arduino example, and I found that my Vss reading is never 0 - around 3 and 4 - I was wondering if...
I see that there have been quite some discussions about some issues that have been fixed, and that the fixes have been pushed to the core v2 in a recent...
I've never done it but if someone has the experience getting an platform into platformio I would love to work with them. Please let me know.
### Subject of the issue Trouble using [USB_Host_Shield_2.0 library](https://github.com/felis/USB_Host_Shield_2.0) ### Your workbench * RedBoard-Artemis-ATP w/ Sparkfun USB shield * Sparkfun board 1.2.1, Arduino 1.8.15 * Device is connected via shield...
### Subject of the issue use-after-free error in Wire library. The relevant methods are `Wire.begin`: https://github.com/sparkfun/Arduino_Apollo3/blob/4e24a0275c4b84b0f3162e811162899dae4a1c62/libraries/Wire/src/Wire.cpp#L14-L19 and `Wire.end`: https://github.com/sparkfun/Arduino_Apollo3/blob/4e24a0275c4b84b0f3162e811162899dae4a1c62/libraries/Wire/src/Wire.cpp#L31-L40 With the sequence: ``` Wire.begin(); Wire.end(); Wire.begin(); //I2C Activity ``` After...
The Arduino CLI and Upcoming Arduino IDE 2.0 support actual hardware debugging. They have support for a number of different JTAG and SWD Debuggers. It would be nice to add...
Hi All, Found a bug experimenting with the Sparkfun MMDLCB with v2 of the Apollo3 Core. Issue: Essentially, when disabling onboard LDOs, I measure an increase in current consumption, not...
@paulvha did a great work checking how well the OneWire protocol works on Artemis: https://github.com/paulvha/apollo3/tree/master/OneWire_on_uart . Conclusions -> the core V1 can work with OneWire given some fixes, the core...