Please find following init sequence for ILI9163C LCD.
The Dimension for this LCD is 160 X 128 and I have checked using SPI Master example in which it is working fine without any issue./// SPI Init LCD ILI9163C Sequence
static const ili_init_cmd_t ili_init_cmds[]={
{0x01, {0}, 0x80},
{0x11, {0}, 0x80},
{0x3A, {0x66}, 1},
{0x26, {0x04}, 1},
{0xF2, {0x01}, 1},
{0xE0, {0x3F, 0x25, 0x1C, 0x1E, 0x20, 0x12, 0x2A, 0X90, 0x24, 0x11,
0x00, 0x00, 0x00, 0x00, 0x00}, 15},
{0XE1, {0x20, 0x20, 0x20, 0x20, 0x05, 0x00, 0x15, 0xA7, 0x3D, 0x18,
0x25, 0x2A, 0x2B, 0x2B, 0x3A}, 15},
{0xB1, {0x08, 0x08}, 2},
{0xC0, {0x14, 0x02}, 2},
{0xC1, {0x02}, 1},
{0xC5, {0x1D, 0x4A}, 2},
{0xC7, {0xCA}, 1},
{0x2A, {0x00, 0x00, 0x00, 0x7F}, 4},
{0x2B, {0x00, 0x00, 0x00, 0x9F}, 4},
{0xEC, {0x0C}, 1},
{0x36, {0xC8}, 1},
{0x29, {0}, 0x80},
{0x2C, {0}, 0x80},
{0, {0}, 0xFF},
};
I will also check with your updated GIThub demo and will provide you an update regarding that.
So, You can also add support of that into your existing demo. Let me know if need any help for that.