aboutsummaryrefslogtreecommitdiff
path: root/mcu
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2016-07-01 10:58:05 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2016-07-01 10:58:05 +0900
commit1f23bd4048610ce98f3a77e28feff8a0cd346208 (patch)
treeaa787a59eac6f72f5fc684da035a15df84440dbc /mcu
parentf5880ee5d5559d45771e4a626c54309c88f437e7 (diff)
Change touch button for MKL27Z
Diffstat (limited to 'mcu')
-rw-r--r--mcu/clk_gpio_init-mkl27z.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcu/clk_gpio_init-mkl27z.c b/mcu/clk_gpio_init-mkl27z.c
index d126d94..630fd0b 100644
--- a/mcu/clk_gpio_init-mkl27z.c
+++ b/mcu/clk_gpio_init-mkl27z.c
@@ -88,14 +88,14 @@ gpio_init (void)
| (0<<4) /* PassiveFilterEnable=0 */
| (1<<2) /* SlewRateEnable = slow */
| (0<<1) /* pull enable = 0 */
- | (0<<0) /* puddselect= 0 */
+ | (0<<0) /* pull up select= 0 */
;
PORTB->PCR1 = (1<<8) /* GPIO */
| (0<<6) /* DriveStrengthEnable=0 */
| (0<<4) /* PassiveFilterEnable=0 */
| (1<<2) /* SlewRateEnable = slow */
| (0<<1) /* pull enable = 0 */
- | (0<<0) /* puddselect= 0 */
+ | (0<<0) /* pull up select= 0 */
;
GPIOB->PDDR = (1 << 1) | (1 << 0); /* PTB0, PTB1 : Output */