/* 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 __SAFETY_MEMORY_H__ #define __SAFETY_MEMORY_H__ /** * @brief Magic number to signal a valid safety memory header. */ #define SAFETY_MEMORY_MAGIC 0x12AA5CB7 /** * @brief Offset address for the safety_memory_header. * @note Any other value than 0UL doesn't really make sense. Therfore, this should not be changed. */ #define SAFETY_MEMORY_HEADER_ADDRESS 0UL /** * @brief Safety memory header */ struct safety_memory_header { uint32_t magic; /**< @brief Magic. Set to SAFETY_MEMORY_MAGIC */ uint32_t boot_status_offset; /**< Offset of the safety_memory_boot_status struct (in 32 bit words)*/ uint32_t err_memory_offset; /**< Offset of the error memory */ uint32_t err_memory_end; /**< End of the error memory. This points to the word after the error memory, containing the CRC of the whole backup RAM. */ uint32_t magic_i; /**< @brief Invers Magic. Set to ~SAFETY_MEMORY_MAGIC */ }; struct safety_memory_boot_status { uint32_t reboot_to_bootloader; uint32_t code_updated; } #endif /* __SAFETY_MEMORY_H__ */