eLooM for STM32 application
v3.3.0
|
<DESCRIPTIOM> More...
#include "services/eloom_sysbase.h"
Go to the source code of this file.
Data Structures | |
struct | _IApplicationErrorDelegate_vtbl |
struct | _IApplicationErrorDelegate |
Typedefs | |
typedef struct _IApplicationErrorDelegate_vtbl | IApplicationErrorDelegate_vtbl |
<DESCRIPTIOM>
Copyright (c) 2017 STMicroelectronics. All rights reserved.
This software is licensed under terms that can be found in the LICENSE file in the root directory of this software component. If no LICENSE file comes with this software, it is provided AS-IS.
typedef struct _IApplicationErrorDelegate_vtbl IApplicationErrorDelegate_vtbl |
Create type name for _IApplicationErrorDelegate_vtbl.
|
inline |
Add a first responder object. The first responders are grouped in a priority set. Zero is the highest priority. If an IErrFirstResponder object with the same priority was already added, then it is replaced with the new one.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |
pFirstResponder | [IN] specifies a pointer to the a first responder object. If it is NULL then the IErrFirstResponder with nPriority priority is removed from the application error delegate. |
nPriority | [IN] specifies the priority of the error first responder. Zero is the highest priority. |
|
inline |
Get the highest priority allowed for a first responder object.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |
|
inline |
Initialize the driver. This method should be used by a task object during the hardware initialization process.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |
pParams | specifies a pointer to a subclass defined initialization parameters. |
|
inline |
Used by the AED to notify the system if the last error has been recovered or not.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |
|
inline |
The INIT task call this method as soon as a new error event is posted by the application. This allows the application error delegate to provide a first respond to critical errors. The application error delegate should notify the first responder objects starting from the highest priority one.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |
xEvent | xEvent [IN] specifies an error event |
|
inline |
Called by the system just before the control is released to the application tasks.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |
pxContext | [IN] specifies a pointer to the application context. |
|
inline |
The INIT task uses this function to deliver an error event to the application error manager delegate object.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |
pxContext | [IN] specifies a pointer to the application context. |
xEvent | [IN] specifies an error event |
|
inline |
Remove a first responder object rom the application error delegate.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |
pFirstResponder | [IN] specifies a pointer to the a first responder object to be removed. |
|
inline |
Reset the counter of the AED. Usually an AED use some kind of timeout to check that all managed tasks are working fine. A task should call this method before a critical operation, that is for example a write operation in FLASH or EEPROM, or a long critical section. For convenience the managed task interface has a function IMTResetAEDCounter() that can be used by a task instead of call directly this function.
_this | [IN] specifies a pointer to an IApplicationErrorDelegate object. |