From 5c3f2991c7525897cbded38f62b14a7bd75df941 Mon Sep 17 00:00:00 2001 From: Robert Altner Date: Tue, 6 Dec 2022 16:22:55 +0100 Subject: [PATCH] begin work on wrapper --- control/src/wrapper/b15f.cpp | 6 ++++++ control/src/wrapper/b15f.h | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 control/src/wrapper/b15f.cpp create mode 100644 control/src/wrapper/b15f.h diff --git a/control/src/wrapper/b15f.cpp b/control/src/wrapper/b15f.cpp new file mode 100644 index 0000000..fa39f83 --- /dev/null +++ b/control/src/wrapper/b15f.cpp @@ -0,0 +1,6 @@ +#include "b15f.h" +#include "../drv/b15f.h" + +b15f_t* get_instance(void) { + +} \ No newline at end of file diff --git a/control/src/wrapper/b15f.h b/control/src/wrapper/b15f.h new file mode 100644 index 0000000..41dbd37 --- /dev/null +++ b/control/src/wrapper/b15f.h @@ -0,0 +1,9 @@ +#ifndef _B15F_H_ +#define _B15F_H_ + +struct b15f; +typedef struct b15f b15f_t; + +b15f_t* get_instance(void); + +#endif // _B15F_H_ \ No newline at end of file