17 lines
435 B
C
17 lines
435 B
C
//
|
|
// Created by cfif on 14.07.2026.
|
|
//
|
|
|
|
#ifndef HVAC_M7_HARDFAULT_H
|
|
#define HVAC_M7_HARDFAULT_H
|
|
|
|
#include "stdint.h"
|
|
|
|
#define SIZE_BUF_HARD_FAULT 32
|
|
|
|
extern __attribute__((section(".ncache_bss"))) volatile uint32_t hardFault_addresses[32];
|
|
extern __attribute__((section(".ncache_bss"))) volatile uint32_t hardFault_count;
|
|
extern __attribute__((section(".ncache_bss"))) volatile uint32_t hardFault_magic;
|
|
|
|
#endif //HVAC_M7_HARDFAULT_H
|