
* Use unsigned long when dealing with millis() and micros(). Although sizeof(uint32_t) == sizeof(unsigned long) on Arduino, this is not the case on 64-bit Linux, where sizeof(unsigned long) == sizeof(uint64_t). Most timestamp arithmetic and comparisons have been left alone, to reduce code churn. This is fine, as uint32_t is perfectly wide to store most timestamp deltas this library will deal with, and C will promote the integer rather than do a narrowing conversion. The real problem arises with narrowing conversions being done by assuming timestamps are 32-bit. No functional changes intended for platforms where sizeof(uint32_t) == sizeof(unsigned long) (so most 8/16/32-bit platforms). Signed-off-by: Elizabeth Myers <elizabeth.jennifer.myers@gmail.com> * Change most timestamps to use RadioLibTime_t. This makes it obvious what is and isn't a timestamp. Not everything has been converted; anything dealing with protocol and chip-level timestamps has been left alone on purpose, to make it clear that these functions do require 32-bit timestamps. No functional changes intended on platforms where sizeof(uint32_t) == sizeof(unsigned long). Signed-off-by: Elizabeth Myers <elizabeth.jennifer.myers@gmail.com> * Use uint32_t internally in getTimeOnAir. We need to not overflow the integers with the shifts and multiplications, so this is correct behaviour. Signed-off-by: Elizabeth Myers <elizabeth.jennifer.myers@gmail.com> --------- Signed-off-by: Elizabeth Myers <elizabeth.jennifer.myers@gmail.com>
200 lines
4.8 KiB
C++
200 lines
4.8 KiB
C++
#include "ArduinoHal.h"
|
|
|
|
#if defined(RADIOLIB_BUILD_ARDUINO)
|
|
|
|
ArduinoHal::ArduinoHal(): RadioLibHal(INPUT, OUTPUT, LOW, HIGH, RISING, FALLING), spi(&RADIOLIB_DEFAULT_SPI), initInterface(true) {}
|
|
|
|
ArduinoHal::ArduinoHal(SPIClass& spi, SPISettings spiSettings): RadioLibHal(INPUT, OUTPUT, LOW, HIGH, RISING, FALLING), spi(&spi), spiSettings(spiSettings) {}
|
|
|
|
void ArduinoHal::init() {
|
|
if(initInterface) {
|
|
spiBegin();
|
|
}
|
|
}
|
|
|
|
void ArduinoHal::term() {
|
|
if(initInterface) {
|
|
spiEnd();
|
|
}
|
|
}
|
|
|
|
void inline ArduinoHal::pinMode(uint32_t pin, uint32_t mode) {
|
|
if(pin == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
::pinMode(pin, RADIOLIB_ARDUINOHAL_PIN_MODE_CAST mode);
|
|
}
|
|
|
|
void inline ArduinoHal::digitalWrite(uint32_t pin, uint32_t value) {
|
|
if(pin == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
::digitalWrite(pin, RADIOLIB_ARDUINOHAL_PIN_STATUS_CAST value);
|
|
}
|
|
|
|
uint32_t inline ArduinoHal::digitalRead(uint32_t pin) {
|
|
if(pin == RADIOLIB_NC) {
|
|
return 0;
|
|
}
|
|
return(::digitalRead(pin));
|
|
}
|
|
|
|
void inline ArduinoHal::attachInterrupt(uint32_t interruptNum, void (*interruptCb)(void), uint32_t mode) {
|
|
if(interruptNum == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
::attachInterrupt(interruptNum, interruptCb, RADIOLIB_ARDUINOHAL_INTERRUPT_MODE_CAST mode);
|
|
}
|
|
|
|
void inline ArduinoHal::detachInterrupt(uint32_t interruptNum) {
|
|
if(interruptNum == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
::detachInterrupt(interruptNum);
|
|
}
|
|
|
|
void inline ArduinoHal::delay(RadioLibTime_t ms) {
|
|
#if !defined(RADIOLIB_CLOCK_DRIFT_MS)
|
|
::delay(ms);
|
|
#else
|
|
::delay(ms * 1000 / (1000 + RADIOLIB_CLOCK_DRIFT_MS));
|
|
#endif
|
|
}
|
|
|
|
void inline ArduinoHal::delayMicroseconds(RadioLibTime_t us) {
|
|
#if !defined(RADIOLIB_CLOCK_DRIFT_MS)
|
|
::delayMicroseconds(us);
|
|
#else
|
|
::delayMicroseconds(us * 1000 / (1000 + RADIOLIB_CLOCK_DRIFT_MS));
|
|
#endif
|
|
}
|
|
|
|
RadioLibTime_t inline ArduinoHal::millis() {
|
|
#if !defined(RADIOLIB_CLOCK_DRIFT_MS)
|
|
return(::millis());
|
|
#else
|
|
return(::millis() * 1000 / (1000 + RADIOLIB_CLOCK_DRIFT_MS));
|
|
#endif
|
|
}
|
|
|
|
RadioLibTime_t inline ArduinoHal::micros() {
|
|
#if !defined(RADIOLIB_CLOCK_DRIFT_MS)
|
|
return(::micros());
|
|
#else
|
|
return(::micros() * 1000 / (1000 + RADIOLIB_CLOCK_DRIFT_MS));
|
|
#endif
|
|
}
|
|
|
|
long inline ArduinoHal::pulseIn(uint32_t pin, uint32_t state, RadioLibTime_t timeout) {
|
|
if(pin == RADIOLIB_NC) {
|
|
return 0;
|
|
}
|
|
return(::pulseIn(pin, state, timeout));
|
|
}
|
|
|
|
void inline ArduinoHal::spiBegin() {
|
|
spi->begin();
|
|
}
|
|
|
|
void inline ArduinoHal::spiBeginTransaction() {
|
|
spi->beginTransaction(spiSettings);
|
|
}
|
|
|
|
void ArduinoHal::spiTransfer(uint8_t* out, size_t len, uint8_t* in) {
|
|
for(size_t i = 0; i < len; i++) {
|
|
in[i] = spi->transfer(out[i]);
|
|
}
|
|
}
|
|
|
|
void inline ArduinoHal::spiEndTransaction() {
|
|
spi->endTransaction();
|
|
}
|
|
|
|
void inline ArduinoHal::spiEnd() {
|
|
spi->end();
|
|
}
|
|
|
|
void inline ArduinoHal::tone(uint32_t pin, unsigned int frequency, RadioLibTime_t duration) {
|
|
#if !defined(RADIOLIB_TONE_UNSUPPORTED)
|
|
if(pin == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
::tone(pin, frequency, duration);
|
|
#elif defined(RADIOLIB_ESP32)
|
|
// ESP32 tone() emulation
|
|
(void)duration;
|
|
if(prev == -1) {
|
|
#if !defined(ESP_IDF_VERSION) || (ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5,0,0))
|
|
ledcAttachPin(pin, RADIOLIB_TONE_ESP32_CHANNEL);
|
|
#endif
|
|
}
|
|
if(prev != frequency) {
|
|
#if !defined(ESP_IDF_VERSION) || (ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5,0,0))
|
|
ledcWriteTone(RADIOLIB_TONE_ESP32_CHANNEL, frequency);
|
|
#else
|
|
ledcWriteTone(pin, frequency);
|
|
#endif
|
|
}
|
|
prev = frequency;
|
|
#elif defined(RADIOLIB_MBED_TONE_OVERRIDE)
|
|
// better tone for mbed OS boards
|
|
(void)duration;
|
|
if(!pwmPin) {
|
|
pwmPin = new mbed::PwmOut(digitalPinToPinName(pin));
|
|
}
|
|
pwmPin->period(1.0 / frequency);
|
|
pwmPin->write(0.5);
|
|
#else
|
|
(void)pin;
|
|
(void)frequency;
|
|
(void)duration;
|
|
#endif
|
|
}
|
|
|
|
void inline ArduinoHal::noTone(uint32_t pin) {
|
|
#if !defined(RADIOLIB_TONE_UNSUPPORTED) and defined(ARDUINO_ARCH_STM32)
|
|
if(pin == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
::noTone(pin, false);
|
|
#elif !defined(RADIOLIB_TONE_UNSUPPORTED)
|
|
if(pin == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
::noTone(pin);
|
|
#elif defined(RADIOLIB_ESP32)
|
|
if(pin == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
// ESP32 tone() emulation
|
|
#if !defined(ESP_IDF_VERSION) || (ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5,0,0))
|
|
ledcDetachPin(pin);
|
|
ledcWrite(RADIOLIB_TONE_ESP32_CHANNEL, 0);
|
|
#else
|
|
ledcDetach(pin);
|
|
ledcWrite(pin, 0);
|
|
#endif
|
|
prev = -1;
|
|
#elif defined(RADIOLIB_MBED_TONE_OVERRIDE)
|
|
if(pin == RADIOLIB_NC) {
|
|
return;
|
|
}
|
|
// better tone for mbed OS boards
|
|
(void)pin;
|
|
pwmPin->suspend();
|
|
#else
|
|
(void)pin;
|
|
#endif
|
|
}
|
|
|
|
void inline ArduinoHal::yield() {
|
|
#if !defined(RADIOLIB_YIELD_UNSUPPORTED)
|
|
::yield();
|
|
#endif
|
|
}
|
|
|
|
uint32_t inline ArduinoHal::pinToInterrupt(uint32_t pin) {
|
|
return(digitalPinToInterrupt(pin));
|
|
}
|
|
|
|
#endif
|