mirror of https://github.com/Desuuuu/klipper.git
atsam: No need to call SystemInit() from main()
The SystemInit() is already called from armcm_boot.c. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
9b70c052cc
commit
9e2c17f468
|
@ -1,6 +1,6 @@
|
|||
// Main starting point for SAM3/SAM4 boards
|
||||
//
|
||||
// Copyright (C) 2016-2018 Kevin O'Connor <kevin@koconnor.net>
|
||||
// Copyright (C) 2016-2019 Kevin O'Connor <kevin@koconnor.net>
|
||||
//
|
||||
// This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
|
||||
|
@ -114,7 +114,6 @@ matrix_init(void)
|
|||
int
|
||||
main(void)
|
||||
{
|
||||
SystemInit();
|
||||
matrix_init();
|
||||
sched_main();
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue