blob: 9b98fbf97d8ad2e5e3c3790d67d47b38fcf1c534 [file] [log] [blame]
Shubham Kulkarni052561d2021-07-20 11:42:44 +05301/*
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
9int main()
10{
11 struct boot_rsp rsp;
12 int rv = boot_go(&rsp);
13
14 if (rv == 0) {
15 //
16 }
17 while(1);
18}