blob: 9b98fbf97d8ad2e5e3c3790d67d47b38fcf1c534 [file] [log] [blame]
/*
* Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <bootutil/bootutil.h>
int main()
{
struct boot_rsp rsp;
int rv = boot_go(&rsp);
if (rv == 0) {
//
}
while(1);
}