642 lines
19 KiB
C
642 lines
19 KiB
C
/*
|
|
* This file is part of Cleanflight.
|
|
*
|
|
* Cleanflight is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Cleanflight is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* Cleanflight (or Baseflight): original
|
|
* jflyper: Mono-timer and single-wire half-duplex
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "platform.h"
|
|
|
|
#if defined(USE_SOFTSERIAL1) || defined(USE_SOFTSERIAL2)
|
|
|
|
#include "build/build_config.h"
|
|
#include "build/atomic.h"
|
|
|
|
#include "build/debug.h"
|
|
|
|
#include "common/utils.h"
|
|
|
|
#include "drivers/nvic.h"
|
|
#include "drivers/io.h"
|
|
#include "timer.h"
|
|
|
|
#include "serial.h"
|
|
#include "serial_softserial.h"
|
|
|
|
#include "fc/config.h" //!!TODO remove this dependency
|
|
|
|
#define RX_TOTAL_BITS 10
|
|
#define TX_TOTAL_BITS 10
|
|
|
|
#if defined(USE_SOFTSERIAL1) && defined(USE_SOFTSERIAL2)
|
|
#define MAX_SOFTSERIAL_PORTS 2
|
|
#else
|
|
#define MAX_SOFTSERIAL_PORTS 1
|
|
#endif
|
|
|
|
typedef enum {
|
|
TIMER_MODE_SINGLE,
|
|
TIMER_MODE_DUAL,
|
|
} timerMode_e;
|
|
|
|
#define ICPOLARITY_RISING true
|
|
#define ICPOLARITY_FALLING false
|
|
|
|
typedef struct softSerial_s {
|
|
serialPort_t port;
|
|
|
|
IO_t rxIO;
|
|
IO_t txIO;
|
|
|
|
const timerHardware_t *timerHardware;
|
|
#ifdef USE_HAL_DRIVER
|
|
const TIM_HandleTypeDef *timerHandle;
|
|
#endif
|
|
const timerHardware_t *exTimerHardware;
|
|
|
|
volatile uint8_t rxBuffer[SOFTSERIAL_BUFFER_SIZE];
|
|
volatile uint8_t txBuffer[SOFTSERIAL_BUFFER_SIZE];
|
|
|
|
uint8_t isSearchingForStartBit;
|
|
uint8_t rxBitIndex;
|
|
uint8_t rxLastLeadingEdgeAtBitIndex;
|
|
uint8_t rxEdge;
|
|
uint8_t rxActive;
|
|
|
|
uint8_t isTransmittingData;
|
|
int8_t bitsLeftToTransmit;
|
|
|
|
uint16_t internalTxBuffer; // includes start and stop bits
|
|
uint16_t internalRxBuffer; // includes start and stop bits
|
|
|
|
uint16_t transmissionErrors;
|
|
uint16_t receiveErrors;
|
|
|
|
uint8_t softSerialPortIndex;
|
|
timerMode_e timerMode;
|
|
|
|
timerOvrHandlerRec_t overCb;
|
|
timerCCHandlerRec_t edgeCb;
|
|
} softSerial_t;
|
|
|
|
static const struct serialPortVTable softSerialVTable; // Forward
|
|
|
|
static softSerial_t softSerialPorts[MAX_SOFTSERIAL_PORTS];
|
|
|
|
void onSerialTimerOverflow(timerOvrHandlerRec_t *cbRec, captureCompare_t capture);
|
|
void onSerialRxPinChange(timerCCHandlerRec_t *cbRec, captureCompare_t capture);
|
|
|
|
static void setTxSignal(softSerial_t *softSerial, uint8_t state)
|
|
{
|
|
if (softSerial->port.options & SERIAL_INVERTED) {
|
|
state = !state;
|
|
}
|
|
|
|
if (state) {
|
|
IOHi(softSerial->txIO);
|
|
} else {
|
|
IOLo(softSerial->txIO);
|
|
}
|
|
}
|
|
|
|
static void serialEnableCC(softSerial_t *softSerial)
|
|
{
|
|
#ifdef USE_HAL_DRIVER
|
|
TIM_CCxChannelCmd(softSerial->timerHardware->tim, softSerial->timerHardware->channel, TIM_CCx_ENABLE);
|
|
#else
|
|
TIM_CCxCmd(softSerial->timerHardware->tim, softSerial->timerHardware->channel, TIM_CCx_Enable);
|
|
#endif
|
|
}
|
|
|
|
static void serialInputPortActivate(softSerial_t *softSerial)
|
|
{
|
|
if (softSerial->port.options & SERIAL_INVERTED) {
|
|
#ifdef STM32F1
|
|
IOConfigGPIO(softSerial->rxIO, IOCFG_IPD);
|
|
#elif defined(STM32F7)
|
|
IOConfigGPIOAF(softSerial->rxIO, IOCFG_AF_PP_PD, softSerial->timerHardware->alternateFunction);
|
|
#else
|
|
IOConfigGPIO(softSerial->rxIO, IOCFG_AF_PP_PD);
|
|
#endif
|
|
} else {
|
|
#ifdef STM32F1
|
|
IOConfigGPIO(softSerial->rxIO, IOCFG_IPU);
|
|
#elif defined(STM32F7)
|
|
IOConfigGPIOAF(softSerial->rxIO, IOCFG_AF_PP_UP, softSerial->timerHardware->alternateFunction);
|
|
#else
|
|
IOConfigGPIO(softSerial->rxIO, IOCFG_AF_PP_UP);
|
|
#endif
|
|
}
|
|
|
|
softSerial->rxActive = true;
|
|
softSerial->isSearchingForStartBit = true;
|
|
softSerial->rxBitIndex = 0;
|
|
|
|
// Enable input capture
|
|
|
|
serialEnableCC(softSerial);
|
|
}
|
|
|
|
static void serialInputPortDeActivate(softSerial_t *softSerial)
|
|
{
|
|
// Disable input capture
|
|
|
|
#ifdef USE_HAL_DRIVER
|
|
TIM_CCxChannelCmd(softSerial->timerHardware->tim, softSerial->timerHardware->channel, TIM_CCx_DISABLE);
|
|
#else
|
|
TIM_CCxCmd(softSerial->timerHardware->tim, softSerial->timerHardware->channel, TIM_CCx_Disable);
|
|
#endif
|
|
|
|
#ifdef STM32F7
|
|
IOConfigGPIOAF(softSerial->rxIO, IOCFG_IN_FLOATING, softSerial->timerHardware->alternateFunction);
|
|
#else
|
|
IOConfigGPIO(softSerial->rxIO, IOCFG_IN_FLOATING);
|
|
#endif
|
|
softSerial->rxActive = false;
|
|
}
|
|
|
|
static void serialOutputPortActivate(softSerial_t *softSerial)
|
|
{
|
|
#ifdef STM32F7
|
|
if (softSerial->exTimerHardware)
|
|
IOConfigGPIOAF(softSerial->txIO, IOCFG_OUT_PP, softSerial->exTimerHardware->alternateFunction);
|
|
else
|
|
IOConfigGPIO(softSerial->txIO, IOCFG_OUT_PP);
|
|
#else
|
|
IOConfigGPIO(softSerial->txIO, IOCFG_OUT_PP);
|
|
#endif
|
|
}
|
|
|
|
static void serialOutputPortDeActivate(softSerial_t *softSerial)
|
|
{
|
|
#ifdef STM32F7
|
|
if (softSerial->exTimerHardware)
|
|
IOConfigGPIOAF(softSerial->txIO, IOCFG_IN_FLOATING, softSerial->exTimerHardware->alternateFunction);
|
|
else
|
|
IOConfigGPIO(softSerial->txIO, IOCFG_IN_FLOATING);
|
|
#else
|
|
IOConfigGPIO(softSerial->txIO, IOCFG_IN_FLOATING);
|
|
#endif
|
|
}
|
|
|
|
static bool isTimerPeriodTooLarge(uint32_t timerPeriod)
|
|
{
|
|
return timerPeriod > 0xFFFF;
|
|
}
|
|
|
|
static void serialTimerConfigureTimebase(const timerHardware_t *timerHardwarePtr, uint32_t baud)
|
|
{
|
|
uint32_t baseClock = timerClock(timerHardwarePtr->tim);
|
|
uint32_t clock = baseClock;
|
|
uint32_t timerPeriod;
|
|
|
|
do {
|
|
timerPeriod = clock / baud;
|
|
if (isTimerPeriodTooLarge(timerPeriod)) {
|
|
if (clock > 1) {
|
|
clock = clock / 2; // this is wrong - mhz stays the same ... This will double baudrate until ok (but minimum baudrate is < 1200)
|
|
} else {
|
|
// TODO unable to continue, unable to determine clock and timerPeriods for the given baud
|
|
}
|
|
|
|
}
|
|
} while (isTimerPeriodTooLarge(timerPeriod));
|
|
|
|
timerConfigure(timerHardwarePtr, timerPeriod, baseClock);
|
|
}
|
|
|
|
static void resetBuffers(softSerial_t *softSerial)
|
|
{
|
|
softSerial->port.rxBufferSize = SOFTSERIAL_BUFFER_SIZE;
|
|
softSerial->port.rxBuffer = softSerial->rxBuffer;
|
|
softSerial->port.rxBufferTail = 0;
|
|
softSerial->port.rxBufferHead = 0;
|
|
|
|
softSerial->port.txBuffer = softSerial->txBuffer;
|
|
softSerial->port.txBufferSize = SOFTSERIAL_BUFFER_SIZE;
|
|
softSerial->port.txBufferTail = 0;
|
|
softSerial->port.txBufferHead = 0;
|
|
}
|
|
|
|
serialPort_t *openSoftSerial(softSerialPortIndex_e portIndex, serialReceiveCallbackPtr rxCallback, uint32_t baud, portMode_t mode, portOptions_t options)
|
|
{
|
|
softSerial_t *softSerial = &(softSerialPorts[portIndex]);
|
|
|
|
int pinCfgIndex = portIndex + RESOURCE_SOFT_OFFSET;
|
|
|
|
ioTag_t tagRx = serialPinConfig()->ioTagRx[pinCfgIndex];
|
|
ioTag_t tagTx = serialPinConfig()->ioTagTx[pinCfgIndex];
|
|
|
|
const timerHardware_t *timerRx = timerGetByTag(tagRx, TIM_USE_ANY);
|
|
const timerHardware_t *timerTx = timerGetByTag(tagTx, TIM_USE_ANY);
|
|
|
|
IO_t rxIO = IOGetByTag(tagRx);
|
|
IO_t txIO = IOGetByTag(tagTx);
|
|
|
|
if (options & SERIAL_BIDIR) {
|
|
// If RX and TX pins are both assigned, we CAN use either with a timer.
|
|
// However, for consistency with hardware UARTs, we only use TX pin,
|
|
// and this pin must have a timer.
|
|
if (!timerTx)
|
|
return NULL;
|
|
|
|
softSerial->timerHardware = timerTx;
|
|
softSerial->txIO = txIO;
|
|
softSerial->rxIO = txIO;
|
|
IOInit(txIO, OWNER_SERIAL_TX, RESOURCE_INDEX(portIndex + RESOURCE_SOFT_OFFSET));
|
|
} else {
|
|
if (mode & MODE_RX) {
|
|
// Need a pin & a timer on RX
|
|
if (!(tagRx && timerRx))
|
|
return NULL;
|
|
|
|
softSerial->rxIO = rxIO;
|
|
softSerial->timerHardware = timerRx;
|
|
IOInit(rxIO, OWNER_SERIAL_RX, RESOURCE_INDEX(portIndex + RESOURCE_SOFT_OFFSET));
|
|
}
|
|
|
|
if (mode & MODE_TX) {
|
|
// Need a pin on TX
|
|
if (!tagTx)
|
|
return NULL;
|
|
|
|
softSerial->txIO = txIO;
|
|
|
|
if (!(mode & MODE_RX)) {
|
|
// TX Simplex, must have a timer
|
|
if (!timerTx)
|
|
return NULL;
|
|
softSerial->timerHardware = timerTx;
|
|
} else {
|
|
// Duplex
|
|
softSerial->exTimerHardware = timerTx;
|
|
}
|
|
IOInit(txIO, OWNER_SERIAL_TX, RESOURCE_INDEX(portIndex + RESOURCE_SOFT_OFFSET));
|
|
}
|
|
}
|
|
|
|
softSerial->port.vTable = &softSerialVTable;
|
|
softSerial->port.baudRate = baud;
|
|
softSerial->port.mode = mode;
|
|
softSerial->port.options = options;
|
|
softSerial->port.rxCallback = rxCallback;
|
|
|
|
resetBuffers(softSerial);
|
|
|
|
softSerial->softSerialPortIndex = portIndex;
|
|
|
|
softSerial->transmissionErrors = 0;
|
|
softSerial->receiveErrors = 0;
|
|
|
|
softSerial->rxActive = false;
|
|
softSerial->isTransmittingData = false;
|
|
|
|
// Configure master timer (on RX); time base and input capture
|
|
|
|
serialTimerConfigureTimebase(softSerial->timerHardware, baud);
|
|
timerChConfigIC(softSerial->timerHardware, (options & SERIAL_INVERTED) ? ICPOLARITY_RISING : ICPOLARITY_FALLING, 0);
|
|
|
|
// Initialize callbacks
|
|
timerChCCHandlerInit(&softSerial->edgeCb, onSerialRxPinChange);
|
|
timerChOvrHandlerInit(&softSerial->overCb, onSerialTimerOverflow);
|
|
|
|
// Configure bit clock interrupt & handler.
|
|
// If we have an extra timer (on TX), it is initialized and configured
|
|
// for overflow interrupt.
|
|
// Receiver input capture is configured when input is activated.
|
|
|
|
if ((mode & MODE_TX) && softSerial->exTimerHardware && softSerial->exTimerHardware->tim != softSerial->timerHardware->tim) {
|
|
softSerial->timerMode = TIMER_MODE_DUAL;
|
|
serialTimerConfigureTimebase(softSerial->exTimerHardware, baud);
|
|
timerChConfigCallbacks(softSerial->exTimerHardware, NULL, &softSerial->overCb);
|
|
timerChConfigCallbacks(softSerial->timerHardware, &softSerial->edgeCb, NULL);
|
|
} else {
|
|
softSerial->timerMode = TIMER_MODE_SINGLE;
|
|
timerChConfigCallbacks(softSerial->timerHardware, &softSerial->edgeCb, &softSerial->overCb);
|
|
}
|
|
|
|
#ifdef USE_HAL_DRIVER
|
|
softSerial->timerHandle = timerFindTimerHandle(softSerial->timerHardware->tim);
|
|
#endif
|
|
|
|
if (!(options & SERIAL_BIDIR)) {
|
|
serialOutputPortActivate(softSerial);
|
|
setTxSignal(softSerial, ENABLE);
|
|
}
|
|
|
|
serialInputPortActivate(softSerial);
|
|
|
|
return &softSerial->port;
|
|
}
|
|
|
|
|
|
/*
|
|
* Serial Engine
|
|
*/
|
|
|
|
void processTxState(softSerial_t *softSerial)
|
|
{
|
|
uint8_t mask;
|
|
|
|
if (!softSerial->isTransmittingData) {
|
|
if (isSoftSerialTransmitBufferEmpty((serialPort_t *)softSerial)) {
|
|
// Transmit buffer empty.
|
|
// Start listening if not already in if half-duplex
|
|
if (!softSerial->rxActive && softSerial->port.options & SERIAL_BIDIR) {
|
|
serialOutputPortDeActivate(softSerial);
|
|
serialInputPortActivate(softSerial);
|
|
}
|
|
return;
|
|
}
|
|
|
|
// data to send
|
|
uint8_t byteToSend = softSerial->port.txBuffer[softSerial->port.txBufferTail++];
|
|
if (softSerial->port.txBufferTail >= softSerial->port.txBufferSize) {
|
|
softSerial->port.txBufferTail = 0;
|
|
}
|
|
|
|
// build internal buffer, MSB = Stop Bit (1) + data bits (MSB to LSB) + start bit(0) LSB
|
|
softSerial->internalTxBuffer = (1 << (TX_TOTAL_BITS - 1)) | (byteToSend << 1);
|
|
softSerial->bitsLeftToTransmit = TX_TOTAL_BITS;
|
|
softSerial->isTransmittingData = true;
|
|
|
|
if (softSerial->rxActive && (softSerial->port.options & SERIAL_BIDIR)) {
|
|
// Half-duplex: Deactivate receiver, activate transmitter
|
|
serialInputPortDeActivate(softSerial);
|
|
serialOutputPortActivate(softSerial);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if (softSerial->bitsLeftToTransmit) {
|
|
mask = softSerial->internalTxBuffer & 1;
|
|
softSerial->internalTxBuffer >>= 1;
|
|
|
|
setTxSignal(softSerial, mask);
|
|
softSerial->bitsLeftToTransmit--;
|
|
return;
|
|
}
|
|
|
|
softSerial->isTransmittingData = false;
|
|
}
|
|
|
|
enum {
|
|
TRAILING,
|
|
LEADING
|
|
};
|
|
|
|
void applyChangedBits(softSerial_t *softSerial)
|
|
{
|
|
if (softSerial->rxEdge == TRAILING) {
|
|
uint8_t bitToSet;
|
|
for (bitToSet = softSerial->rxLastLeadingEdgeAtBitIndex; bitToSet < softSerial->rxBitIndex; bitToSet++) {
|
|
softSerial->internalRxBuffer |= 1 << bitToSet;
|
|
}
|
|
}
|
|
}
|
|
|
|
void prepareForNextRxByte(softSerial_t *softSerial)
|
|
{
|
|
// prepare for next byte
|
|
softSerial->rxBitIndex = 0;
|
|
softSerial->isSearchingForStartBit = true;
|
|
if (softSerial->rxEdge == LEADING) {
|
|
softSerial->rxEdge = TRAILING;
|
|
timerChConfigIC(softSerial->timerHardware, (softSerial->port.options & SERIAL_INVERTED) ? ICPOLARITY_RISING : ICPOLARITY_FALLING, 0);
|
|
serialEnableCC(softSerial);
|
|
}
|
|
}
|
|
|
|
#define STOP_BIT_MASK (1 << 0)
|
|
#define START_BIT_MASK (1 << (RX_TOTAL_BITS - 1))
|
|
|
|
void extractAndStoreRxByte(softSerial_t *softSerial)
|
|
{
|
|
if ((softSerial->port.mode & MODE_RX) == 0) {
|
|
return;
|
|
}
|
|
|
|
uint8_t haveStartBit = (softSerial->internalRxBuffer & START_BIT_MASK) == 0;
|
|
uint8_t haveStopBit = (softSerial->internalRxBuffer & STOP_BIT_MASK) == 1;
|
|
|
|
if (!haveStartBit || !haveStopBit) {
|
|
softSerial->receiveErrors++;
|
|
return;
|
|
}
|
|
|
|
uint8_t rxByte = (softSerial->internalRxBuffer >> 1) & 0xFF;
|
|
|
|
if (softSerial->port.rxCallback) {
|
|
softSerial->port.rxCallback(rxByte);
|
|
} else {
|
|
softSerial->port.rxBuffer[softSerial->port.rxBufferHead] = rxByte;
|
|
softSerial->port.rxBufferHead = (softSerial->port.rxBufferHead + 1) % softSerial->port.rxBufferSize;
|
|
}
|
|
}
|
|
|
|
void processRxState(softSerial_t *softSerial)
|
|
{
|
|
if (softSerial->isSearchingForStartBit) {
|
|
return;
|
|
}
|
|
|
|
softSerial->rxBitIndex++;
|
|
|
|
if (softSerial->rxBitIndex == RX_TOTAL_BITS - 1) {
|
|
applyChangedBits(softSerial);
|
|
return;
|
|
}
|
|
|
|
if (softSerial->rxBitIndex == RX_TOTAL_BITS) {
|
|
|
|
if (softSerial->rxEdge == TRAILING) {
|
|
softSerial->internalRxBuffer |= STOP_BIT_MASK;
|
|
}
|
|
|
|
extractAndStoreRxByte(softSerial);
|
|
prepareForNextRxByte(softSerial);
|
|
}
|
|
}
|
|
|
|
void onSerialTimerOverflow(timerOvrHandlerRec_t *cbRec, captureCompare_t capture)
|
|
{
|
|
UNUSED(capture);
|
|
softSerial_t *self = container_of(cbRec, softSerial_t, overCb);
|
|
|
|
if (self->port.mode & MODE_TX)
|
|
processTxState(self);
|
|
|
|
if (self->port.mode & MODE_RX)
|
|
processRxState(self);
|
|
}
|
|
|
|
void onSerialRxPinChange(timerCCHandlerRec_t *cbRec, captureCompare_t capture)
|
|
{
|
|
UNUSED(capture);
|
|
|
|
softSerial_t *self = container_of(cbRec, softSerial_t, edgeCb);
|
|
bool inverted = self->port.options & SERIAL_INVERTED;
|
|
|
|
if ((self->port.mode & MODE_RX) == 0) {
|
|
return;
|
|
}
|
|
|
|
if (self->isSearchingForStartBit) {
|
|
// Synchronize the bit timing so that it will interrupt at the center
|
|
// of the bit period.
|
|
|
|
#ifdef USE_HAL_DRIVER
|
|
__HAL_TIM_SetCounter(self->timerHandle, __HAL_TIM_GetAutoreload(self->timerHandle) / 2);
|
|
#else
|
|
TIM_SetCounter(self->timerHardware->tim, self->timerHardware->tim->ARR / 2);
|
|
#endif
|
|
|
|
// For a mono-timer full duplex configuration, this may clobber the
|
|
// transmission because the next callback to the onSerialTimerOverflow
|
|
// will happen too early causing transmission errors.
|
|
// For a dual-timer configuration, there is no problem.
|
|
|
|
if ((self->timerMode != TIMER_MODE_DUAL) && self->isTransmittingData) {
|
|
self->transmissionErrors++;
|
|
}
|
|
|
|
timerChConfigIC(self->timerHardware, inverted ? ICPOLARITY_FALLING : ICPOLARITY_RISING, 0);
|
|
#ifdef STM32F7
|
|
serialEnableCC(self);
|
|
#endif
|
|
self->rxEdge = LEADING;
|
|
|
|
self->rxBitIndex = 0;
|
|
self->rxLastLeadingEdgeAtBitIndex = 0;
|
|
self->internalRxBuffer = 0;
|
|
self->isSearchingForStartBit = false;
|
|
return;
|
|
}
|
|
|
|
if (self->rxEdge == LEADING) {
|
|
self->rxLastLeadingEdgeAtBitIndex = self->rxBitIndex;
|
|
}
|
|
|
|
applyChangedBits(self);
|
|
|
|
if (self->rxEdge == TRAILING) {
|
|
self->rxEdge = LEADING;
|
|
timerChConfigIC(self->timerHardware, inverted ? ICPOLARITY_FALLING : ICPOLARITY_RISING, 0);
|
|
} else {
|
|
self->rxEdge = TRAILING;
|
|
timerChConfigIC(self->timerHardware, inverted ? ICPOLARITY_RISING : ICPOLARITY_FALLING, 0);
|
|
}
|
|
#ifdef STM32F7
|
|
serialEnableCC(self);
|
|
#endif
|
|
}
|
|
|
|
|
|
/*
|
|
* Standard serial driver API
|
|
*/
|
|
|
|
uint32_t softSerialRxBytesWaiting(const serialPort_t *instance)
|
|
{
|
|
if ((instance->mode & MODE_RX) == 0) {
|
|
return 0;
|
|
}
|
|
|
|
softSerial_t *s = (softSerial_t *)instance;
|
|
|
|
return (s->port.rxBufferHead - s->port.rxBufferTail) & (s->port.rxBufferSize - 1);
|
|
}
|
|
|
|
uint32_t softSerialTxBytesFree(const serialPort_t *instance)
|
|
{
|
|
if ((instance->mode & MODE_TX) == 0) {
|
|
return 0;
|
|
}
|
|
|
|
softSerial_t *s = (softSerial_t *)instance;
|
|
|
|
uint8_t bytesUsed = (s->port.txBufferHead - s->port.txBufferTail) & (s->port.txBufferSize - 1);
|
|
|
|
return (s->port.txBufferSize - 1) - bytesUsed;
|
|
}
|
|
|
|
uint8_t softSerialReadByte(serialPort_t *instance)
|
|
{
|
|
uint8_t ch;
|
|
|
|
if ((instance->mode & MODE_RX) == 0) {
|
|
return 0;
|
|
}
|
|
|
|
if (softSerialRxBytesWaiting(instance) == 0) {
|
|
return 0;
|
|
}
|
|
|
|
ch = instance->rxBuffer[instance->rxBufferTail];
|
|
instance->rxBufferTail = (instance->rxBufferTail + 1) % instance->rxBufferSize;
|
|
return ch;
|
|
}
|
|
|
|
void softSerialWriteByte(serialPort_t *s, uint8_t ch)
|
|
{
|
|
if ((s->mode & MODE_TX) == 0) {
|
|
return;
|
|
}
|
|
|
|
s->txBuffer[s->txBufferHead] = ch;
|
|
s->txBufferHead = (s->txBufferHead + 1) % s->txBufferSize;
|
|
}
|
|
|
|
void softSerialSetBaudRate(serialPort_t *s, uint32_t baudRate)
|
|
{
|
|
softSerial_t *softSerial = (softSerial_t *)s;
|
|
|
|
softSerial->port.baudRate = baudRate;
|
|
|
|
serialTimerConfigureTimebase(softSerial->timerHardware, baudRate);
|
|
}
|
|
|
|
void softSerialSetMode(serialPort_t *instance, portMode_t mode)
|
|
{
|
|
instance->mode = mode;
|
|
}
|
|
|
|
bool isSoftSerialTransmitBufferEmpty(const serialPort_t *instance)
|
|
{
|
|
return instance->txBufferHead == instance->txBufferTail;
|
|
}
|
|
|
|
static const struct serialPortVTable softSerialVTable = {
|
|
.serialWrite = softSerialWriteByte,
|
|
.serialTotalRxWaiting = softSerialRxBytesWaiting,
|
|
.serialTotalTxFree = softSerialTxBytesFree,
|
|
.serialRead = softSerialReadByte,
|
|
.serialSetBaudRate = softSerialSetBaudRate,
|
|
.isSerialTransmitBufferEmpty = isSoftSerialTransmitBufferEmpty,
|
|
.setMode = softSerialSetMode,
|
|
.writeBuf = NULL,
|
|
.beginWrite = NULL,
|
|
.endWrite = NULL
|
|
};
|
|
|
|
#endif
|