emulation 썸네일형 리스트형 linux 에서 GPIO로 I2C Emulation 사용하기 mach-모델명.h code 에서 에뮬레이션 i2c device 등록 #define GPIO_TOUCH_SDA S3C64XX_GPC(5) static struct i2c_gpio_platform_data i2c_touch_platdata = { .sda_pin = GPIO_TOUCH_SDA, // gpio number .scl_pin = GPIO_TOUCH_SCL, .udelay = 2, .sda_is_open_drain = 0, .scl_is_open_drain = 0, .scl_is_output_only = 0 }; static struct platform_device sec_device_i2c_touch = { .name = "i2c-gpio", .id = 4, // adepter number .d.. 더보기 이전 1 다음