source: rtems/bsps/arm/stm32f4/include/bsp.h @ 212663be

5
Last change on this file since 212663be was 212663be, checked in by Sebastian Huber <sebastian.huber@…>, on 02/26/19 at 14:44:50

bsps: Adjust architecture Doxygen groups

  • Use CamelCase as it is not used in our C code. Enables simple search and replace.
  • Prefix with "RTEMS" to aid deployment and integration. It aids searching and sorting.

Update #3706.

  • Property mode set to 100644
File size: 1022 bytes
Line 
1/**
2 * @file
3 * @ingroup arm_stm34f4
4 * @brief Global BSP definitions.
5 */
6
7/*
8 * Copyright (c) 2012 Sebastian Huber.  All rights reserved.
9 *
10 *  embedded brains GmbH
11 *  Obere Lagerstr. 30
12 *  82178 Puchheim
13 *  Germany
14 *  <rtems@embedded-brains.de>
15 *
16 * The license and distribution terms for this file may be
17 * found in the file LICENSE in this distribution or at
18 * http://www.rtems.org/license/LICENSE.
19 */
20
21/**
22 * @defgroup arm_stm32f4 STM32F4 Support
23 * @ingroup RTEMSBSPsARM
24 * @brief STM32f4 Support Package
25 * @{
26 */
27
28#ifndef LIBBSP_ARM_STM32F4_BSP_H
29#define LIBBSP_ARM_STM32F4_BSP_H
30
31#include <bspopts.h>
32#include <bsp/default-initial-extension.h>
33
34#include <rtems.h>
35
36#ifdef __cplusplus
37extern "C" {
38#endif /* __cplusplus */
39
40#define BSP_FEATURE_IRQ_EXTENSION
41
42#define BSP_ARMV7M_IRQ_PRIORITY_DEFAULT (13 << 4)
43
44#define BSP_ARMV7M_SYSTICK_PRIORITY (14 << 4)
45
46#define BSP_ARMV7M_SYSTICK_FREQUENCY STM32F4_HCLK
47
48/** @} */
49
50#ifdef __cplusplus
51}
52#endif /* __cplusplus */
53
54#endif /* LIBBSP_ARM_STM32F4_BSP_H */
Note: See TracBrowser for help on using the repository browser.