From 0d761b048fbb51c697b63143f5e4bd74afe55b69 Mon Sep 17 00:00:00 2001 From: Mitchell Date: Sun, 19 Jul 2026 14:19:50 -0500 Subject: [PATCH] scaffold for bbnow --- drivers/CMakeLists.txt | 1 + drivers/bbnow.cpp | 3 +++ include/blk_box_drivers/bbnow.hpp | 6 ++++++ 3 files changed, 10 insertions(+) create mode 100644 drivers/bbnow.cpp create mode 100644 include/blk_box_drivers/bbnow.hpp diff --git a/drivers/CMakeLists.txt b/drivers/CMakeLists.txt index 9675c64..10e17c0 100644 --- a/drivers/CMakeLists.txt +++ b/drivers/CMakeLists.txt @@ -1,4 +1,5 @@ set(SOURCES + "bbnow.cpp" "char_lcd_headers.cpp" "char_lcd.cpp" "helpers.cpp" diff --git a/drivers/bbnow.cpp b/drivers/bbnow.cpp new file mode 100644 index 0000000..0149d5c --- /dev/null +++ b/drivers/bbnow.cpp @@ -0,0 +1,3 @@ +#include "blk_box_drivers/bbnow.hpp" + + diff --git a/include/blk_box_drivers/bbnow.hpp b/include/blk_box_drivers/bbnow.hpp new file mode 100644 index 0000000..65d8637 --- /dev/null +++ b/include/blk_box_drivers/bbnow.hpp @@ -0,0 +1,6 @@ +#ifndef BBNOW_HPP +#define BBNOW_HPP + + + +#endif /* BBNOW_HPP */