Files
-
hardware / bubblegum / bubblegum.brd
-
hardware / bubblegum / bubblegum.sch
-
hardware / hackrf-one / baseband.kicad_sch
-
hardware / hackrf-one / clock.kicad_sch
-
hardware / hackrf-one / frontend.kicad_sch
-
hardware / hackrf-one / hackrf-one.kicad_pcb
-
hardware / hackrf-one / hackrf-one.kicad_sch
-
hardware / hackrf-one / mcu.kicad_sch
-
hardware / jawbreaker / baseband.sch
-
hardware / jawbreaker / frontend.sch
-
hardware / jawbreaker / jawbreaker.brd
-
hardware / jawbreaker / jawbreaker.sch
-
hardware / jawbreaker / mcu.sch
-
hardware / jellybean / jellybean.brd
-
hardware / jellybean / jellybean.sch
-
hardware / lemondrop / lemondrop.brd
-
hardware / lemondrop / lemondrop.sch
-
hardware / licorice / licorice.brd
-
hardware / licorice / licorice.sch
-
hardware / LNA915 / LNA915.kicad_pcb
-
hardware / LNA915 / LNA915.sch
-
hardware / lollipop / lollipop.brd
-
hardware / lollipop / lollipop.sch
-
hardware / marzipan / baseband.sch
-
hardware / marzipan / frontend.sch
-
hardware / marzipan / marzipan.kicad_pcb
-
hardware / marzipan / marzipan.sch
-
hardware / marzipan / mcu.sch
-
hardware / neapolitan / baseband.sch
-
hardware / neapolitan / frontend.sch
-
hardware / neapolitan / mcu.sch
-
hardware / neapolitan / neapolitan.kicad_pcb
-
hardware / neapolitan / neapolitan.sch
-
hardware / operacake / operacake.kicad_pcb
-
hardware / operacake / operacake.sch
Last update 2 years 1 month
by
Gianpaolo Macario
Filesfirmwarecommonrad1o | |
---|---|
.. | |
decoder.c | |
decoder.h | |
display.c | |
display.h | |
draw.c | |
draw.h | |
fonts.h | |
print.c | |
print.h | |
render.c | |
render.h | |
smallfonts.c | |
smallfonts.h | |
ubuntu18.c | |
ubuntu18.h |
print.c#include "print.h" #include "display.h" #include "fonts.h" #include "render.h" #include "smallfonts.h" static int32_t x = 0; static int32_t y = 0; void rad1o_lcdPrint(const char* string) { x = rad1o_DoString(x, y, string); } void rad1o_lcdNl(void) { x = 0; y += rad1o_getFontHeight(); } void rad1o_lcdClear(void) { x = 0; y = 0; rad1o_lcdFill(0xff); } void rad1o_lcdMoveCrsr(int32_t dx, int32_t dy) { x += dx; y += dy; } void rad1o_lcdSetCrsr(int32_t dx, int32_t dy) { x = dx; y = dy; } void rad1o_setSystemFont(void) { rad1o_setIntFont(&Font_7x8); }