RTEMS  5.1
Macros | Variables
console-config.c File Reference

Console configuration. More...

#include <string.h>
#include <libfdt.h>
#include <rtems/bspIo.h>
#include <libchip/ns16550.h>
#include <asm/epapr_hcalls.h>
#include <bsp.h>
#include <bsp/fdt.h>
#include <bsp/irq.h>
#include <bsp/qoriq.h>
#include <bsp/intercom.h>
#include <bsp/uart-bridge.h>
#include <bsp/console-termios.h>

Macros

#define DEVICE_FNS   &ns16550_handler_polled
 

Variables

const console_device console_device_table []
 Table for console devices installed via console_initialize() during system initialization. More...
 
const size_t console_device_count = RTEMS_ARRAY_SIZE(console_device_table)
 Count of entries in the console_device_table. More...
 
BSP_output_char_function_type BSP_output_char = output_char
 
BSP_polling_getchar_function_type BSP_poll_char = NULL
 

Detailed Description

Console configuration.

Variable Documentation

◆ BSP_output_char

BSP_output_char_function_type BSP_output_char = output_char

This variable points to the BSP provided method to output a character for the purposes of debug output.

It must output only the specific character. It must not perform character translations, e.g. "\n" to "\r\n".

◆ BSP_poll_char

This variable points to the BSP provided method to input a character for the purposes of debug input.