Files
my-os-project2/kernel/term/term.c

60 lines
1.2 KiB
C

#include "flanterm.h"
#include "flanterm_backends/fb.h"
#include "spinlock/spinlock.h"
#include "bootinfo/bootinfo.h"
#include "term.h"
#include "putchar.h"
#include "fm-t-437.f16.h"
Term TERM;
void term_doinit(void *addr) {
uint32_t bg = 0x001D1F21;
uint32_t fg = 0x00C5C8C6;
TERM.ftctx = flanterm_fb_init(
NULL, // malloc
NULL, // free
addr, // fb addr
BOOT_INFO.fb->width,
BOOT_INFO.fb->height,
BOOT_INFO.fb->pitch,
BOOT_INFO.fb->red_mask_size,
BOOT_INFO.fb->red_mask_shift,
BOOT_INFO.fb->green_mask_size,
BOOT_INFO.fb->green_mask_shift,
BOOT_INFO.fb->blue_mask_size,
BOOT_INFO.fb->blue_mask_shift,
NULL, // canvas
NULL, // ansi colors
NULL, // ansi bright colors
&bg, // default bg
&fg, // default fg
NULL, // default bg bright
NULL, // default fg bright
FM_T_437_F16,
8,
16,
0,
0,
0,
20
);
}
void term_init(void *addr) {
term_doinit(addr);
spinlock_init(&TERM.spinlock);
}
void term_write_unsafe(const char *s, size_t len) {
flanterm_write(TERM.ftctx, s, len);
}
#if PUTCHAR_ == PUTCHAR_FB
// For printf library
void putchar_(char c) {
term_write_unsafe(&c, 1);
}
#endif