/* Misc HW routines for NuRAN Wireless Litecell 1.5 BTS */ /* Copyright (C) 2015 by Yves Godin * * Based on sysmoBTS: * (C) 2012 by Harald Welte * * All Rights Reserved * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero 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 Affero General Public License * along with this program. If not, see . * */ #include #include #include #include #include #include #include #include #include #include #include "hw_misc.h" int lc15bts_led_set(enum lc15bts_led_color c) { int fd, rc; uint8_t cmd[2]; switch (c) { case LED_OFF: cmd[0] = 0; cmd[1] = 0; break; case LED_RED: cmd[0] = 1; cmd[1] = 0; break; case LED_GREEN: cmd[0] = 0; cmd[1] = 1; break; case LED_ORANGE: cmd[0] = 1; cmd[1] = 1; break; default: return -EINVAL; } fd = open("/var/lc15/leds/led0/brightness", O_WRONLY); if (fd < 0) return -ENODEV; rc = write(fd, cmd[0] ? "1" : "0", 2); if (rc != 2) { return -1; } close(fd); fd = open("/var/lc15/leds/led1/brightness", O_WRONLY); if (fd < 0) return -ENODEV; rc = write(fd, cmd[1] ? "1" : "0", 2); if (rc != 2) { return -1; } close(fd); return 0; }