From 85e11a1a460f08f1791a03a6bb95c976b7117ab8 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 11 Jan 2018 08:55:15 +0100 Subject: use inline functions for most gpio --- src/arch/msp430fr5969lp/driver/gpio.cc | 40 ---------------------------------- 1 file changed, 40 deletions(-) (limited to 'src/arch/msp430fr5969lp/driver/gpio.cc') diff --git a/src/arch/msp430fr5969lp/driver/gpio.cc b/src/arch/msp430fr5969lp/driver/gpio.cc index e1179af..1403aed 100644 --- a/src/arch/msp430fr5969lp/driver/gpio.cc +++ b/src/arch/msp430fr5969lp/driver/gpio.cc @@ -1,43 +1,3 @@ #include "driver/gpio.h" -#include - -void GPIO::setup() -{ - P1OUT = 0; - P2OUT = 0; - P3OUT = 0; - P4OUT = 0; - P1DIR = BIT0; - P2DIR = 0; - P3DIR = 0; - P4DIR = BIT6; -} - -void GPIO::led_on(unsigned char id) -{ - if (id == 0) { - P1OUT |= BIT0; - } else { - P4OUT |= BIT6; - } -} - -void GPIO::led_off(unsigned char id) -{ - if (id == 0) { - P1OUT &= ~BIT0; - } else { - P4OUT &= ~BIT6; - } -} - -void GPIO::led_toggle(unsigned char id) -{ - if (id == 0) { - P1OUT ^= BIT0; - } else { - P4OUT ^= BIT6; - } -} GPIO gpio; -- cgit v1.2.3