aboutsummaryrefslogtreecommitdiffstats
path: root/src/atsamd/main.c
blob: d3943e6adc230230a4a40b0d1f9d4a318e1ba633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Main starting point for SAMD boards
//
// Copyright (C) 2018-2019  Kevin O'Connor <kevin@koconnor.net>
//
// This file may be distributed under the terms of the GNU GPLv3 license.

#include "board/armcm_boot.h" // armcm_main
#include "internal.h" // SystemInit
#include "sched.h" // sched_main

// Main entry point - called from armcm_boot.c:ResetHandler()
void
armcm_main(void)
{
    SystemInit();
    sched_main();
}