Shubham Kulkarni | 052561d | 2021-07-20 11:42:44 +0530 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: Apache-2.0 | ||||
5 | */ | ||||
6 | |||||
7 | #include <bootutil/bootutil.h> | ||||
8 | |||||
9 | int main() | ||||
10 | { | ||||
11 | struct boot_rsp rsp; | ||||
12 | int rv = boot_go(&rsp); | ||||
13 | |||||
14 | if (rv == 0) { | ||||
15 | // | ||||
16 | } | ||||
17 | while(1); | ||||
18 | } |