Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.c « avr « src - github.com/Klipper3d/klipper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7651ab4a4ba2ee77789a118aa6ffa35ad9e45526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Main starting point for AVR boards.
//
// Copyright (C) 2016  Kevin O'Connor <kevin@koconnor.net>
//
// This file may be distributed under the terms of the GNU GPLv3 license.

#include "irq.h" // irq_enable
#include "sched.h" // sched_main

// Main entry point for avr code.
int
main(void)
{
    irq_enable();
    sched_main();
    return 0;
}