aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-oc2g/hw_misc.h
diff options
context:
space:
mode:
authorOmar Ramadan <oramadan@fb.com>2018-10-23 15:42:46 -0700
committerHarald Welte <laforge@gnumonks.org>2018-10-27 11:35:58 +0000
commit9c75c387c04175298d7fae3dd432d84bd622fccd (patch)
tree5275a426f7aa23564b82d4bb7f434aa46219734d /src/osmo-bts-oc2g/hw_misc.h
parentee9e8e9eb22257000765f4c6a5138fc0200e864f (diff)
Add OC-2G BTS sources
Diffstat (limited to 'src/osmo-bts-oc2g/hw_misc.h')
-rw-r--r--src/osmo-bts-oc2g/hw_misc.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/osmo-bts-oc2g/hw_misc.h b/src/osmo-bts-oc2g/hw_misc.h
new file mode 100644
index 00000000..b8f3332a
--- /dev/null
+++ b/src/osmo-bts-oc2g/hw_misc.h
@@ -0,0 +1,13 @@
+#ifndef _HW_MISC_H
+#define _HW_MISC_H
+
+enum oc2gbts_led_color {
+ LED_OFF,
+ LED_RED,
+ LED_GREEN,
+ LED_ORANGE,
+};
+
+int oc2gbts_led_set(enum oc2gbts_led_color c);
+
+#endif