00001 /*This file is prepared for Doxygen automatic documentation generation.*/ 00083 00084 /* Copyright (c) 2009 Atmel Corporation. All rights reserved. 00085 * 00086 * Redistribution and use in source and binary forms, with or without 00087 * modification, are permitted provided that the following conditions are met: 00088 * 00089 * 1. Redistributions of source code must retain the above copyright notice, 00090 * this list of conditions and the following disclaimer. 00091 * 00092 * 2. Redistributions in binary form must reproduce the above copyright notice, 00093 * this list of conditions and the following disclaimer in the documentation 00094 * and/or other materials provided with the distribution. 00095 * 00096 * 3. The name of Atmel may not be used to endorse or promote products derived 00097 * from this software without specific prior written permission. 00098 * 00099 * 4. This software may only be redistributed and used in connection with an Atmel 00100 * AVR product. 00101 * 00102 * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED 00103 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 00104 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE EXPRESSLY AND 00105 * SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, 00106 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00107 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00108 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00109 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00110 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 00111 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00112 */ 00113 00114 //_____ I N C L U D E S ___________________________________________________ 00115 00116 #include "config.h" 00117 #include "modules/scheduler/scheduler.h" 00118 #include "lib_mcu/wdt/wdt_drv.h" 00119 #include "lib_mcu/power/power_drv.h" 00120 00121 //_____ M A C R O S ________________________________________________________ 00122 00123 //_____ D E F I N I T I O N S ______________________________________________ 00124 00125 int main(void) 00126 { 00127 wdtdrv_disable(); 00128 Clear_prescaler(); 00129 scheduler(); 00130 return 0; 00131 } 00132 00136 #ifdef __GNUC__ 00137 // Locate low level init function before RAM init (init3 section) 00138 // and remove std prologue/epilogue 00139 char __low_level_init(void) __attribute__ ((section (".init3"),naked)); 00140 #endif 00141 00142 #ifdef __cplusplus 00143 extern "C" { 00144 #endif 00145 char __low_level_init() 00146 { 00147 Clear_prescaler(); 00148 return 1; 00149 } 00150 #ifdef __cplusplus 00151 } 00152 #endif 00154
1.5.3