ODeV framework
v2
|
<DESCRIPTIOM> More...
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_INLINE sys_error_code_t | IBootInit (IBoot *this) |
SYS_DEFINE_INLINE boolean_t | IBootCheckDFUTrigger (IBoot *this) |
SYS_DEFINE_INLINE uint32_t | IBootGetAppAdderss (IBoot *this) |
SYS_DEFINE_INLINE sys_error_code_t | IBootOnJampToApp (IBoot *this, uint32_t nAppDress) |
<DESCRIPTIOM>
Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); You may not use this file except in compliance with the License. You may obtain a copy of the License at:
http://www.st.com/software_license_agreement_liberty_v2
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
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. |