Files
Arduino_Projects/libraries/ssd1306/tools/sdl/sdl_ili9341.c
MindCreeper03 e490df1715 First Commit
2025-02-27 19:31:50 +01:00

244 lines
7.3 KiB
C

/*
MIT License
Copyright (c) 2018, Alexey Dynda
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "sdl_ili9341.h"
#include "sdl_oled_basic.h"
#include "sdl_graphics.h"
#include "sdl_core.h"
static int s_activeColumn = 0;
static int s_activePage = 0;
static int s_columnStart = 0;
static int s_columnEnd = 127;
static int s_pageStart = 0;
static int s_pageEnd = 7;
static uint8_t detected = 0;
static int sdl_ili9341_detect(uint8_t data)
{
if (detected)
{
return 1;
}
detected = (data == SDL_LCD_ILI9341);
return 0;
}
static uint8_t s_verticalMode = 0;
static void sdl_ili9341_commands(uint8_t data)
{
// if ((s_verticalMode & 0b00100000) && (s_cmdArgIndex < 0))
// {
// if (s_commandId == 0x2A) s_commandId = 0x2B;
// else if (s_commandId == 0x2B) s_commandId = 0x2A;
// }
switch (s_commandId)
{
case 0x36:
if (s_cmdArgIndex == 0)
{
s_verticalMode = data;
s_commandId = SSD_COMMAND_NONE;
}
break;
case 0x2A:
switch (s_cmdArgIndex)
{
case 0:
if (!(s_verticalMode & 0b00100000))
{
s_columnStart = data;
s_activeColumn = data;
}
else
{
s_pageStart = data;
s_activePage = data;
}
break;
case 1:
if (!(s_verticalMode & 0b00100000))
{
s_columnStart = data | (s_columnStart<<8);
s_activeColumn = data | (s_activeColumn<<8);
}
else
{
s_pageStart = data | (s_pageStart<<8);
s_activePage = data | (s_activePage<<8);
}
break;
case 2:
if (!(s_verticalMode & 0b00100000))
{
s_columnEnd = data;
}
else
{
s_pageEnd = data;
}
break;
case 3:
if (!(s_verticalMode & 0b00100000))
{
s_columnEnd = data | (s_columnEnd << 8);
}
else
{
s_pageEnd = data | (s_pageEnd << 8);
}
s_commandId = SSD_COMMAND_NONE;
break;
default: break;
}
break;
case 0x2B:
switch (s_cmdArgIndex)
{
case 0:
if (!(s_verticalMode & 0b00100000))
{
s_activePage = data;
s_pageStart = s_activePage;
}
else
{
s_columnStart = data;
s_activeColumn = data;
}
break;
case 1:
if (!(s_verticalMode & 0b00100000))
{
s_activePage = data | (s_activePage << 8);
s_pageStart = s_activePage;
}
else
{
s_columnStart = data | (s_columnStart << 8);
s_activeColumn = data | (s_activeColumn << 8);
}
break;
case 2:
if (!(s_verticalMode & 0b00100000))
{
s_pageEnd = data;
}
else
{
s_columnEnd = data;
}
break;
case 3:
if (!(s_verticalMode & 0b00100000))
{
s_pageEnd = data | (s_pageEnd << 8);
}
else
{
s_columnEnd = data | (s_columnEnd << 8);
}
s_commandId = SSD_COMMAND_NONE;
break;
default: break;
}
break;
case 0x2C:
sdl_set_data_mode( SDM_WRITE_DATA );
s_commandId = SSD_COMMAND_NONE;
break;
default:
s_commandId = SSD_COMMAND_NONE;
break;
}
}
void sdl_ili9341_data(uint8_t data)
{
int y = s_activePage;
int x = s_activeColumn;
static uint8_t firstByte = 1; /// ili9341
static uint8_t dataFirst = 0x00; /// ili9341
if (firstByte)
{
dataFirst = data;
firstByte = 0;
return;
}
firstByte = 1;
int rx, ry;
if (s_verticalMode & 0b00100000)
{
rx = (s_verticalMode & 0b01000000) ? x: (sdl_ili9341.width - 1 - x);
ry = (s_verticalMode & 0b10000000) ? (sdl_ili9341.height - 1 - y) : y;
}
else
{
rx = (s_verticalMode & 0b10000000) ? x: (sdl_ili9341.width - 1 - x);
ry = (s_verticalMode & 0b01000000) ? (sdl_ili9341.height - 1 - y) : y;
}
sdl_put_pixel(rx, ry, (dataFirst<<8) | data);
if (s_verticalMode & 0b00100000)
{
s_activePage++;
if (s_activePage > s_pageEnd)
{
s_activePage = s_pageStart;
s_activeColumn++;
if (s_activeColumn > s_columnEnd)
{
s_activeColumn = s_columnStart;
}
}
}
else
{
s_activeColumn++;
if (s_activeColumn > s_columnEnd)
{
s_activeColumn = s_columnStart;
s_activePage++;
if (s_activePage > s_pageEnd)
{
s_activePage = s_pageStart;
}
}
}
}
sdl_oled_info sdl_ili9341 =
{
.width = 240,
.height = 320,
.bpp = 16,
.pixfmt = SDL_PIXELFORMAT_RGB565,
.dataMode = SDMS_CONTROLLER,
.detect = sdl_ili9341_detect,
.run_cmd = sdl_ili9341_commands,
.run_data = sdl_ili9341_data,
};