RTEMS 6.1-rc6
Loading...
Searching...
No Matches
fb_default_mode.h
Go to the documentation of this file.
1
10/*
11 * @brief Allows to enable initialization of specific framebuffer driver (e.g.
12 * VESA real mode) from an application by setting the value of this variable
13 * to non null value in user's module. The value of this variable will be then
14 * updated when linked with an application's object.
15 *
16 * Further the value should point to string in the following format:
17 * "<resX>x<resY>[-<bpp>]" - e.g. "1024x768-32"
18 * "auto" - select the graphic mode automatically
19 * "none" / "off" - do not initialize the driver
20 * the given parameters are used if applicable.
21 *
22 * Command line argument "--video=" has priority over this string if
23 * it is read/implemented by the driver.
24 */
25extern const char * const rtems_fb_default_mode;
const char *const rtems_fb_default_mode
Allows to enable initialization of VESA real mode driver from an application by setting the value of ...
Definition: fb_vesa_rm.c:91