![]() |
RTEMS 6.1-rc7
|
displaying characters on the console More...
#include <bsp.h>
#include <rtems/fb.h>
#include <efigop.h>
#include <stdlib.h>
#include <string.h>
#include "font_data.h"
Macros | |
#define | TAB_SPACE 4 |
#define | CONSOLE_BG_COL 0xff |
#define | CONSOLE_FG_COL 0x00 |
#define | ESC ( (char) 27 ) |
#define | BLANK ( (char) 0x7f ) |
#define | DONE ( -1 ) |
Functions | |
void | rpi_fb_outch (char c) |
void | rpi_video_init (void) |
void | gotoxy (int x, int y) |
int | whereX (void) |
int | whereY (void) |
displaying characters on the console
NOTE: This file is copied from arm/raspberrypi BSP. It is only slightly changed to work with EFI GOP. Obvious idea is to refactor whole framebuffer console business shared between various BSPs and move that properly to bsps/shared and reuse.