2022-03-22 17:12:59 +00:00
|
|
|
#include "uc8159.hpp"
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <math.h>
|
2022-03-28 17:47:44 +01:00
|
|
|
#include <string.h>
|
2022-03-22 17:12:59 +00:00
|
|
|
|
|
|
|
namespace pimoroni {
|
|
|
|
|
|
|
|
enum reg {
|
|
|
|
PSR = 0x00,
|
|
|
|
PWR = 0x01,
|
|
|
|
POF = 0x02,
|
|
|
|
PFS = 0x03,
|
|
|
|
PON = 0x04,
|
|
|
|
BTST = 0x06,
|
|
|
|
DSLP = 0x07,
|
|
|
|
DTM1 = 0x10,
|
|
|
|
DSP = 0x11,
|
|
|
|
DRF = 0x12,
|
|
|
|
IPC = 0x13,
|
|
|
|
PLL = 0x30,
|
|
|
|
TSC = 0x40,
|
|
|
|
TSE = 0x41,
|
|
|
|
TSW = 0x42,
|
|
|
|
TSR = 0x43,
|
|
|
|
CDI = 0x50,
|
|
|
|
LPD = 0x51,
|
|
|
|
TCON = 0x60,
|
|
|
|
TRES = 0x61,
|
|
|
|
DAM = 0x65,
|
|
|
|
REV = 0x70,
|
|
|
|
FLG = 0x71,
|
|
|
|
AMV = 0x80,
|
|
|
|
VV = 0x81,
|
|
|
|
VDCS = 0x82,
|
|
|
|
PWS = 0xE3,
|
|
|
|
TSSET = 0xE5
|
|
|
|
};
|
|
|
|
|
|
|
|
bool UC8159::is_busy() {
|
2022-06-29 10:32:11 +01:00
|
|
|
if(BUSY == PIN_UNUSED) {
|
2022-06-29 11:14:02 +01:00
|
|
|
if(absolute_time_diff_us(get_absolute_time(), timeout) > 0) {
|
2022-06-29 10:32:11 +01:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-03-22 17:12:59 +00:00
|
|
|
return !gpio_get(BUSY);
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:32:11 +01:00
|
|
|
void UC8159::busy_wait(uint minimum_wait_ms) {
|
|
|
|
timeout = make_timeout_time_ms(minimum_wait_ms);
|
2022-03-22 17:12:59 +00:00
|
|
|
while(is_busy()) {
|
|
|
|
tight_loop_contents();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UC8159::reset() {
|
|
|
|
gpio_put(RESET, 0); sleep_ms(10);
|
|
|
|
gpio_put(RESET, 1); sleep_ms(10);
|
|
|
|
busy_wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UC8159::init() {
|
|
|
|
// configure spi interface and pins
|
|
|
|
spi_init(spi, 3'000'000);
|
|
|
|
|
|
|
|
gpio_set_function(DC, GPIO_FUNC_SIO);
|
|
|
|
gpio_set_dir(DC, GPIO_OUT);
|
|
|
|
|
|
|
|
gpio_set_function(CS, GPIO_FUNC_SIO);
|
|
|
|
gpio_set_dir(CS, GPIO_OUT);
|
|
|
|
gpio_put(CS, 1);
|
|
|
|
|
|
|
|
gpio_set_function(RESET, GPIO_FUNC_SIO);
|
|
|
|
gpio_set_dir(RESET, GPIO_OUT);
|
|
|
|
gpio_put(RESET, 1);
|
|
|
|
|
|
|
|
gpio_set_function(BUSY, GPIO_FUNC_SIO);
|
|
|
|
gpio_set_dir(BUSY, GPIO_IN);
|
|
|
|
gpio_set_pulls(BUSY, true, false);
|
|
|
|
|
|
|
|
gpio_set_function(SCK, GPIO_FUNC_SPI);
|
|
|
|
gpio_set_function(MOSI, GPIO_FUNC_SPI);
|
|
|
|
};
|
|
|
|
|
|
|
|
void UC8159::setup() {
|
|
|
|
reset();
|
|
|
|
busy_wait();
|
|
|
|
|
2022-06-14 09:57:00 +01:00
|
|
|
command(0x00, {0xE3, 0x08});
|
|
|
|
command(0x01, {0x37, 0x00, 0x23, 0x23});
|
|
|
|
command(0x03, {0x00});
|
|
|
|
command(0x06, {0xC7, 0xC7, 0x1D});
|
|
|
|
command(0x30, {0x3C});
|
|
|
|
command(0x40, {0x00});
|
|
|
|
command(0x50, {0x37});
|
|
|
|
command(0x60, {0x22});
|
|
|
|
command(0x61, {0x02, 0x58, 0x01, 0xC0});
|
|
|
|
command(0xE3, {0xAA});
|
|
|
|
|
|
|
|
sleep_ms(100);
|
|
|
|
|
|
|
|
command(0x50, {0x37});
|
2022-03-22 17:12:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void UC8159::power_off() {
|
|
|
|
busy_wait();
|
|
|
|
command(POF); // turn off
|
|
|
|
}
|
|
|
|
|
|
|
|
void UC8159::command(uint8_t reg, size_t len, const uint8_t *data) {
|
|
|
|
gpio_put(CS, 0);
|
|
|
|
|
|
|
|
gpio_put(DC, 0); // command mode
|
|
|
|
spi_write_blocking(spi, ®, 1);
|
|
|
|
|
|
|
|
if(len > 0) {
|
|
|
|
gpio_put(DC, 1); // data mode
|
|
|
|
spi_write_blocking(spi, (const uint8_t*)data, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
gpio_put(CS, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UC8159::data(size_t len, const uint8_t *data) {
|
|
|
|
gpio_put(CS, 0);
|
|
|
|
gpio_put(DC, 1); // data mode
|
|
|
|
spi_write_blocking(spi, (const uint8_t*)data, len);
|
|
|
|
gpio_put(CS, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UC8159::command(uint8_t reg, std::initializer_list<uint8_t> values) {
|
|
|
|
command(reg, values.size(), (uint8_t *)values.begin());
|
|
|
|
}
|
|
|
|
|
2022-06-14 09:57:00 +01:00
|
|
|
void UC8159::update(const void *data, bool blocking) {
|
2022-03-22 17:12:59 +00:00
|
|
|
if(blocking) {
|
|
|
|
busy_wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
setup();
|
|
|
|
|
2022-06-14 09:57:00 +01:00
|
|
|
command(DTM1, (width * height) / 2, (uint8_t *)data); // transmit framebuffer
|
2022-03-22 17:12:59 +00:00
|
|
|
busy_wait();
|
|
|
|
|
|
|
|
command(PON); // turn on
|
2022-06-29 10:32:11 +01:00
|
|
|
busy_wait(200);
|
2022-03-22 17:12:59 +00:00
|
|
|
|
|
|
|
command(DRF); // start display refresh
|
2022-06-29 10:32:11 +01:00
|
|
|
busy_wait(200);
|
2022-03-22 17:12:59 +00:00
|
|
|
|
|
|
|
if(blocking) {
|
2022-06-29 10:32:11 +01:00
|
|
|
busy_wait(32 * 1000);
|
2022-03-22 17:12:59 +00:00
|
|
|
|
|
|
|
command(POF); // turn off
|
2022-06-29 10:32:11 +01:00
|
|
|
} else {
|
|
|
|
timeout = make_timeout_time_ms(32 * 1000);
|
2022-03-22 17:12:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-14 09:57:00 +01:00
|
|
|
void UC8159::update(PicoGraphics *graphics) {
|
|
|
|
if(graphics->pen_type != PicoGraphics::PEN_P4) return; // Incompatible buffer
|
|
|
|
update(graphics->frame_buffer, false);
|
|
|
|
}
|
|
|
|
|
2022-03-22 17:12:59 +00:00
|
|
|
}
|