From 30a29dcd0d064ab8403a9afb32c59800bb346840 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 23 Sep 2021 21:05:09 +0200 Subject: GPIO: Specify default LED ID --- include/arch/lm4f120h5qr-stellaris/driver/gpio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/arch/lm4f120h5qr-stellaris') diff --git a/include/arch/lm4f120h5qr-stellaris/driver/gpio.h b/include/arch/lm4f120h5qr-stellaris/driver/gpio.h index f71164e..3c99eb9 100644 --- a/include/arch/lm4f120h5qr-stellaris/driver/gpio.h +++ b/include/arch/lm4f120h5qr-stellaris/driver/gpio.h @@ -30,13 +30,13 @@ class GPIO { inline void setup() { mp_gpio_setup(); } - inline void led_on(unsigned char id) { + inline void led_on(unsigned char id = 0) { mp_gpio_write(pf_1 + id, 1); } - inline void led_off(unsigned char id) { + inline void led_off(unsigned char id = 0) { mp_gpio_write(pf_1 + id, 0); } - inline void led_toggle(unsigned char id) { + inline void led_toggle(unsigned char id = 0) { mp_gpio_write(pf_1 + id, !mp_gpio_read(pf_1 + id)); } inline void input(unsigned char const pin) { -- cgit v1.2.3