2011-07-07 15:41:53 +02:00
|
|
|
/* Public Domain Curses */
|
|
|
|
/* This file is BSD licensed, Copyright 2011 secunet AG */
|
|
|
|
|
2013-03-25 23:38:21 +01:00
|
|
|
#include <libpayload.h>
|
2011-07-07 15:41:53 +02:00
|
|
|
#include "lppdc.h"
|
|
|
|
|
|
|
|
int PDC_curs_set(int visibility)
|
|
|
|
{
|
|
|
|
int ret_vis;
|
|
|
|
|
|
|
|
PDC_LOG(("PDC_curs_set() - called: visibility=%d\n", visibility));
|
|
|
|
|
|
|
|
ret_vis = SP->visibility;
|
|
|
|
SP->visibility = visibility;
|
|
|
|
|
2015-06-30 00:47:34 +02:00
|
|
|
#if IS_ENABLED(CONFIG_LP_SERIAL_CONSOLE)
|
2011-07-07 15:41:53 +02:00
|
|
|
if (curses_flags & F_ENABLE_SERIAL) {
|
|
|
|
serial_cursor_enable(visibility);
|
|
|
|
}
|
|
|
|
#endif
|
2015-06-30 00:47:34 +02:00
|
|
|
#if IS_ENABLED(CONFIG_LP_VIDEO_CONSOLE)
|
2011-07-07 15:41:53 +02:00
|
|
|
if (curses_flags & F_ENABLE_CONSOLE) {
|
|
|
|
video_console_cursor_enable(visibility);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret_vis;
|
|
|
|
}
|
|
|
|
|
|
|
|
int PDC_set_blink(bool blinkon)
|
|
|
|
{
|
2011-11-11 11:05:42 +01:00
|
|
|
if (pdc_color_started)
|
|
|
|
COLORS = 16;
|
|
|
|
|
2011-07-07 15:41:53 +02:00
|
|
|
return ERR;
|
|
|
|
}
|