aboutsummaryrefslogtreecommitdiffstats
path: root/src/atsamd/main.c
blob: a5b7196bce9cd436be28c5c6baa850fda0720320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 "sched.h" // sched_main

// Main entry point
int
main(void)
{
    sched_main();
    return 0;
}