mirror of https://github.com/markqvist/MMDVM.git
New pin definitions for serial port Nucleo-64 STM32F446RE board, Arduino header
parent
ed13addd3d
commit
1ce71bcd62
|
@ -543,7 +543,11 @@ void CIO::interrupt()
|
||||||
m_txBuffer.get(sample, control);
|
m_txBuffer.get(sample, control);
|
||||||
|
|
||||||
// Send the value to the DAC
|
// Send the value to the DAC
|
||||||
|
#if defined(STM32F4_NUCLEO) && defined(STM32F4_NUCLEO_ARDUINO_HEADER)
|
||||||
|
DAC_SetChannel2Data(DAC_Align_12b_R, sample);
|
||||||
|
#else
|
||||||
DAC_SetChannel1Data(DAC_Align_12b_R, sample);
|
DAC_SetChannel1Data(DAC_Align_12b_R, sample);
|
||||||
|
#endif
|
||||||
|
|
||||||
// Read value from ADC1 and ADC2
|
// Read value from ADC1 and ADC2
|
||||||
if ((ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC) == RESET)) {
|
if ((ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC) == RESET)) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2016 by Jim McLaughlin KI6ZUM
|
* Copyright (C) 2016 by Jim McLaughlin KI6ZUM
|
||||||
* Copyright (C) 2016 by Andy Uribe CA6JAU
|
* Copyright (C) 2016, 2017 by Andy Uribe CA6JAU
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -31,7 +31,8 @@ USART2 - TXD PA2 - RXD PA3 (Nucleo board)
|
||||||
USART3 - TXD PC10 - RXD PC11 (Discovery board)
|
USART3 - TXD PC10 - RXD PC11 (Discovery board)
|
||||||
|
|
||||||
- Serial repeater:
|
- Serial repeater:
|
||||||
UART5 - TXD PC12 - RXD PD2
|
USART1 - TXD PA9 - RXD PA10 (Nucleo with Arduino header)
|
||||||
|
UART5 - TXD PC12 - RXD PD2 (Discovery, Pi and Nucleo with Morpho header)
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -48,7 +49,7 @@ extern "C" {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ************* USART1 ***************** */
|
/* ************* USART1 ***************** */
|
||||||
#if defined(STM32F4_PI)
|
#if defined(STM32F4_PI) || (defined(STM32F4_NUCLEO) && defined(STM32F4_NUCLEO_ARDUINO_HEADER))
|
||||||
|
|
||||||
volatile uint32_t intcount1;
|
volatile uint32_t intcount1;
|
||||||
volatile uint8_t TXSerialfifo1[TX_SERIAL_FIFO_SIZE];
|
volatile uint8_t TXSerialfifo1[TX_SERIAL_FIFO_SIZE];
|
||||||
|
@ -612,6 +613,7 @@ void WriteUSART3(const uint8_t* data, uint16_t length)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* ************* UART5 ***************** */
|
/* ************* UART5 ***************** */
|
||||||
|
#if !(defined(STM32F4_NUCLEO) && defined(STM32F4_NUCLEO_ARDUINO_HEADER))
|
||||||
|
|
||||||
volatile uint32_t intcount5;
|
volatile uint32_t intcount5;
|
||||||
volatile uint8_t TXSerialfifo5[TX_SERIAL_FIFO_SIZE];
|
volatile uint8_t TXSerialfifo5[TX_SERIAL_FIFO_SIZE];
|
||||||
|
@ -800,6 +802,7 @@ void WriteUART5(const uint8_t* data, uint16_t length)
|
||||||
USART_ITConfig(UART5, USART_IT_TXE, ENABLE);
|
USART_ITConfig(UART5, USART_IT_TXE, ENABLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
/////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
void CSerialPort::beginInt(uint8_t n, int speed)
|
void CSerialPort::beginInt(uint8_t n, int speed)
|
||||||
|
@ -815,7 +818,11 @@ void CSerialPort::beginInt(uint8_t n, int speed)
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
case 3U:
|
case 3U:
|
||||||
|
#if defined(STM32F4_NUCLEO) && defined(STM32F4_NUCLEO_ARDUINO_HEADER)
|
||||||
|
InitUSART1(speed);
|
||||||
|
#else
|
||||||
InitUART5(speed);
|
InitUART5(speed);
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
@ -834,7 +841,11 @@ int CSerialPort::availableInt(uint8_t n)
|
||||||
return AvailUSART2();
|
return AvailUSART2();
|
||||||
#endif
|
#endif
|
||||||
case 3U:
|
case 3U:
|
||||||
|
#if defined(STM32F4_NUCLEO) && defined(STM32F4_NUCLEO_ARDUINO_HEADER)
|
||||||
|
return AvailUSART1();
|
||||||
|
#else
|
||||||
return AvailUART5();
|
return AvailUART5();
|
||||||
|
#endif
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -852,7 +863,11 @@ uint8_t CSerialPort::readInt(uint8_t n)
|
||||||
return ReadUSART2();
|
return ReadUSART2();
|
||||||
#endif
|
#endif
|
||||||
case 3U:
|
case 3U:
|
||||||
|
#if defined(STM32F4_NUCLEO) && defined(STM32F4_NUCLEO_ARDUINO_HEADER)
|
||||||
|
return ReadUSART1();
|
||||||
|
#else
|
||||||
return ReadUART5();
|
return ReadUART5();
|
||||||
|
#endif
|
||||||
default:
|
default:
|
||||||
return 0U;
|
return 0U;
|
||||||
}
|
}
|
||||||
|
@ -877,9 +892,15 @@ void CSerialPort::writeInt(uint8_t n, const uint8_t* data, uint16_t length, bool
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
case 3U:
|
case 3U:
|
||||||
|
#if defined(STM32F4_NUCLEO) && defined(STM32F4_NUCLEO_ARDUINO_HEADER)
|
||||||
|
WriteUSART1(data, length);
|
||||||
|
if (flush)
|
||||||
|
TXSerialFlush1();
|
||||||
|
#else
|
||||||
WriteUART5(data, length);
|
WriteUART5(data, length);
|
||||||
if (flush)
|
if (flush)
|
||||||
TXSerialFlush5();
|
TXSerialFlush5();
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue