Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
imt::base::hal::stm32f103hd::HardwareExceptionManager Class Reference

The HardwareExceptionManager defines some hardware exceptions for which functions can be registered. More...

#include <Imt.Base.HAL.STM32F103HD/HardwareExceptionManager.h>

Classes

struct  HardwareException
 Defines different hardware exceptions. More...
 

Public Types

typedef void(* HardwareExceptionHandler) ()
 Define the prototype of a function which can handle a hardware exception.
 

Static Public Member Functions

static void initHardwareExceptionManager ()
 Initialize the HardwareExceptionManager.
 
static HardwareExceptionHandler registerHardwareExceptionHandler (HardwareExceptionHandler const handler, HardwareException::Id const hardwareException)
 Register a new handler for a specific exception.
 
static void handleException (HardwareException::Id const hardwareException)
 Handle the exception.
 

Detailed Description

The HardwareExceptionManager defines some hardware exceptions for which functions can be registered.

When the corresponding exception occurs the registered function will be called.

Definition at line 17 of file HardwareExceptionManager.h.

Member Typedef Documentation

◆ HardwareExceptionHandler

typedef void(* imt::base::hal::stm32f103hd::HardwareExceptionManager::HardwareExceptionHandler) ()

Define the prototype of a function which can handle a hardware exception.

Such a function can be registered for a particular HardwareException. When such a HardwareException occurs the function will be called

Parameters
hardwareExceptionThe exception that has occurred.

Definition at line 43 of file HardwareExceptionManager.h.

Member Function Documentation

◆ handleException()

static void imt::base::hal::stm32f103hd::HardwareExceptionManager::handleException ( HardwareException::Id const  hardwareException)
static

Handle the exception.

Parameters
hardwareExceptionType of hardware exception to be handled.

◆ initHardwareExceptionManager()

static void imt::base::hal::stm32f103hd::HardwareExceptionManager::initHardwareExceptionManager ( )
static

Initialize the HardwareExceptionManager.

◆ registerHardwareExceptionHandler()

static HardwareExceptionHandler imt::base::hal::stm32f103hd::HardwareExceptionManager::registerHardwareExceptionHandler ( HardwareExceptionHandler const  handler,
HardwareException::Id const  hardwareException 
)
static

Register a new handler for a specific exception.

Parameters
handlerHandler to be registered. Must not be nullptr
hardwareExceptionException for which the handler will be registered
Returns
The former HardwareExceptionHandler

The documentation for this class was generated from the following file: