Statistics
| Branch: | Tag: | Revision:

amiro-os / modules / LightRing_1-0 / board.c @ 21e5be0b

History | View | Annotate | Download (2.178 KB)

1
/*
2
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
3
Copyright (C) 2016..2019  Thomas Schöpping et al.
4

5
This program is free software: you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation, either version 3 of the License, or
8
(at your option) any later version.
9

10
This program is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
GNU General Public License for more details.
14

15
You should have received a copy of the GNU General Public License
16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
*/
18

    
19
/**
20
 * @file
21
 * @brief   LightRing v1.0 Board specific initializations.
22
 *
23
 * @addtogroup lightring_board
24
 * @{
25
 */
26

    
27
#include <hal.h>
28

    
29
#if HAL_USE_PAL || defined(__DOXYGEN__)
30
/**
31
 * @brief   PAL setup.
32
 * @details Digital I/O ports static configuration as defined in @p board.h.
33
 *          This variable is used by the HAL when initializing the PAL driver.
34
 */
35
const PALConfig pal_default_config = {
36
#if STM32_HAS_GPIOA
37
  {VAL_GPIOAODR, VAL_GPIOACRL, VAL_GPIOACRH},
38
#endif
39
#if STM32_HAS_GPIOB
40
  {VAL_GPIOBODR, VAL_GPIOBCRL, VAL_GPIOBCRH},
41
#endif
42
#if STM32_HAS_GPIOC
43
  {VAL_GPIOCODR, VAL_GPIOCCRL, VAL_GPIOCCRH},
44
#endif
45
#if STM32_HAS_GPIOD
46
  {VAL_GPIODODR, VAL_GPIODCRL, VAL_GPIODCRH},
47
#endif
48
#if STM32_HAS_GPIOE
49
  {VAL_GPIOEODR, VAL_GPIOECRL, VAL_GPIOECRH},
50
#endif
51
#if STM32_HAS_GPIOF
52
  {VAL_GPIOFODR, VAL_GPIOFCRL, VAL_GPIOFCRH},
53
#endif
54
#if STM32_HAS_GPIOG
55
  {VAL_GPIOGODR, VAL_GPIOGCRL, VAL_GPIOGCRH},
56
#endif
57
};
58
#endif
59

    
60
/**
61
 * @brief   Early initialization code.
62
 * @details This initialization must be performed just after stack setup
63
 *          and before any other initialization.
64
 */
65
void __early_init(void) {
66

    
67
  stm32_clock_init();
68
}
69

    
70
/**
71
 * @brief   Board-specific initialization code.
72
 * @todo    Add your board-specific code, if any.
73
 */
74
void boardInit(void) {
75
  /*
76
   * Several I/O pins are re-mapped:
77
   *   JTAG disabled and SWD enabled
78
   */
79
  AFIO->MAPR = AFIO_MAPR_SWJ_CFG_JTAGDISABLE |
80
               AFIO_MAPR_USART3_REMAP_PARTIALREMAP;
81
}
82

    
83
/** @} */