You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
341 B
19 lines
341 B
/*
|
|
* Copyright (c) 2019, Erich Styger
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include "application.h"
|
|
#include "pin_mux.h"
|
|
#include "clock_config.h"
|
|
#include "peripherals.h"
|
|
|
|
int main(void) {
|
|
/* Init board hardware. */
|
|
BOARD_InitBootPins();
|
|
BOARD_InitBootClocks();
|
|
BOARD_InitBootPeripherals();
|
|
APP_Run();
|
|
return 0;
|
|
}
|
|
|