diff options
Diffstat (limited to 'include/posix/driver/gpio.h')
-rw-r--r-- | include/posix/driver/gpio.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/posix/driver/gpio.h b/include/posix/driver/gpio.h deleted file mode 100644 index 0995729..0000000 --- a/include/posix/driver/gpio.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef GPIO_H -#define GPIO_H - -class GPIO { - private: - GPIO(const GPIO ©); - unsigned char ledstate; - - public: - GPIO () : ledstate(0) {} - void setup() {} - void led_on(unsigned char id); - void led_off(unsigned char id); - void led_toggle(unsigned char id); -}; - -extern GPIO gpio; - -#endif |