Hi Everyone,
I am evaluating the CubeCell Board AB01 for a project (only LoRa, not LoraWAN) because it is really a cool hardware (also the best low power usage I have seen so far).
I am trying to integrate the board with the RadioLib library (https://github.com/jgromes/RadioLib) and having some issues.
First issue is with pinMode()
macro defined in Arduino.h
. It is conflicting with the RadioLib override of the same function. I commented out the pinMode macro in the Arduino.h
, it fixes the issue, but I want to make sure it is safe to do that and won’t break anything else.
Second issue is I am trying to find the function/macro to be used to convert digital pin number to interrupt pin number. On Arduino boards it is typically defined as digitalPinToInterrupt()
. But that doesn’t seem to be defined. What is the equivalent for ASR650x?
Thanks for the help,
A.