eLooM for STM32 application
v3.3.0
A framework for multitasking low power embedded applications powerd by STM32
|
<DESCRIPTIOM> More...
#include "services/eloom_sysbase.h"
Go to the source code of this file.
Data Structures | |
struct | _IBoot_vtbl |
struct | _IBoot |
Typedefs | |
typedef struct _IBoot_vtbl | IBoot_vtbl |
Functions | |
SYS_DEFINE_STATIC_INLINE sys_error_code_t | IBootInit (IBoot *_this) |
SYS_DEFINE_STATIC_INLINE boolean_t | IBootCheckDFUTrigger (IBoot *_this) |
SYS_DEFINE_STATIC_INLINE uint32_t | IBootGetAppAdderss (IBoot *_this) |
SYS_DEFINE_STATIC_INLINE sys_error_code_t | IBootOnJampToApp (IBoot *_this, uint32_t nAppDress) |
<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 _IBoot_vtbl IBoot_vtbl |
Create a type name for _IBoot_vtbl.
|
inline |
Check if the DFU condition occurs. If it is TRUE the bootloader enters the DFU mode,
_this | [IN] specifies a pointer to the object. |
|
inline |
Used by the system to retrieve the address of the application to start.
_this | [IN] specifies a pointer to the object. |
|
inline |
Initialize the interface IBoot. It should be called after the object allocation and before using the object.
_this | [IN] specifies a pointer to the object. |
|
inline |
Called by the system before the jump to the other application. It can be used to perform some operations before the jump and also to stop the system from jump,.
_this | [IN] specifies a pointer to the object. |
nAppDress | [IN] specifies the address of the application to start. |