From 1713c82841203db0a4e644a8dc366bc37a054e25 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Fri, 14 Aug 2015 12:23:49 -0700 Subject: [PATCH] Move ChibiOS init comments into Wiki. --- firmware/application/main.cpp | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/firmware/application/main.cpp b/firmware/application/main.cpp index d1e47739..13189be4 100755 --- a/firmware/application/main.cpp +++ b/firmware/application/main.cpp @@ -98,34 +98,6 @@ static spi_bus_t ssp0 = { }; #endif -/* ChibiOS initialization sequence: - * ResetHandler: - * Initialize FPU (if present) - * Initialize stacks (fill with pattern) - * __early_init() - * Enable extra processor exceptions for debugging - * Init data segment (flash -> data) - * Initialize BSS (fill with 0) - * __late_init() - * reset_peripherals() - * halInit() - * hal_lld_init() - * Init timer 3 as cycle counter - * Init RIT as SysTick - * palInit() - * gptInit() - * i2cInit() - * sdcInit() - * spiInit() - * rtcInit() - * boardInit() - * chSysInit() - * Constructors - * main() - * Destructors - * _default_exit() (default is infinite loop) - */ - extern "C" { CH_IRQ_HANDLER(RTC_IRQHandler) {