mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 12:25:20 +03:00
300 lines
8.2 KiB
C
300 lines
8.2 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/>.
|
|
*/
|
|
|
|
/*
|
|
* Authors:
|
|
* Dominic Clifton/Hydra - Various cleanups for Cleanflight
|
|
* Bill Nesbitt - Code from AutoQuad
|
|
* Hamasaki/Timecop - Initial baseflight code
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "platform.h"
|
|
|
|
#include "system.h"
|
|
#include "gpio.h"
|
|
#include "nvic.h"
|
|
|
|
#include "serial.h"
|
|
#include "serial_uart.h"
|
|
|
|
#ifdef USE_USART1
|
|
static uartPort_t uartPort1;
|
|
#endif
|
|
|
|
#ifdef USE_USART2
|
|
static uartPort_t uartPort2;
|
|
#endif
|
|
|
|
#ifdef USE_USART3
|
|
static uartPort_t uartPort3;
|
|
#endif
|
|
|
|
// Using RX DMA disables the use of receive callbacks
|
|
#define USE_USART1_RX_DMA
|
|
|
|
#if defined(CC3D) // FIXME move board specific code to target.h files.
|
|
#undef USE_USART1_RX_DMA
|
|
#endif
|
|
|
|
void uartStartTxDMA(uartPort_t *s);
|
|
|
|
void usartIrqCallback(uartPort_t *s)
|
|
{
|
|
uint16_t SR = s->USARTx->SR;
|
|
|
|
if (SR & USART_FLAG_RXNE && !s->rxDMAChannel) {
|
|
// If we registered a callback, pass crap there
|
|
if (s->port.callback) {
|
|
s->port.callback(s->USARTx->DR);
|
|
} else {
|
|
s->port.rxBuffer[s->port.rxBufferHead++] = s->USARTx->DR;
|
|
if (s->port.rxBufferHead >= s->port.rxBufferSize) {
|
|
s->port.rxBufferHead = 0;
|
|
}
|
|
}
|
|
}
|
|
if (SR & USART_FLAG_TXE) {
|
|
if (s->port.txBufferTail != s->port.txBufferHead) {
|
|
s->USARTx->DR = s->port.txBuffer[s->port.txBufferTail++];
|
|
if (s->port.txBufferTail >= s->port.txBufferSize) {
|
|
s->port.txBufferTail = 0;
|
|
}
|
|
} else {
|
|
USART_ITConfig(s->USARTx, USART_IT_TXE, DISABLE);
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifdef USE_USART1
|
|
// USART1 - Telemetry (RX/TX by DMA)
|
|
uartPort_t *serialUSART1(uint32_t baudRate, portMode_t mode)
|
|
{
|
|
uartPort_t *s;
|
|
static volatile uint8_t rx1Buffer[UART1_RX_BUFFER_SIZE];
|
|
static volatile uint8_t tx1Buffer[UART1_TX_BUFFER_SIZE];
|
|
gpio_config_t gpio;
|
|
NVIC_InitTypeDef NVIC_InitStructure;
|
|
|
|
s = &uartPort1;
|
|
s->port.vTable = uartVTable;
|
|
|
|
s->port.baudRate = baudRate;
|
|
|
|
s->port.rxBuffer = rx1Buffer;
|
|
s->port.txBuffer = tx1Buffer;
|
|
s->port.rxBufferSize = UART1_RX_BUFFER_SIZE;
|
|
s->port.txBufferSize = UART1_TX_BUFFER_SIZE;
|
|
|
|
s->USARTx = USART1;
|
|
|
|
|
|
#ifdef USE_USART1_RX_DMA
|
|
s->rxDMAChannel = DMA1_Channel5;
|
|
s->rxDMAPeripheralBaseAddr = (uint32_t)&s->USARTx->DR;
|
|
#endif
|
|
s->txDMAChannel = DMA1_Channel4;
|
|
s->txDMAPeripheralBaseAddr = (uint32_t)&s->USARTx->DR;
|
|
|
|
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
|
|
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);
|
|
|
|
// USART1_TX PA9
|
|
// USART1_RX PA10
|
|
gpio.speed = Speed_2MHz;
|
|
gpio.pin = Pin_9;
|
|
gpio.mode = Mode_AF_PP;
|
|
if (mode & MODE_TX)
|
|
gpioInit(GPIOA, &gpio);
|
|
gpio.mode = Mode_AF_OD;
|
|
if (mode & MODE_BIDIR)
|
|
gpioInit(GPIOA, &gpio);
|
|
gpio.pin = Pin_10;
|
|
gpio.mode = Mode_IPU;
|
|
if (mode & MODE_RX)
|
|
gpioInit(GPIOA, &gpio);
|
|
|
|
// DMA TX Interrupt
|
|
NVIC_InitStructure.NVIC_IRQChannel = DMA1_Channel4_IRQn;
|
|
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = NVIC_PRIORITY_BASE(NVIC_PRIO_SERIALUART1_TXDMA);
|
|
NVIC_InitStructure.NVIC_IRQChannelSubPriority = NVIC_PRIORITY_SUB(NVIC_PRIO_SERIALUART1_TXDMA);
|
|
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
|
|
NVIC_Init(&NVIC_InitStructure);
|
|
|
|
#ifndef USE_USART1_RX_DMA
|
|
// RX/TX Interrupt
|
|
NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
|
|
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = NVIC_PRIORITY_BASE(NVIC_PRIO_SERIALUART1);
|
|
NVIC_InitStructure.NVIC_IRQChannelSubPriority = NVIC_PRIORITY_SUB(NVIC_PRIO_SERIALUART1);
|
|
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
|
|
NVIC_Init(&NVIC_InitStructure);
|
|
#endif
|
|
|
|
return s;
|
|
}
|
|
|
|
|
|
// USART1 Tx DMA Handler
|
|
void DMA1_Channel4_IRQHandler(void)
|
|
{
|
|
uartPort_t *s = &uartPort1;
|
|
DMA_ClearITPendingBit(DMA1_IT_TC4);
|
|
DMA_Cmd(s->txDMAChannel, DISABLE);
|
|
|
|
if (s->port.txBufferHead != s->port.txBufferTail)
|
|
uartStartTxDMA(s);
|
|
else
|
|
s->txDMAEmpty = true;
|
|
}
|
|
|
|
// USART1 Rx/Tx IRQ Handler
|
|
void USART1_IRQHandler(void)
|
|
{
|
|
uartPort_t *s = &uartPort1;
|
|
usartIrqCallback(s);
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef USE_USART2
|
|
// USART2 - GPS or Spektrum or ?? (RX + TX by IRQ)
|
|
uartPort_t *serialUSART2(uint32_t baudRate, portMode_t mode)
|
|
{
|
|
uartPort_t *s;
|
|
static volatile uint8_t rx2Buffer[UART2_RX_BUFFER_SIZE];
|
|
static volatile uint8_t tx2Buffer[UART2_TX_BUFFER_SIZE];
|
|
gpio_config_t gpio;
|
|
NVIC_InitTypeDef NVIC_InitStructure;
|
|
|
|
s = &uartPort2;
|
|
s->port.vTable = uartVTable;
|
|
|
|
s->port.baudRate = baudRate;
|
|
|
|
s->port.rxBufferSize = UART2_RX_BUFFER_SIZE;
|
|
s->port.txBufferSize = UART2_TX_BUFFER_SIZE;
|
|
s->port.rxBuffer = rx2Buffer;
|
|
s->port.txBuffer = tx2Buffer;
|
|
|
|
s->USARTx = USART2;
|
|
|
|
s->txDMAPeripheralBaseAddr = (uint32_t)&s->USARTx->DR;
|
|
s->rxDMAPeripheralBaseAddr = (uint32_t)&s->USARTx->DR;
|
|
|
|
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
|
|
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);
|
|
|
|
// USART2_TX PA2
|
|
// USART2_RX PA3
|
|
gpio.speed = Speed_2MHz;
|
|
gpio.pin = Pin_2;
|
|
gpio.mode = Mode_AF_PP;
|
|
if (mode & MODE_TX)
|
|
gpioInit(GPIOA, &gpio);
|
|
gpio.mode = Mode_AF_OD;
|
|
if (mode & MODE_BIDIR)
|
|
gpioInit(GPIOA, &gpio);
|
|
gpio.pin = Pin_3;
|
|
gpio.mode = Mode_IPU;
|
|
if (mode & MODE_RX)
|
|
gpioInit(GPIOA, &gpio);
|
|
|
|
// RX/TX Interrupt
|
|
NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
|
|
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = NVIC_PRIORITY_BASE(NVIC_PRIO_SERIALUART2);
|
|
NVIC_InitStructure.NVIC_IRQChannelSubPriority = NVIC_PRIORITY_SUB(NVIC_PRIO_SERIALUART2);
|
|
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
|
|
NVIC_Init(&NVIC_InitStructure);
|
|
|
|
return s;
|
|
}
|
|
|
|
|
|
// USART2 Rx/Tx IRQ Handler
|
|
void USART2_IRQHandler(void)
|
|
{
|
|
uartPort_t *s = &uartPort2;
|
|
usartIrqCallback(s);
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef USE_USART3
|
|
// USART3
|
|
uartPort_t *serialUSART3(uint32_t baudRate, portMode_t mode)
|
|
{
|
|
uartPort_t *s;
|
|
static volatile uint8_t rx3Buffer[UART3_RX_BUFFER_SIZE];
|
|
static volatile uint8_t tx3Buffer[UART3_TX_BUFFER_SIZE];
|
|
gpio_config_t gpio;
|
|
NVIC_InitTypeDef NVIC_InitStructure;
|
|
|
|
s = &uartPort3;
|
|
s->port.vTable = uartVTable;
|
|
|
|
s->port.baudRate = baudRate;
|
|
|
|
s->port.rxBuffer = rx3Buffer;
|
|
s->port.txBuffer = tx3Buffer;
|
|
s->port.rxBufferSize = UART3_RX_BUFFER_SIZE;
|
|
s->port.txBufferSize = UART3_TX_BUFFER_SIZE;
|
|
|
|
s->USARTx = USART3;
|
|
|
|
s->txDMAPeripheralBaseAddr = (uint32_t)&s->USARTx->DR;
|
|
s->rxDMAPeripheralBaseAddr = (uint32_t)&s->USARTx->DR;
|
|
|
|
#ifdef USART3_APB1_PERIPHERALS
|
|
RCC_APB1PeriphClockCmd(USART3_APB1_PERIPHERALS, ENABLE);
|
|
#endif
|
|
#ifdef USART3_APB2_PERIPHERALS
|
|
RCC_APB2PeriphClockCmd(USART3_APB2_PERIPHERALS, ENABLE);
|
|
#endif
|
|
|
|
gpio.speed = Speed_2MHz;
|
|
gpio.pin = USART3_TX_PIN;
|
|
gpio.mode = Mode_AF_PP;
|
|
if (mode & MODE_TX)
|
|
gpioInit(USART3_GPIO, &gpio);
|
|
gpio.mode = Mode_AF_OD;
|
|
if (mode & MODE_BIDIR)
|
|
gpioInit(USART3_GPIO, &gpio);
|
|
gpio.pin = USART3_RX_PIN;
|
|
gpio.mode = Mode_IPU;
|
|
if (mode & MODE_RX)
|
|
gpioInit(USART3_GPIO, &gpio);
|
|
|
|
// RX/TX Interrupt
|
|
NVIC_InitStructure.NVIC_IRQChannel = USART3_IRQn;
|
|
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = NVIC_PRIORITY_BASE(NVIC_PRIO_SERIALUART3);
|
|
NVIC_InitStructure.NVIC_IRQChannelSubPriority = NVIC_PRIORITY_SUB(NVIC_PRIO_SERIALUART3);
|
|
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
|
|
NVIC_Init(&NVIC_InitStructure);
|
|
|
|
return s;
|
|
}
|
|
|
|
// USART2 Rx/Tx IRQ Handler
|
|
void USART3_IRQHandler(void)
|
|
{
|
|
uartPort_t *s = &uartPort3;
|
|
usartIrqCallback(s);
|
|
}
|
|
#endif
|