80 lines
1.1 KiB
C
80 lines
1.1 KiB
C
#include <display.h>
|
|
#include <render.h>
|
|
#include <fonts.h>
|
|
#include <print.h>
|
|
#include <fonts/smallfonts.h>
|
|
|
|
int x=0;
|
|
int y=0;
|
|
|
|
void checkScroll(void){
|
|
if(y+font->u8Height>RESY){
|
|
lcdShift(0,y+font->u8Height-RESY,false);
|
|
y=RESY-font->u8Height;
|
|
};
|
|
};
|
|
|
|
void lcdPrint(const char *string){
|
|
checkScroll();
|
|
x=DoString(x,y,string);
|
|
};
|
|
|
|
void lcdNl(void){
|
|
x=0;y+=font->u8Height;
|
|
};
|
|
|
|
void lcdPrintln(const char *string){
|
|
lcdPrint(string);
|
|
lcdNl();
|
|
};
|
|
|
|
void lcdPrintInt(const int num){
|
|
checkScroll();
|
|
x=DoInt(x,y,num);
|
|
};
|
|
|
|
void lcdPrintIntHex(const int num){
|
|
checkScroll();
|
|
x=DoIntX(x,y,num);
|
|
};
|
|
|
|
void lcdPrintCharHex(const uint8_t num){
|
|
checkScroll();
|
|
x=DoCharX(x,y,num);
|
|
};
|
|
|
|
void lcdPrintShortHex(const uint16_t num){
|
|
checkScroll();
|
|
x=DoShortX(x,y,num);
|
|
};
|
|
|
|
void lcdClear(){
|
|
x=0;y=0;
|
|
lcdFill(0);
|
|
};
|
|
|
|
|
|
void lcdMoveCrsr(signed int dx,signed int dy){
|
|
x+=dx;
|
|
y+=dy;
|
|
};
|
|
|
|
void lcdSetCrsr(int dx,int dy){
|
|
x=dx;
|
|
y=dy;
|
|
};
|
|
|
|
void lcdSetCrsrX(int dx){
|
|
x=dx;
|
|
};
|
|
|
|
void setSystemFont(void){
|
|
setIntFont(&Font_7x8);
|
|
};
|
|
|
|
|
|
int lcdGetVisibleLines(void){
|
|
return (RESY/getFontHeight()); // subtract title line
|
|
};
|
|
|