summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-11-21 16:45:57 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2022-11-21 19:56:54 +0100
commite9f24d734a57699ee3817a8dcd093b90fcbad045 (patch)
tree9d0c2cd453ec2997a14691a448024f5073126040 /src/host/layer23/include
parentdd03ea6a82355023fbaf5de1a8cdc346eab58b8c (diff)
host/layer23: Add modem app
This app will allow setting up a tun device to transmit/receive data as a GPRS MS against a GSM network. This is just the initial skeleton so that people can work on it further in follow-up commits. Related: OS#5503 Change-Id: I8a1121b3287da7d7330c30e3118affa8fd1da61b
Diffstat (limited to 'src/host/layer23/include')
-rw-r--r--src/host/layer23/include/osmocom/bb/Makefile.am2
-rw-r--r--src/host/layer23/include/osmocom/bb/modem/Makefile.am1
-rw-r--r--src/host/layer23/include/osmocom/bb/modem/modem.h6
3 files changed, 8 insertions, 1 deletions
diff --git a/src/host/layer23/include/osmocom/bb/Makefile.am b/src/host/layer23/include/osmocom/bb/Makefile.am
index 58a5f7fb..3b6a4d8b 100644
--- a/src/host/layer23/include/osmocom/bb/Makefile.am
+++ b/src/host/layer23/include/osmocom/bb/Makefile.am
@@ -1 +1 @@
-SUBDIRS = common misc mobile
+SUBDIRS = common misc mobile modem
diff --git a/src/host/layer23/include/osmocom/bb/modem/Makefile.am b/src/host/layer23/include/osmocom/bb/modem/Makefile.am
new file mode 100644
index 00000000..d99240db
--- /dev/null
+++ b/src/host/layer23/include/osmocom/bb/modem/Makefile.am
@@ -0,0 +1 @@
+noinst_HEADERS = modem.h
diff --git a/src/host/layer23/include/osmocom/bb/modem/modem.h b/src/host/layer23/include/osmocom/bb/modem/modem.h
new file mode 100644
index 00000000..3945804d
--- /dev/null
+++ b/src/host/layer23/include/osmocom/bb/modem/modem.h
@@ -0,0 +1,6 @@
+#pragma once
+
+#include <stdbool.h>
+
+int modem_start(void);
+