From 5270088f730a7e30155a642dcd5c4e9a80055d7a Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Sun, 8 May 2022 01:35:55 +1000 Subject: More messing around with plugin system Just more attempts, but I think I'm gonna switch over to dynamic .so/.dll loading. That would be pretty fun to check out. --- boards.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 boards.h (limited to 'boards.h') diff --git a/boards.h b/boards.h new file mode 100644 index 0000000..9090570 --- /dev/null +++ b/boards.h @@ -0,0 +1,6 @@ +#include "board/mxblue/board.h" +#include "board/quack/board.h" + +#define BOARDS \ + BOARD(mxblue) \ + BOARD(quack) -- cgit