/** ****************************************************************************** * This module was written for Afflatus Techtronics - Resource section * * @author : Ashwin * * Project : led * @file : main.h * @date : Nov 19, 2011 9:50:04 PM * * Platform : STM32F4 * Compiler : CodeSourcery arm-2011.03-42-arm-none-eabi ****************************************************************************** * @attention * This work is licensed under the Creative Commons * Attribution-NonCommercial-ShareAlike 3.0 Unported License. To view a copy * of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or * send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain * View, California, 94041, USA. * * Copyright (C) 2011 * Afflatus Techtronics * and Ashwin Vijayakumar ****************************************************************************** * @brief * Module Description: * (fill in a detailed description of the module’s function here). ****************************************************************************** */ /** Include guard symbol - Protect against multiple inclusions ****************/ #ifndef MAIN_H_ #define MAIN_H_ /****************************************************************************** * Add #include "main.h" in source files that need access to the below * listed declarations. *****************************************************************************/ /** typedef section (Project scope) ------------------------------------------- * Add typedef's with project scope here. * Capitalization: Upper_Camel_Case. * --------------------------------------------------------------------------*/ /** Constants section (Project scope) ----------------------------------------- * Add all constants with project scope here. * Capitalization: ALL_CAPS. * --------------------------------------------------------------------------*/ /** Macros section (Project scope) -------------------------------------------- * Add all macros with project scope here. * Capitalization: ALL_CAPS. * --------------------------------------------------------------------------*/ /** Global variables section (Project scope) ---------------------------------- * Add global variables with project scope here. * Capitalization: lower_case. * Declare them with 'extern' keyword. * --------------------------------------------------------------------------*/ /** Function prototypes section (Project scope) ------------------------------- * Add prototypes for all functions with project scope here. * Capitalization: lower_Camel_Case. * --------------------------------------------------------------------------*/ /** Getter/setter prototype section (Project scope) --------------------------- * Add prototypes for getter/setter methods here. * Capitalization: get_Camel_Case/is_Camel_Case/set_Camel_Case. * --------------------------------------------------------------------------*/ #endif /* MAIN_H_ */ /** END OF FILE ******************** Copyright (C) 2011 Afflatus Techtronics */