Arduino_Apollo3
Arduino_Apollo3 copied to clipboard
Arduino core to support the Apollo3 microcontroller from Ambiq Micro
### Working towards #14 - Support for PlatformIO I have been playing around using this repository as a framework to build with platformio, see [platform-apollo3blue](https://github.com/nigelb/platform-apollo3blue). To use this repo as...
Without interrupts() and noInterrupts() there is compilation error Arduino LMIC library, Hard to have the RF95 module get working
When in turbo mode, the time for things like sleep_until() are running 2x speed. such as: using namespace std::chrono_literals; rtos::ThisThread::sleep_until(5ms); only sleeps for 2.5ms. All works properly when NOT in...
Please update the documentation. I think it would be fair to specify what version of the Arduino IDE to use with the Artemis Apollo. I have tried the 1.8.12 as...
The servo library does not function on the Sparkfun Explorable board. Servos are verified to function correctly using analogeWrite, but issued writes from the Servo library simply do nothing. There...
Hi All :) I am playing with the SparkFun RedBoard Artemis Nano for my new tinyML book and I faced a problem when using the arm_mat_vec_mult_q15() function from the CMSIS-DSP...
I am trying to run [the basic BLE example](https://github.com/sparkfun/Arduino_Apollo3/tree/main/libraries/Apollo3/examples/Example11_BLEAdvertise) on [an Artemis ATP board](https://www.sparkfun.com/products/15442), but it won't compile. I am using version(s): - Arduino IDE v2.1.1 - ArduinoBLE v1.3.5 -...
Using RS485 with software serial at 19200 Sending 0xAA being received as 0xD5. Pulses on oscilloscope are fine. Sender: MicroMod (rx = G4, tx = G1) Receiver: RedBoard(rx =D2, tx...
Currently, to disable all pins except for the current pin were using for the interrupt the command is: ```C for (int x = 0 ; x < 50 ; x++)...
Hi, Currently LSBFIRST and MSBFIRST is interpreted as byte order when handling SPI transfers, and only used for transfer16 (swapping byte A, B -> B, A). Unfortunately I believe this...