From 4c60e54fe7922339602487050059c44deb3a2119 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 14 Feb 2022 19:45:21 +0100 Subject: [PATCH] added empty file for common max 1227 code --- mission/devices/CMakeLists.txt | 1 + mission/devices/max1227.cpp | 1 + mission/devices/max1227.h | 8 ++++++++ 3 files changed, 10 insertions(+) create mode 100644 mission/devices/max1227.cpp create mode 100644 mission/devices/max1227.h diff --git a/mission/devices/CMakeLists.txt b/mission/devices/CMakeLists.txt index 03ff3556..351becdd 100644 --- a/mission/devices/CMakeLists.txt +++ b/mission/devices/CMakeLists.txt @@ -16,6 +16,7 @@ target_sources(${TARGET_NAME} PUBLIC RadiationSensorHandler.cpp GyroADIS1650XHandler.cpp RwHandler.cpp + max1227.cpp ) diff --git a/mission/devices/max1227.cpp b/mission/devices/max1227.cpp new file mode 100644 index 00000000..762b7ba1 --- /dev/null +++ b/mission/devices/max1227.cpp @@ -0,0 +1 @@ +#include "max1227.h" diff --git a/mission/devices/max1227.h b/mission/devices/max1227.h new file mode 100644 index 00000000..e9276e03 --- /dev/null +++ b/mission/devices/max1227.h @@ -0,0 +1,8 @@ +#ifndef MISSION_DEVICES_MAX1227_H_ +#define MISSION_DEVICES_MAX1227_H_ + +namespace max1227 { + +} + +#endif /* MISSION_DEVICES_MAX1227_H_ */