File indexing completed on 2025-05-11 08:23:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef LIBBSP_ARM_STM32F4_BSP_H
0016 #define LIBBSP_ARM_STM32F4_BSP_H
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028 #include <bspopts.h>
0029 #include <bsp/default-initial-extension.h>
0030
0031 #include <rtems.h>
0032
0033 #ifdef __cplusplus
0034 extern "C" {
0035 #endif
0036
0037 #define BSP_FEATURE_IRQ_EXTENSION
0038
0039 #define BSP_ARMV7M_IRQ_PRIORITY_DEFAULT (13 << 4)
0040
0041 #define BSP_ARMV7M_SYSTICK_PRIORITY (14 << 4)
0042
0043 #define BSP_ARMV7M_SYSTICK_FREQUENCY STM32F4_HCLK
0044
0045 #ifdef __cplusplus
0046 }
0047 #endif
0048
0049
0050
0051
0052 #endif