wolfBoot/test-app/app_raspi3.c

40 lines
1.1 KiB
C
Raw Normal View History

/* app_raspi3.c
*
* Test bare-metal boot application
*
2021-07-19 09:49:44 -05:00
* Copyright (C) 2021 wolfSSL Inc.
*
* This file is part of wolfBoot.
*
* wolfBoot is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
2024-04-16 09:46:15 -05:00
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* wolfBoot is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
*/
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "wolfboot/wolfboot.h"
#ifdef TARGET_raspi3
volatile uint32_t time_elapsed = 0;
void __attribute__((section(".boot"))) main(void) {
/* Wait for reboot */
while(1)
;
}
#endif /** TARGET_raspi3 **/