/* Copyright 2017 fishpepper gmail.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . author: fishpepper gmail.com */ #ifndef HAL_LED_H_ #define HAL_LED_H_ #include "portmacros.h" #include "config.h" #include "hal_cc25xx.h" // use helper macros to do expansion to *DIR etc // LEDS #define LED_GREEN_DIR PORT2DIR(LED_GREEN_PORT) #define LED_RED_DIR PORT2DIR(LED_RED_PORT) #define LED_RED_BIT PORT2BIT(LED_RED_PORT, LED_RED_PIN) #define LED_GREEN_BIT PORT2BIT(LED_GREEN_PORT, LED_GREEN_PIN) #define hal_led_green_init() { LED_GREEN_DIR |= (1 << LED_GREEN_PIN); led_green_off(); } #define hal_led_green_on() { LED_GREEN_BIT = 1; } #define hal_led_green_off() { LED_GREEN_BIT = 0; } #define hal_led_green_toggle() { LED_GREEN_BIT = !LED_GREEN_BIT; } #define hal_led_red_init() { LED_RED_DIR |= (1 << LED_RED_PIN); led_red_off(); } #define hal_led_red_on() { LED_RED_BIT = 1; } #define hal_led_red_off() { LED_RED_BIT = 0; } #define hal_led_red_toggle() { LED_RED_BIT = !LED_RED_BIT; } #endif // HAL_LED_H_