Skip to content
Snippets Groups Projects
Commit 0d2116cc authored by Federico's avatar Federico
Browse files

Updated board_settings.h for stm32f407 to miosix mainline

parent ff221a93
Branches
Tags
No related merge requests found
...@@ -62,10 +62,15 @@ const unsigned int TICK_FREQ=1000; ...@@ -62,10 +62,15 @@ const unsigned int TICK_FREQ=1000;
const unsigned int AUX_TIMER_CLOCK=100000; const unsigned int AUX_TIMER_CLOCK=100000;
const unsigned int AUX_TIMER_MAX=0xffff; ///<\internal Aux timer is 16 bits const unsigned int AUX_TIMER_MAX=0xffff; ///<\internal Aux timer is 16 bits
/// Serial port /// Serial port (USART3 PB10=TX, PB11=RX)
const unsigned int defaultSerial=3; const unsigned int defaultSerial=3;
const unsigned int defaultSerialSpeed=19200; const unsigned int defaultSerialSpeed=19200;
const bool defaultSerialFlowctrl=false; const bool defaultSerialFlowctrl=false;
// Aux serial port (hardcoded USART2 PA2=TX, PA3=RX).
// Uncomment AUX_SERIAL to enable. The device will appear as /dev/auxtty.
//#define AUX_SERIAL "auxtty"
const unsigned int auxSerialSpeed=9600;
const bool auxSerialFlowctrl=false;
//#define SERIAL_1_DMA //Serial 1 is not used, so not enabling DMA //#define SERIAL_1_DMA //Serial 1 is not used, so not enabling DMA
//#define SERIAL_2_DMA //Serial 2 DMA conflicts with I2S driver in the examples //#define SERIAL_2_DMA //Serial 2 DMA conflicts with I2S driver in the examples
#define SERIAL_3_DMA #define SERIAL_3_DMA
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment