18 lines
300 B
C
18 lines
300 B
C
/*
|
|
* iap_jump.h
|
|
*
|
|
* Created on: Oct 23, 2023
|
|
* Author: Warner
|
|
*/
|
|
|
|
#ifndef IAP_JUMP_H_
|
|
#define IAP_JUMP_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
// void IAP_JumpToAPP(uint32_t applicationAddress, uint32_t stackPointer);
|
|
void IAP_JumpToApp(uint32_t app_addr);
|
|
|
|
#endif /* IAP_JUMP_H_ */
|