0

I am working on framebuffer and serial console, serial console is basically a default console to see debug messages where framebuffer console is an advance console which can also show small graphics.

I am confused how character gets drawn differently on to serial and framebuffer console.

dsolimano
  • 8,870
  • 3
  • 48
  • 63
  • Are you asking why the text in one console appears differently to the other? i.e. one console might have colored text, the other doesn't? – timmins Jun 13 '13 at 15:11
  • Yes, it may or may not be, basically question is weather one console is printing the character by reading some fixed keymap and another one not taking care of, is it so? – Kaushal Billore Jun 20 '13 at 04:55

1 Answers1

0

Suggest reading this: Linux Framebuffer on the Virtual Console.

A serial console only has the ability to send and receive ASCII characters and escape codes, which are interpreted by whatever terminal emulator you're using (minicom, Hyperterminal, PuTTY etc.). More information on terminal emulation here: Terminal Emulation

The framebuffer console inplements a Linux console on your system's physical display. Because the display is rendered using a pixel map, it is also able to allow graphics to be displayed.

timmins
  • 104
  • 5