|
|
|
@ -987,6 +987,7 @@ static const uint8_t testimg[] = {
@@ -987,6 +987,7 @@ static const uint8_t testimg[] = {
|
|
|
|
|
|
|
|
|
|
/* Function Prototypes */ |
|
|
|
|
static int32_t epd_4p2mono_write_dbuf(epd_t *epd); |
|
|
|
|
static int32_t epd_4p2mono_write_dbuf_partial(epd_t *epd, uint16_t x0, uint16_t x1, uint16_t y0, uint16_t y1); |
|
|
|
|
|
|
|
|
|
/* Function Definitions */ |
|
|
|
|
static inline void epd_rst(epd_t *epd) |
|
|
|
@ -1027,9 +1028,10 @@ static inline void busy_wait(epd_t *epd)
@@ -1027,9 +1028,10 @@ static inline void busy_wait(epd_t *epd)
|
|
|
|
|
void epd_4p2mono_init(epd_t *epd) |
|
|
|
|
{ |
|
|
|
|
epd_display_config_t cfg = { |
|
|
|
|
.w = EPD_4P2MONO_WIDTH, |
|
|
|
|
.h = EPD_4P2MONO_HEIGHT, |
|
|
|
|
.write = epd_4p2mono_write_dbuf |
|
|
|
|
.w = EPD_4P2MONO_WIDTH, |
|
|
|
|
.h = EPD_4P2MONO_HEIGHT, |
|
|
|
|
.write = epd_4p2mono_write_dbuf, |
|
|
|
|
.write_partial = epd_4p2mono_write_dbuf_partial |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/* configure the display */ |
|
|
|
@ -1140,3 +1142,46 @@ static int32_t epd_4p2mono_write_dbuf(epd_t *epd)
@@ -1140,3 +1142,46 @@ static int32_t epd_4p2mono_write_dbuf(epd_t *epd)
|
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static int32_t epd_4p2mono_write_dbuf_partial(epd_t *epd, uint16_t x0, uint16_t x1, uint16_t y0, uint16_t y1) |
|
|
|
|
{ |
|
|
|
|
const uint32_t w = (EPD_4P2MONO_WIDTH % 8) ? (EPD_4P2MONO_WIDTH / 8 + 1) : (EPD_4P2MONO_WIDTH / 8); |
|
|
|
|
const uint16_t x0b = x0 / 8; |
|
|
|
|
const uint16_t x1b = ((x1 % 8) ? (x1 / 8 + 1) : (x1 / 8)) - 1; |
|
|
|
|
uint32_t i; |
|
|
|
|
uint32_t j; |
|
|
|
|
const uint8_t hrstu = (uint8_t) (x0b >> 5) & 0x01; |
|
|
|
|
const uint8_t hrstl = (uint8_t) (x0b << 3); |
|
|
|
|
const uint8_t hredu = (uint8_t) (x1b >> 5) & 0x01; |
|
|
|
|
const uint8_t hredl = (uint8_t) (x1b << 3); |
|
|
|
|
const uint8_t vrstu = (uint8_t) (y0 >> 8) & 0x01; |
|
|
|
|
const uint8_t vrstl = (uint8_t) (y0); |
|
|
|
|
const uint8_t vredu = (uint8_t) (y1 >> 8) & 0x01; |
|
|
|
|
const uint8_t vredl = (uint8_t) (y1); |
|
|
|
|
|
|
|
|
|
cmd_byte(epd, CMD_PTL); |
|
|
|
|
data_byte(epd, hrstu); /* HRST[8] */ |
|
|
|
|
data_byte(epd, hrstl); /* HRST[7:3] */ |
|
|
|
|
data_byte(epd, hredu); /* HRED[8] */ |
|
|
|
|
data_byte(epd, hredl); /* HRED7:3] */ |
|
|
|
|
data_byte(epd, vrstu); /* VRST[8] */ |
|
|
|
|
data_byte(epd, vrstl); /* VRST[7:0] */ |
|
|
|
|
data_byte(epd, vredu); /* VRED[8] */ |
|
|
|
|
data_byte(epd, vredl); /* VRED7:0] */ |
|
|
|
|
data_byte(epd, 0x00); /* PT_SCAN */ |
|
|
|
|
cmd_byte(epd, CMD_PTIN); |
|
|
|
|
cmd_byte(epd, CMD_DTM2); |
|
|
|
|
for(j = y0; j <= y1; j++) |
|
|
|
|
{ |
|
|
|
|
for(i = x0b; i <= x1b; i++) |
|
|
|
|
{ |
|
|
|
|
data_byte(epd, epd->dbuf[i + (w * j)]); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
cmd_byte(epd, CMD_DRF); |
|
|
|
|
busy_wait(epd); |
|
|
|
|
cmd_byte(epd, CMD_PTOUT); |
|
|
|
|
busy_wait(epd); |
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|