PDX-089T
DM&P
Vortex
86DX
Panel PC with 8.9” WSVGA TFT LCD
25
void BackLightON()
{
// Set register 4AH bit1 to 0 to enable GPIOB
outportb(0x3d4, 0x4a);
unsigned c = inport(0x3d5) & 0xfd;
outportb(0x3d4, 0x4a);
outportb(0x3d5, c);
// Set register 48H bit1
outportb(0x3d4, 0x48);
c = inport(0x3d5) | 0x02;
outportb(0x3d4, 0x48);
outportb(0x3d5, c);
}
void BackLightOFF()
{
// Set register 4AH bit1 to 0 to enable GPIOB
outportb(0x3d4, 0x4a);
unsigned c = inport(0x3d5) & 0xfd;
outportb(0x3d4, 0x4a);
outportb(0x3d5, c);
// Clear register 48H bit1
outportb(0x3d4, 0x48);
c = inport(0x3d5) & 0xfd;
outportb(0x3d4, 0x48);
outportb(0x3d5, c);
}
Содержание PDX-089T-D5A-512
Страница 5: ...v This page is blank...
Страница 12: ...PDX 089T DM P Vortex86DX Panel PC with 8 9 WSVGA TFT LCD 7 1 3 Product Dimension...
Страница 23: ...PDX 089T DM P Vortex86DX Panel PC with 8 9 WSVGA TFT LCD 18 2 6 System Mapping...
Страница 24: ...PDX 089T DM P Vortex86DX Panel PC with 8 9 WSVGA TFT LCD 19...
Страница 25: ...PDX 089T DM P Vortex86DX Panel PC with 8 9 WSVGA TFT LCD 20...