我正在使用 pc1602f PowerTip 使用此方案直接连接到 PC 并行端口: http ://www.beyondlogic.org/parlcd/parlcd.htm
一切都很好,可以为 LCD 供电,并用黑色块显示前排,直到那时还好,但现在我想通过并行端口发送信息。
如果您查看该页面,您会看到有一个将信息发送到 lcd 的来源,但使用的是 windows 库:呵呵:
我离开我的代码试图成为 linux。
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <termios.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/io.h>
#define PORTADDRESS 0x3f8
#define DATA PORTADDRESS+0
#define STATUS PORTADDRESS+1
#define CONTROL PORTADDRESS+2
main(int argc, char **argv)
{char string[] = {"Testing 1,2,3"};
int count;
int len;
char init[10];
init[0] = 0x0F; /* Init Display */
init[1] = 0x01; /* Clear Display */
init[2] = 0x38; /* Dual Line / 8 Bits */
if (ioperm(PORTADDRESS,1,1))
fprintf(stderr, "No se puede acceder al: %x\n", PORTADDRESS), exit(1);
outb(CONTROL, inb(CONTROL) & 0xDF);
outb(CONTROL, inb(CONTROL) & 0x08);
for (count = 0; count <= 2; count++)
{
outb(DATA, init[count]);
outb(CONTROL,inb(CONTROL) | 0x01);
sleep(20);
outb(CONTROL,inb(CONTROL) & 0xFE);
sleep(20);
}
outb(CONTROL, inb(CONTROL) & 0xF7);
len = strlen(string);
for (count = 0; count < len; count++)
{
outb(DATA, string[count]);
outb(CONTROL,inb(CONTROL) | 0x01);
sleep(2);
outb(CONTROL,inb(CONTROL) & 0xFE);
sleep(2);
}
}
编译完美,但是当我想以 root 身份尝试并运行它时,它会抛出我
根@ubuntu:/
媒体/E80C-30D5/LCD/内部版本#./lcd
分段错误(`core'生成)
root@ubuntu: /media/E80C-30D5/LCD/build #
看着 dmesg 我发现了这个。
[3176.691837] lcd [3867] 一般保护 ip: 400cb4 sp: 7fff887ad290 错误: 0 in lcd [+2000 400 000]root@ubuntu: /media/E80C-30D5/LCD/build #
我把ttyS的dmesg日志*
root @ ubuntu: / media/E80C-30D5/LCD/build # dmesg | grep ttyS
[2.335717] serial8250: ttyS0 at I / O 0x3f8 (irq = 4) is a 16550A
[2.335817] serial8250: ttyS1 at I / O 0x2f8 (irq = 3) is a 16550A
[2.336100] 00:0 b: ttyS1 at I / O 0x2f8 (irq = 3) is a 16550A
[2.336207] 00:0 c: ttyS0 at I / O 0x3f8 (irq = 4) is a 16550A
root @ ubuntu: / media/E80C-30D5/LCD/build #
不要让它运行,你能帮我吗?