begin work on wrapper

This commit is contained in:
Robert Altner 2022-12-06 16:22:55 +01:00
parent 5a49a37e69
commit 5c3f2991c7
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#include "b15f.h"
#include "../drv/b15f.h"
b15f_t* get_instance(void) {
}

View file

@ -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_