summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-05-01 01:36:15 -0400
committerKyle Gunger <kgunger12@gmail.com>2024-05-01 01:36:15 -0400
commit1b6b485858dd883064e11313711df3658e6e5bca (patch)
tree6851aeff581ee310d5509f2a240d4380ac3e356e
parent3e168d5920afd4f8a27b57850f4baa8df6b77cbf (diff)
Link libopensmarts
-rw-r--r--Makefile21
-rw-r--r--build/artifacts/main.obin0 -> 1440 bytes
-rwxr-xr-xbuild/osm-thermaldbin0 -> 20352 bytes
-rw-r--r--log4
-rw-r--r--src/main.c13
5 files changed, 38 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b3ce19a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+
+SRC_DIR = src
+BUILD_DIR = build
+OBJ_DIR = $(BUILD_DIR)/artifacts
+INCLUDE_DIR = ./include
+
+SRCS = $(notdir $(wildcard $(SRC_DIR)/*.c))
+OBJS = $(addsuffix .o, $(basename $(SRCS)))
+
+CFLAGS ?= -Werror -Wall
+
+build: build_dir $(OBJS)
+ $(CC) -lopensmarts -o $(BUILD_DIR)/osm-thermald $(addprefix $(OBJ_DIR)/, $(OBJS))
+
+%.o: $(SRC_DIR)/%.c
+ $(CC) $(CFLAGS) -c -I$(INCLUDE_DIR) -o $(BUILD_DIR)/artifacts/$@ $<
+
+build_dir:
+ mkdir -p $(BUILD_DIR)
+ mkdir -p $(OBJ_DIR)
+
diff --git a/build/artifacts/main.o b/build/artifacts/main.o
new file mode 100644
index 0000000..5a4750b
--- /dev/null
+++ b/build/artifacts/main.o
Binary files differ
diff --git a/build/osm-thermald b/build/osm-thermald
new file mode 100755
index 0000000..c61aa94
--- /dev/null
+++ b/build/osm-thermald
Binary files differ
diff --git a/log b/log
new file mode 100644
index 0000000..1f0b513
--- /dev/null
+++ b/log
@@ -0,0 +1,4 @@
+bind: Address already in use
+bind: Success
+-1 /run/osm/onboard/0
+Bound!
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..8b9582c
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,13 @@
+#include <stddef.h>
+#include <unistd.h>
+#include <osm/bind.h>
+
+int main(int argc, char **argv)
+{
+ int fd = osm_open_onboard(NULL);
+ if (fd >= 0)
+ {
+ close(fd);
+ }
+ return 0;
+}