GM6000 Digital Heater Controller Branch: main
SDX-1330
Output.h
Go to the documentation of this file.
1#ifndef Bsp_Stm32_Console_h_
2#define Bsp_Stm32_Console_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2017 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
17
18/** Default size of the software TX FIFO used by the console UART Stream
19 */
20#ifndef OPTION_BSP_CONSOLE_TX_FIFO_SIZE
21#define OPTION_BSP_CONSOLE_TX_FIFO_SIZE 1024
22#endif
23
24 /** Default size of the software RX FIFO used by the console UART Stream
25 */
26#ifndef OPTION_BSP_CONSOLE_RX_FIFO_SIZE
27#define OPTION_BSP_CONSOLE_RX_FIFO_SIZE 1024
28#endif
29
30
31
32/// Expose the Console stream
34
35
36#endif // end header latch
Cpl::Io::Serial::ST::M32F4::InputOutput g_bspConsoleStream
Expose the Console stream.
This concrete class implements the InputOutput stream interface built on top of ST HAL Layer/SDK.
Definition InputOutput.h:43