页次: 1
[ 2.688725] systemd[61]: /lib/systemd/system-generators/systemd-gpt-auto-generator failed with error code 127.
[ 2.889637] systemd[1]: Cannot add dependency job for unit dbus.socket, ignoring: Unit dbus.socket failed to load: No such file or directory.
[ 2.907827] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
文件系统有问题请,要先解决上面这几个错误吧
lilo 说:@cody http://www.chip-community.org/index.php/SPI_support
用逻辑分析仪呢?能不能抓到
谢谢 ! 已经用示波器成功抓到了
好奇是怎么解决的?
晕哥 说:V3s 的 lradc 驱动已经写好,用户层只要访问 /dev/input/eventX 就可以了, 自己编译一个 evtest.c 就可以测试按键输入了。
我知道有自带的sun4i-lradc-keys驱动,但是我刚刚开始学写驱动,希望自己写个简单的lradc驱动来实现相关功能,但我没搞懂怎么如何去检测是哪个按键按下...网上大部分都是1个gpio对应1个按键,但是V3S用的是ADC按键
https://github.com/Lichee-Pi/linux/blob/zero-4.13.y/drivers/input/keyboard/sun4i-lradc-keys.c
注册成为输入设备,按后利用adc中断输出自定义的key值给用户层。
你也可以写一个最简单的驱动程序,利用这个adc,从轮询开始,先别用中断。
论坛有搜索功能,为什么不先搜索然后跟帖呢
这个我也找了很久,真需要这种呀,现在还有一种是emmc的,走的也是SD卡的协议,
http://www.360doc.com/content/16/1112/11/38024613_605833100.shtml
eMMC本来就兼容SDIO协议吧,
市场上的 eMMC都是BGA封装,容量动不动就2G/4G起,价格也是20多人民币起,
如果有 10块钱以内的 SD NAND还是挺不错的,
比起SPI NAND来, SD NAND软件复杂度大大降低.
各位大神,请教下v3s dts里面iic配置,驱动触摸屏,io口和中断的配置,研究半天没有搞明白
gt9xx: gt9xx@0x14 {
compatible = "goodix,gt911";
status = "okay";
reg = <0x14>;
interrupt-parent = <&pio>;
interrupts = <1 3>;
//interrupts = <GIC_SPI 15 (GIC_CPU_MASK_SIMPLE(3) | IRQ_TYPE_LEVEL_LOW)>;
//interrupt-parent = <&pio>;
//interrupts = <1 3 IRQ_TYPE_LEVEL_LOW>
//reset = <&pio 6 5 GPIO_ACTIVE_LOW>;
//irq = <&pio 1 3 GPIO_ACTIVE_LOW>;
goodix,rst-gpio = <&pio 6 5 GPIO_ACTIVE_LOW>;
goodix,irq-gpio = <&pio 1 3 GPIO_ACTIVE_LOW>;
};
PG5是reset,PB3是int
驱动代码里有这个定义,是不是对应dts里面io的名称呢?
#define GOODIX_GPIO_INT_NAME "irq"
#define GOODIX_GPIO_RST_NAME "reset"
页次: 1