提交 abbe18c3 编写于 作者: M Minkyu Kang 提交者: trix

s5pc1xx: update the README file

Because adds support the GPIO Interface, README file is updated.
Signed-off-by: NMinkyu Kang <mk7.kang@samsung.com>
上级 ab693e9c
......@@ -41,7 +41,23 @@ To check SoC:
printf("cpu is s5pc110\n");
gpio
not supported yet.
struct s5pc100_gpio *gpio = (struct s5pc100_gpio*)S5PC100_GPIO_BASE;
/* GPA[0] pin set to irq */
gpio_cfg_pin(&gpio->gpio_a, 0, GPIO_IRQ);
/* GPA[0] pin set to input */
gpio_direction_input(&gpio->gpio_a, 0);
/* GPA[0] pin set to output/high */
gpio_direction_output(&gpio->gpio_a, 0, 1);
/* GPA[0] value set to low */
gpio_set_value(&gpio->gpio_a, 0, 0);
/* get GPA[0] value */
value = gpio_get_value(&gpio->gpio_a, 0);
Links
=====
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册