SARA-R5 Library / Asset Tracker Examples don't work with STM32 MicroMod

I am getting compile errors when i try to use the STM32 MicroMod with the SARA-R5 Library and Asset Tracker Examples. It seems as if support was never added for this mircomod. Is this intentional?

I wouldn’t say it’s intentional, we just never created any code for the STM32 for this product.

i added the following to “AssetTrackerPins.h” from https://github.com/sparkfun/MicroMod_As … e/main.zip

seems to have made it work w/ STM32 micromod

#if defined(ARDUINO_ARCH_STM32)
#define G7 -1
#define BATTVIN3 BATT_VIN
#define I2CINT INT
HardwareSerial Serial1(RX1, TX1);
#endif

Excellent work!