/* ********************************************************************************************************* * EXAMPLE CODE * * This file is provided as an example on how to use Micrium products. * * Please feel free to use any application code labeled as 'EXAMPLE CODE' in * your application products. Example code may be used as is, in whole or in * part, or may be used as a reference only. This file can be modified as * required to meet the end-product requirements. * * Please help us continue to provide the Embedded community with the finest * software available. Your honesty is greatly appreciated. * * You can find our product's user manual, API reference, release notes and * more information at https://doc.micrium.com. * You can contact us at www.micrium.com. ********************************************************************************************************* */ /* ********************************************************************************************************* * * MICRIUM BOARD SUPPORT PACKAGE * * ST Microelectronics STM32 * on the * * STM3240G-EVAL * Evaluation Board * * Filename : bsp.h * Version : V1.00 * Programmer(s) : FF ********************************************************************************************************* */ /* ********************************************************************************************************* * MODULE * * Note(s) : (1) This header file is protected from multiple pre-processor inclusion through use of the * BSP present pre-processor macro definition. * * (2) This file and its dependencies requires IAR v6.20 or later to be compiled. * ********************************************************************************************************* */ #ifndef BSP_PRESENT #define BSP_PRESENT /* ********************************************************************************************************* * EXTERNS ********************************************************************************************************* */ #ifdef BSP_MODULE #define BSP_EXT #else #define BSP_EXT extern #endif /* ********************************************************************************************************* * INCLUDE FILES ********************************************************************************************************* */ #include #include #include #include "stm32f4xx.h" /* ********************************************************************************************************* * FUNCTION PROTOTYPES ********************************************************************************************************* */ CPU_INT32U BSP_CPU_ClkFreq(void); /* ********************************************************************************************************* * MODULE END ********************************************************************************************************* */ #endif /* End of module include. */