summaryrefslogtreecommitdiff
path: root/firmware/target/arm/olympus/mrobe-100
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/olympus/mrobe-100')
-rw-r--r--firmware/target/arm/olympus/mrobe-100/lcd-mr100.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c b/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
index c7977e63fc..9fb6790cc4 100644
--- a/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
+++ b/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
@@ -118,8 +118,8 @@ void lcd_set_flip(bool yesno)
118 118
119/* Performance function that works with an external buffer 119/* Performance function that works with an external buffer
120 note that by and bheight are in 8-pixel units! */ 120 note that by and bheight are in 8-pixel units! */
121void lcd_blit(const unsigned char* data, int x, int by, int width, 121void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
122 int bheight, int stride) 122 int bheight, int stride)
123{ 123{
124 /* TODO: Implement lcd_blit() */ 124 /* TODO: Implement lcd_blit() */
125 (void)data; 125 (void)data;
@@ -132,7 +132,7 @@ void lcd_blit(const unsigned char* data, int x, int by, int width,
132 132
133/* Performance function that works with an external buffer 133/* Performance function that works with an external buffer
134 note that by and bheight are in 4-pixel units! */ 134 note that by and bheight are in 4-pixel units! */
135void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases, 135void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
136 int x, int by, int width, int bheight, int stride) 136 int x, int by, int width, int bheight, int stride)
137{ 137{
138 /* TODO: Implement lcd_grey_phase_blit() */ 138 /* TODO: Implement lcd_grey_phase_blit() */