15 lines
294 B
C
15 lines
294 B
C
//
|
|
// Created by cfif on 02.11.22.
|
|
//
|
|
|
|
#ifndef HVAC_ON_CHIP_BOOTLOADER_JUMP_H
|
|
#define HVAC_ON_CHIP_BOOTLOADER_JUMP_H
|
|
|
|
#include "stdint.h"
|
|
|
|
void BootFastJumpToAddress(const uint32_t address);
|
|
void BootJumpToAddress(const uint32_t address);
|
|
void Reset();
|
|
|
|
#endif //HVAC_ON_CHIP_BOOTLOADER_JUMP_H
|