whitespaces
This commit is contained in:
parent
599af99046
commit
02f58e279f
2 changed files with 31 additions and 27 deletions
10
console.c
10
console.c
|
@ -23,6 +23,7 @@ static size_t reads(void *ip, uint8_t *bp, size_t n) {
|
||||||
(void)ip;
|
(void)ip;
|
||||||
(void)bp;
|
(void)bp;
|
||||||
(void)n;
|
(void)n;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,23 +33,28 @@ static msg_t put(void *ip, uint8_t b) {
|
||||||
|
|
||||||
static msg_t get(void *ip) {
|
static msg_t get(void *ip) {
|
||||||
(void)ip;
|
(void)ip;
|
||||||
|
|
||||||
return RDY_OK;
|
return RDY_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static msg_t putt(void *ip, uint8_t b, systime_t timeout) {
|
static msg_t putt(void *ip, uint8_t b, systime_t timeout) {
|
||||||
(void)timeout;
|
(void)timeout;
|
||||||
|
|
||||||
/* TODO: handle timeout */
|
/* TODO: handle timeout */
|
||||||
|
|
||||||
return lcdConsolePut((GLCDConsole *)ip, (char)b);
|
return lcdConsolePut((GLCDConsole *)ip, (char)b);
|
||||||
}
|
}
|
||||||
|
|
||||||
static msg_t gett(void *ip, systime_t timeout) {
|
static msg_t gett(void *ip, systime_t timeout) {
|
||||||
(void)ip;
|
(void)ip;
|
||||||
(void)timeout;
|
(void)timeout;
|
||||||
|
|
||||||
return RDY_OK;
|
return RDY_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static size_t writet(void *ip, const uint8_t *bp, size_t n, systime_t time) {
|
static size_t writet(void *ip, const uint8_t *bp, size_t n, systime_t time) {
|
||||||
(void)time;
|
(void)time;
|
||||||
|
|
||||||
return lcdConsoleWrite((GLCDConsole *)ip, bp, n);
|
return lcdConsoleWrite((GLCDConsole *)ip, bp, n);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,6 +63,7 @@ static size_t readt(void *ip, uint8_t *bp, size_t n, systime_t time) {
|
||||||
(void)bp;
|
(void)bp;
|
||||||
(void)n;
|
(void)n;
|
||||||
(void)time;
|
(void)time;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,8 +78,7 @@ static const struct GLCDConsoleVMT vmt = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
msg_t lcdConsoleInit(GLCDConsole *console, uint16_t x0, uint16_t y0, uint16_t width, uint16_t height,
|
msg_t lcdConsoleInit(GLCDConsole *console, uint16_t x0, uint16_t y0, uint16_t width, uint16_t height, font_t font, uint16_t bkcolor, uint16_t color) {
|
||||||
font_t font, uint16_t bkcolor, uint16_t color) {
|
|
||||||
const uint8_t* ptr;
|
const uint8_t* ptr;
|
||||||
uint16_t chi;
|
uint16_t chi;
|
||||||
uint16_t x,y;
|
uint16_t x,y;
|
||||||
|
|
|
@ -53,9 +53,7 @@ struct GLCDConsole {
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
msg_t lcdConsoleInit(GLCDConsole *console, uint16_t x0, uint16_t y0, uint16_t width, uint16_t height,
|
msg_t lcdConsoleInit(GLCDConsole *console, uint16_t x0, uint16_t y0, uint16_t width, uint16_t height font_t font, uint16_t bkcolor, uint16_t color);
|
||||||
font_t font, uint16_t bkcolor, uint16_t color);
|
|
||||||
|
|
||||||
msg_t lcdConsolePut(GLCDConsole *console, char c);
|
msg_t lcdConsolePut(GLCDConsole *console, char c);
|
||||||
msg_t lcdConsoleWrite(GLCDConsole *console, uint8_t *bp, size_t n);
|
msg_t lcdConsoleWrite(GLCDConsole *console, uint8_t *bp, size_t n);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue