From 26b8ad852ed96139473d734750a5fc16aa3f1baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Mon, 24 Feb 2020 19:21:29 +0100 Subject: [PATCH] Add static module for onewire temperature sensors --- .../reflow-controller/onewire-temp-sensors.h | 25 +++++++++++++++++++ stm-firmware/onewire-temp-sensors.c | 22 ++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 stm-firmware/include/reflow-controller/onewire-temp-sensors.h create mode 100644 stm-firmware/onewire-temp-sensors.c diff --git a/stm-firmware/include/reflow-controller/onewire-temp-sensors.h b/stm-firmware/include/reflow-controller/onewire-temp-sensors.h new file mode 100644 index 0000000..799896f --- /dev/null +++ b/stm-firmware/include/reflow-controller/onewire-temp-sensors.h @@ -0,0 +1,25 @@ +/* Reflow Oven Controller +* +* Copyright (C) 2020 Mario Hüttel +* +* This file is part of the Reflow Oven Controller Project. +* +* The reflow oven controller is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License version 2 as +* published by the Free Software Foundation. +* +* The Reflow Oven Control Firmware is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with the reflow oven controller project. +* If not, see . +*/ + + +#ifndef __ONEWIRE_TEMP_SENSORS_H__ +#define __ONEWIRE_TEMP_SENSORS_H__ + +#endif /* __ONEWIRE_TEMP_SENSORS_H__ */ diff --git a/stm-firmware/onewire-temp-sensors.c b/stm-firmware/onewire-temp-sensors.c new file mode 100644 index 0000000..7864718 --- /dev/null +++ b/stm-firmware/onewire-temp-sensors.c @@ -0,0 +1,22 @@ +/* Reflow Oven Controller +* +* Copyright (C) 2020 Mario Hüttel +* +* This file is part of the Reflow Oven Controller Project. +* +* The reflow oven controller is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License version 2 as +* published by the Free Software Foundation. +* +* The Reflow Oven Control Firmware is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with the reflow oven controller project. +* If not, see . +*/ + + +#include \ No newline at end of file