Add method to disable cursor.
This commit is contained in:
parent
d3e2651212
commit
a49102fbac
10
src/cursor.c
10
src/cursor.c
@ -24,3 +24,13 @@ void cursor_setEndRaster(uint8_t end) {
|
|||||||
io_out(0xA0, 11);
|
io_out(0xA0, 11);
|
||||||
io_out(0xA1, end);
|
io_out(0xA1, end);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void cursor_enable(bool enable) {
|
||||||
|
if (enable) {
|
||||||
|
cursor_setStartRaster(0xd);
|
||||||
|
cursor_setEndRaster(0xd);
|
||||||
|
} else {
|
||||||
|
cursor_setStartRaster(0xd);
|
||||||
|
cursor_setEndRaster(0x0);
|
||||||
|
}
|
||||||
|
}
|
@ -1,6 +1,7 @@
|
|||||||
#ifndef CEDA_CURSOR_H
|
#ifndef CEDA_CURSOR_H
|
||||||
#define CEDA_CURSOR_H
|
#define CEDA_CURSOR_H
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
void cursor_setRaw(uint16_t address);
|
void cursor_setRaw(uint16_t address);
|
||||||
@ -11,4 +12,6 @@ void cursor_setStartRaster(uint8_t start);
|
|||||||
|
|
||||||
void cursor_setEndRaster(uint8_t end);
|
void cursor_setEndRaster(uint8_t end);
|
||||||
|
|
||||||
|
void cursor_enable(bool enable);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user