GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Bsp_Stm32_alpha1_Api_h_
2#define Bsp_Stm32_alpha1_Api_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2017 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15
16 This BSP is developed/build with a 'just-in-time' approach. This means
17 as functional is added to the BSP incrementally as there is 'client'
18 need for. This BSP does not claim to provide full/complete functional
19 and/or APIs for everything the board supports.
20
21
22 DO NOT include this file directly! Instead include the generic BSP
23 interface - src/Bsp/Api.h - and then configure your project's
24 'colony_map.h' to include THIS file.
25
26*----------------------------------------------------------------------------*/
27
28
29#include "colony_config.h"
30#include "Bsp/Initech/alpha1/MX/Core/Inc/main.h" // Access the PINs
31#include "Bsp/Initech/alpha1/MX/Core/Inc/usart.h" // Access the UART handles/instances
32#include "Bsp/Initech/alpha1/MX/Core/Inc/tim.h" // Access the UART handles/instances
33#include "Bsp/Initech/alpha1/MX/Core/Inc/spi.h" // Access the SPI handles/instances
34#include "Bsp/Initech/alpha1/MX/Core/Inc/i2c.h" // Access the I2C handles/instances
35#include "Bsp/Initech/alpha1/MX/Core/Inc/adc.h" // Access the AIN handles/instances
36
37//#include "Bsp/Initech/alpha1/MX/Core/Inc/stm32f4xx_hal_conf.h" // SDK header files...
38
39#ifdef ENABLE_BSP_SEGGER_SYSVIEW
40#include "SEGGER_SYSVIEW.h" // Expose (to the application) the SYSVIEW APIs when enabled
41#endif
42
43//////////////////////////////////////////////////////////
44/// BOARD Specific APIs
45//////////////////////////////////////////////////////////
46
47/// 7bit address for the offboard EEPROM
48#define BSP_I2C_ADDRESS_EEPROM 0x50
49
50/// I2C Bus handle
51#define BSP_I2C_HANDLE &hi2c2
52
53//////////////////////////////////////////////////////////
54/// ARM Specific APIs
55//////////////////////////////////////////////////////////
56
57/// Disable a specific interrupt (with memory barrier protection)
58#define Bsp_NVIC_disableIRQ( irqNum ) do { HAL_NVIC_DisableIRQ(irqNum); __DSB(); __ISB(); } while(0)
59
60/// Enable a specific interrupt (with memory barrier protection)
61#define Bsp_NVIC_enableIRQ( irqNum ) do { HAL_NVIC_EnableIRQ(irqNum); __DSB(); __ISB(); } while(0)
62
63/// Resets the MCU
64#define Bsp_Api_reset_MCU() NVIC_SystemReset()
65
66
67
68//////////////////////////////////////////////////////////
69/// Generic APIs
70//////////////////////////////////////////////////////////
71
72/// Generic API
73#define Bsp_Api_nop_MAP() __asm("nop")
74
75/// Generic API
76#define Bsp_Api_disableIrqs_MAP() __disable_irq()
77
78/// Generic API (with memory barrier protection)
79#define Bsp_Api_enableIrqs_MAP() do { __enable_irq(); __ISB(); } while(0)
80
81/// Generic API
82#define Bsp_Api_pushAndDisableIrqs_MAP() Bsp_Api_disableIrqs_MAP() // FIXME: This really needs to PUSH the IRQ state!!!
83
84/// Generic API
85#define Bsp_Api_popIrqs_MAP() Bsp_Api_enableIrqs_MAP() // FIXME: This really needs to POP the IRQ state!!!!
86
87
88
89/// Generic API
90#define Bsp_Api_turnOn_debug1_MAP() HAL_GPIO_WritePin( LD1_GPIO_Port, LD1_Pin, GPIO_PIN_SET )
91
92/// Generic API
93#define Bsp_Api_turnOff_debug1_MAP() HAL_GPIO_WritePin( LD1_GPIO_Port, LD1_Pin, GPIO_PIN_RESET )
94
95/// Generic API
96#define Bsp_Api_toggle_debug1_MAP() HAL_GPIO_TogglePin( LD1_GPIO_Port, LD1_Pin )
97
98
99/// Generic API
100#define Bsp_Api_turnOn_debug2_MAP() HAL_GPIO_WritePin( LD2_GPIO_Port, LD2_Pin, GPIO_PIN_SET )
101
102/// Generic API
103#define Bsp_Api_turnOff_debug2_MAP() HAL_GPIO_WritePin( LD2_GPIO_Port, LD2_Pin, GPIO_PIN_RESET )
104
105/// Generic API
106#define Bsp_Api_toggle_debug2_MAP() HAL_GPIO_TogglePin( LD2_GPIO_Port, LD2_Pin )
107
108
109
110//////////////////////////////////////////////////////////
111/// FreeRTOS specific APIs
112//////////////////////////////////////////////////////////
113
114/** This method informs the schedule that a context switch is required on exit
115 from the ISR. The 'r' argument is the result for the su_signal() call.
116 */
117#define Bsp_yieldOnExit(r) portYIELD_FROM_ISR(r)
118
119
120
121#endif // end header latch
This file contains all the function prototypes for the adc.c file.
This file contains all the function prototypes for the i2c.c file.
: Header for main.c file.
This file contains all the function prototypes for the spi.c file.
This file contains all the function prototypes for the tim.c file.
This file contains all the function prototypes for the usart.c file.