mirror of
https://github.com/Ralim/IronOS.git
synced 2025-07-23 12:23:06 +02:00
* Silence undef * Update Makefile * Fix task priorities * Bump CI host images * Format c++ * Update make_translation.py * Update bl702_common.c
438 lines
15 KiB
C++
438 lines
15 KiB
C++
/*
|
|
* Setup.c
|
|
*
|
|
* Created on: 29Aug.,2017
|
|
* Author: Ben V. Brown
|
|
*/
|
|
#include "Setup.h"
|
|
#include "BSP.h"
|
|
#include "Pins.h"
|
|
#include "history.hpp"
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
ADC_HandleTypeDef hadc1;
|
|
ADC_HandleTypeDef hadc2;
|
|
DMA_HandleTypeDef hdma_adc1;
|
|
|
|
IWDG_HandleTypeDef hiwdg;
|
|
TIM_HandleTypeDef htim4; // Tip control
|
|
TIM_HandleTypeDef htim2; // ADC Scheduling
|
|
#define ADC_FILTER_LEN 4
|
|
#define ADC_SAMPLES 16
|
|
uint16_t ADCReadings[ADC_SAMPLES]; // Used to store the adc readings for the handle cold junction temp
|
|
|
|
// Functions
|
|
static void SystemClock_Config(void);
|
|
static void MX_ADC1_Init(void);
|
|
static void MX_IWDG_Init(void);
|
|
static void MX_TIM4_Init(void); // Tip control
|
|
static void MX_TIM2_Init(void); // ADC Scheduling
|
|
static void MX_DMA_Init(void);
|
|
static void MX_GPIO_Init(void);
|
|
static void MX_ADC2_Init(void);
|
|
void Setup_HAL() {
|
|
__HAL_RCC_I2C1_CLK_DISABLE();
|
|
__HAL_RCC_GPIOD_CLK_DISABLE();
|
|
__HAL_RCC_GPIOA_CLK_DISABLE();
|
|
__HAL_RCC_GPIOB_CLK_DISABLE();
|
|
SystemClock_Config();
|
|
|
|
// These are not shared so no harm enabling
|
|
__HAL_AFIO_REMAP_SWJ_NOJTAG();
|
|
MX_GPIO_Init();
|
|
MX_DMA_Init();
|
|
MX_ADC1_Init();
|
|
MX_ADC2_Init();
|
|
|
|
MX_TIM4_Init();
|
|
MX_TIM2_Init();
|
|
MX_IWDG_Init();
|
|
HAL_ADC_Start_DMA(&hadc1, (uint32_t *)ADCReadings, (ADC_SAMPLES)); // start DMA of normal readings
|
|
HAL_ADCEx_InjectedStart(&hadc1); // enable injected readings
|
|
HAL_ADCEx_InjectedStart(&hadc2); // enable injected readings
|
|
|
|
// Setup movement pin
|
|
#ifdef MOVEMENT_Pin
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
GPIO_InitStruct.Pin = MOVEMENT_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
|
|
GPIO_InitStruct.Pull = GPIO_PULLDOWN;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
HAL_GPIO_Init(MOVEMENT_GPIO_Port, &GPIO_InitStruct);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
uint16_t getADCHandleTemp(uint8_t sample) {
|
|
#ifdef TMP36_ADC1_CHANNEL
|
|
static history<uint16_t, ADC_FILTER_LEN> filter = {{0}, 0, 0};
|
|
if (sample) {
|
|
uint32_t sum = 0;
|
|
for (uint8_t i = 0; i < ADC_SAMPLES; i++) {
|
|
sum += ADCReadings[i];
|
|
}
|
|
filter.update(sum);
|
|
}
|
|
return filter.average() >> 1;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
uint16_t getADCVin(uint8_t sample) {
|
|
static history<uint16_t, ADC_FILTER_LEN> filter = {{0}, 0, 0};
|
|
if (sample) {
|
|
uint16_t latestADC = 0;
|
|
|
|
latestADC += hadc2.Instance->JDR1;
|
|
latestADC += hadc2.Instance->JDR2;
|
|
latestADC += hadc2.Instance->JDR3;
|
|
latestADC += hadc2.Instance->JDR4;
|
|
latestADC <<= 3;
|
|
filter.update(latestADC);
|
|
}
|
|
return filter.average();
|
|
}
|
|
// Returns either average or instant value. When sample is set the samples from the injected ADC are copied to the filter and then the raw reading is returned
|
|
uint16_t getTipRawTemp(uint8_t sample) {
|
|
static history<uint16_t, ADC_FILTER_LEN> filter = {{0}, 0, 0};
|
|
if (sample) {
|
|
uint16_t latestADC = 0;
|
|
|
|
latestADC += hadc1.Instance->JDR1;
|
|
latestADC += hadc1.Instance->JDR2;
|
|
latestADC += hadc1.Instance->JDR3;
|
|
latestADC += hadc1.Instance->JDR4;
|
|
latestADC <<= 1;
|
|
filter.update(latestADC);
|
|
return latestADC;
|
|
}
|
|
return filter.average();
|
|
}
|
|
/** System Clock Configuration
|
|
*/
|
|
void SystemClock_Config(void) {
|
|
RCC_OscInitTypeDef RCC_OscInitStruct;
|
|
RCC_ClkInitTypeDef RCC_ClkInitStruct;
|
|
RCC_PeriphCLKInitTypeDef PeriphClkInit;
|
|
|
|
/**Initializes the CPU, AHB and APB busses clocks
|
|
*/
|
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_LSI;
|
|
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
|
|
RCC_OscInitStruct.HSICalibrationValue = 16;
|
|
RCC_OscInitStruct.LSIState = RCC_LSI_ON;
|
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI_DIV2;
|
|
RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL16; // 64MHz
|
|
HAL_RCC_OscConfig(&RCC_OscInitStruct);
|
|
|
|
/**Initializes the CPU, AHB and APB busses clocks
|
|
*/
|
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2;
|
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
|
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
|
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV16; // TIM
|
|
// 2,3,4,5,6,7,12,13,14
|
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; // 64 mhz to some peripherals and adc
|
|
|
|
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2);
|
|
|
|
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
|
|
PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV6; // 6 or 8 are the only non overclocked options
|
|
HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit);
|
|
|
|
/**Configure the Systick interrupt time
|
|
*/
|
|
HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq() / 1000);
|
|
|
|
/**Configure the Systick
|
|
*/
|
|
HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
|
|
|
|
/* SysTick_IRQn interrupt configuration */
|
|
HAL_NVIC_SetPriority(SysTick_IRQn, 15, 0);
|
|
}
|
|
|
|
/* ADC1 init function */
|
|
static void MX_ADC1_Init(void) {
|
|
|
|
ADC_ChannelConfTypeDef sConfig;
|
|
ADC_InjectionConfTypeDef sConfigInjected;
|
|
/**Common config
|
|
*/
|
|
hadc1.Instance = ADC1;
|
|
hadc1.Init.ScanConvMode = ADC_SCAN_ENABLE;
|
|
hadc1.Init.ContinuousConvMode = ENABLE;
|
|
hadc1.Init.DiscontinuousConvMode = DISABLE;
|
|
hadc1.Init.ExternalTrigConv = ADC_SOFTWARE_START;
|
|
hadc1.Init.DataAlign = ADC_DATAALIGN_RIGHT;
|
|
hadc1.Init.NbrOfConversion = 1;
|
|
HAL_ADC_Init(&hadc1);
|
|
|
|
/**Configure Regular Channel
|
|
*/
|
|
#ifdef TMP36_ADC1_CHANNEL
|
|
sConfig.Channel = TMP36_ADC1_CHANNEL;
|
|
sConfig.Rank = ADC_REGULAR_RANK_1;
|
|
sConfig.SamplingTime = ADC_SAMPLETIME_71CYCLES_5;
|
|
HAL_ADC_ConfigChannel(&hadc1, &sConfig);
|
|
#else
|
|
sConfig.Channel = VIN_ADC1_CHANNEL; // Filler
|
|
sConfig.Rank = ADC_REGULAR_RANK_1;
|
|
sConfig.SamplingTime = ADC_SAMPLETIME_71CYCLES_5;
|
|
HAL_ADC_ConfigChannel(&hadc1, &sConfig);
|
|
#endif
|
|
/**Configure Injected Channel
|
|
*/
|
|
// F in = 10.66 MHz
|
|
/*
|
|
* Injected time is 1 delay clock + (12 adc cycles*4)+4*sampletime =~217
|
|
* clocks = 0.2ms Charge time is 0.016 uS ideally So Sampling time must be >=
|
|
* 0.016uS 1/10.66MHz is 0.09uS, so 1 CLK is *should* be enough
|
|
* */
|
|
sConfigInjected.InjectedChannel = TIP_TEMP_ADC1_CHANNEL;
|
|
sConfigInjected.InjectedRank = 1;
|
|
sConfigInjected.InjectedNbrOfConversion = 4;
|
|
sConfigInjected.InjectedSamplingTime = ADC_SAMPLETIME_28CYCLES_5;
|
|
sConfigInjected.ExternalTrigInjecConv = ADC_EXTERNALTRIGINJECCONV_T2_TRGO;
|
|
sConfigInjected.AutoInjectedConv = DISABLE;
|
|
sConfigInjected.InjectedDiscontinuousConvMode = DISABLE;
|
|
sConfigInjected.InjectedOffset = 0;
|
|
|
|
HAL_ADCEx_InjectedConfigChannel(&hadc1, &sConfigInjected);
|
|
sConfigInjected.InjectedRank = 2;
|
|
HAL_ADCEx_InjectedConfigChannel(&hadc1, &sConfigInjected);
|
|
sConfigInjected.InjectedRank = 3;
|
|
HAL_ADCEx_InjectedConfigChannel(&hadc1, &sConfigInjected);
|
|
sConfigInjected.InjectedRank = 4;
|
|
HAL_ADCEx_InjectedConfigChannel(&hadc1, &sConfigInjected);
|
|
SET_BIT(hadc1.Instance->CR1, (ADC_CR1_JEOCIE)); // Enable end of injected conv irq
|
|
// Run ADC internal calibration
|
|
while (HAL_ADCEx_Calibration_Start(&hadc1) != HAL_OK) {
|
|
;
|
|
}
|
|
}
|
|
|
|
/* ADC2 init function */
|
|
static void MX_ADC2_Init(void) {
|
|
ADC_InjectionConfTypeDef sConfigInjected;
|
|
|
|
/**Common config
|
|
*/
|
|
hadc2.Instance = ADC2;
|
|
hadc2.Init.ScanConvMode = ADC_SCAN_DISABLE;
|
|
hadc2.Init.ContinuousConvMode = ENABLE;
|
|
hadc2.Init.DiscontinuousConvMode = DISABLE;
|
|
hadc2.Init.ExternalTrigConv = ADC_SOFTWARE_START;
|
|
hadc2.Init.DataAlign = ADC_DATAALIGN_RIGHT;
|
|
hadc2.Init.NbrOfConversion = 0;
|
|
HAL_ADC_Init(&hadc2);
|
|
|
|
/**Configure Injected Channel
|
|
*/
|
|
sConfigInjected.InjectedChannel = VIN_ADC2_CHANNEL;
|
|
sConfigInjected.InjectedRank = ADC_INJECTED_RANK_1;
|
|
sConfigInjected.InjectedNbrOfConversion = 4;
|
|
sConfigInjected.InjectedSamplingTime = ADC_SAMPLETIME_28CYCLES_5;
|
|
sConfigInjected.ExternalTrigInjecConv = ADC_EXTERNALTRIGINJECCONV_T2_TRGO;
|
|
sConfigInjected.AutoInjectedConv = DISABLE;
|
|
sConfigInjected.InjectedDiscontinuousConvMode = DISABLE;
|
|
sConfigInjected.InjectedOffset = 0;
|
|
HAL_ADCEx_InjectedConfigChannel(&hadc2, &sConfigInjected);
|
|
sConfigInjected.InjectedRank = ADC_INJECTED_RANK_2;
|
|
HAL_ADCEx_InjectedConfigChannel(&hadc2, &sConfigInjected);
|
|
sConfigInjected.InjectedRank = ADC_INJECTED_RANK_3;
|
|
HAL_ADCEx_InjectedConfigChannel(&hadc2, &sConfigInjected);
|
|
sConfigInjected.InjectedRank = ADC_INJECTED_RANK_4;
|
|
HAL_ADCEx_InjectedConfigChannel(&hadc2, &sConfigInjected);
|
|
|
|
// Run ADC internal calibration
|
|
while (HAL_ADCEx_Calibration_Start(&hadc2) != HAL_OK) {
|
|
;
|
|
}
|
|
}
|
|
|
|
/* IWDG init function */
|
|
static void MX_IWDG_Init(void) {
|
|
hiwdg.Instance = IWDG;
|
|
hiwdg.Init.Prescaler = IWDG_PRESCALER_256;
|
|
hiwdg.Init.Reload = 2048;
|
|
#ifndef SWD_ENABLE
|
|
HAL_IWDG_Init(&hiwdg);
|
|
#endif
|
|
}
|
|
|
|
static void MX_TIM4_Init(void) {
|
|
/*
|
|
* On Sequre devies we run the output PWM as fast as possible due to the low tip resistance + no inductor for filtering.
|
|
* So we run it as fast as we can and hope that the caps filter out the current spikes.
|
|
* */
|
|
TIM_ClockConfigTypeDef sClockSourceConfig;
|
|
TIM_MasterConfigTypeDef sMasterConfig;
|
|
TIM_OC_InitTypeDef sConfigOC;
|
|
memset(&sConfigOC, 0, sizeof(sConfigOC));
|
|
|
|
htim4.Instance = TIM4;
|
|
// dummy value, will be reconfigured by BSPInit()
|
|
htim4.Init.Prescaler = 10; // 2 MHz timer clock/10 = 200 kHz tick rate
|
|
|
|
htim4.Init.CounterMode = TIM_COUNTERMODE_UP;
|
|
htim4.Init.Period = 64;
|
|
|
|
htim4.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; // 8 MHz (x2 APB1) before divide
|
|
htim4.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE;
|
|
htim4.Init.RepetitionCounter = 0;
|
|
HAL_TIM_Base_Init(&htim4);
|
|
|
|
sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL;
|
|
HAL_TIM_ConfigClockSource(&htim4, &sClockSourceConfig);
|
|
HAL_TIM_PWM_Init(&htim4);
|
|
HAL_TIM_OC_Init(&htim4);
|
|
|
|
sConfigOC.OCMode = TIM_OCMODE_PWM1;
|
|
|
|
sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH;
|
|
sConfigOC.OCFastMode = TIM_OCFAST_ENABLE;
|
|
sConfigOC.Pulse = 0; // default to entirely off
|
|
HAL_TIM_PWM_ConfigChannel(&htim4, &sConfigOC, PWM_Out_CHANNEL);
|
|
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
GPIO_InitStruct.Pin = PWM_Out_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; // We would like sharp rising edges
|
|
HAL_GPIO_Init(PWM_Out_GPIO_Port, &GPIO_InitStruct);
|
|
|
|
// HAL_NVIC_SetPriority(TIM4_IRQn, 15, 0);
|
|
// HAL_NVIC_EnableIRQ(TIM4_IRQn);
|
|
|
|
HAL_TIM_Base_Start(&htim4);
|
|
HAL_TIM_PWM_Start(&htim4, PWM_Out_CHANNEL);
|
|
}
|
|
///////////////////
|
|
static void MX_TIM2_Init(void) {
|
|
/*
|
|
* We use the channel 1 to trigger the ADC at end of PWM period
|
|
* And we use the channel 4 as the PWM modulation source using Interrupts
|
|
* */
|
|
TIM_ClockConfigTypeDef sClockSourceConfig;
|
|
TIM_MasterConfigTypeDef sMasterConfig;
|
|
TIM_OC_InitTypeDef sConfigOC;
|
|
memset(&sConfigOC, 0, sizeof(sConfigOC));
|
|
memset(&sClockSourceConfig, 0, sizeof(sClockSourceConfig));
|
|
memset(&sMasterConfig, 0, sizeof(sMasterConfig));
|
|
|
|
// Timer 2 is fairly slow as its being used to run the PWM and trigger the ADC
|
|
// in the PWM off time.
|
|
htim2.Instance = TIM2;
|
|
// dummy value, will be reconfigured by BSPInit()
|
|
htim2.Init.Prescaler = 2000; // 2 MHz timer clock/2000 = 1 kHz tick rate
|
|
|
|
// pwm out is 10k from tim3, we want to run our PWM at around 10hz or slower on the output stage
|
|
// These values give a rate of around 3.5 Hz for "fast" mode and 1.84 Hz for "slow"
|
|
htim2.Init.CounterMode = TIM_COUNTERMODE_UP;
|
|
// dummy value, will be reconfigured by BSPInit()
|
|
htim2.Init.Period = powerPWM + 14 * 2;
|
|
|
|
htim2.Init.ClockDivision = TIM_CLOCKDIVISION_DIV4; // 8 MHz (x2 APB1) before divide
|
|
htim2.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE;
|
|
htim2.Init.RepetitionCounter = 0;
|
|
HAL_TIM_Base_Init(&htim2);
|
|
|
|
sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL;
|
|
HAL_TIM_ConfigClockSource(&htim2, &sClockSourceConfig);
|
|
|
|
HAL_TIM_PWM_Init(&htim2);
|
|
HAL_TIM_OC_Init(&htim2);
|
|
|
|
sMasterConfig.MasterOutputTrigger = TIM_TRGO_OC1;
|
|
sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE;
|
|
HAL_TIMEx_MasterConfigSynchronization(&htim2, &sMasterConfig);
|
|
|
|
sConfigOC.OCMode = TIM_OCMODE_PWM1;
|
|
// dummy value, will be reconfigured by BSPInit() in the BSP.cpp
|
|
sConfigOC.Pulse = powerPWM + 14; // 13 -> Delay of 7 ms
|
|
// 255 is the largest time period of the drive signal, and then offset ADC sample to be a bit delayed after this
|
|
/*
|
|
* It takes 4 milliseconds for output to be stable after PWM turns off.
|
|
* Assume ADC samples in 0.5ms
|
|
* We need to set this to 100% + 4.5ms
|
|
* */
|
|
sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH;
|
|
sConfigOC.OCFastMode = TIM_OCFAST_ENABLE;
|
|
HAL_TIM_PWM_ConfigChannel(&htim2, &sConfigOC, TIM_CHANNEL_1); // ADC Triggers
|
|
|
|
sConfigOC.Pulse = powerPWM; // Power PWM cycle time
|
|
|
|
HAL_TIM_OC_ConfigChannel(&htim2, &sConfigOC, TIM_CHANNEL_4); // Output triggers
|
|
|
|
HAL_TIM_Base_Start_IT(&htim2);
|
|
HAL_TIM_PWM_Start(&htim2, TIM_CHANNEL_1);
|
|
HAL_TIM_PWM_Start_IT(&htim2, TIM_CHANNEL_4);
|
|
|
|
HAL_NVIC_SetPriority(TIM2_IRQn, 15, 0);
|
|
HAL_NVIC_EnableIRQ(TIM2_IRQn);
|
|
}
|
|
/**
|
|
* Enable DMA controller clock
|
|
*/
|
|
static void MX_DMA_Init(void) {
|
|
/* DMA controller clock enable */
|
|
__HAL_RCC_DMA1_CLK_ENABLE();
|
|
|
|
/* DMA interrupt init */
|
|
/* DMA1_Channel1_IRQn interrupt configuration */
|
|
HAL_NVIC_SetPriority(DMA1_Channel1_IRQn, 5, 0);
|
|
HAL_NVIC_EnableIRQ(DMA1_Channel1_IRQn);
|
|
/* DMA1_Channel6_IRQn interrupt configuration */
|
|
HAL_NVIC_SetPriority(DMA1_Channel6_IRQn, 5, 0);
|
|
HAL_NVIC_EnableIRQ(DMA1_Channel6_IRQn);
|
|
/* DMA1_Channel7_IRQn interrupt configuration */
|
|
HAL_NVIC_SetPriority(DMA1_Channel7_IRQn, 5, 0);
|
|
HAL_NVIC_EnableIRQ(DMA1_Channel7_IRQn);
|
|
}
|
|
|
|
/** Configure pins as
|
|
* Analog
|
|
* Input
|
|
* Output
|
|
* EVENT_OUT
|
|
* EXTI
|
|
* Free pins are configured automatically as Analog
|
|
PB0 ------> ADCx_IN8
|
|
PB1 ------> ADCx_IN9
|
|
*/
|
|
static void MX_GPIO_Init(void) {
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
|
|
/* GPIO Ports Clock Enable */
|
|
__HAL_RCC_GPIOD_CLK_ENABLE();
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
__HAL_RCC_GPIOB_CLK_ENABLE();
|
|
|
|
/*Configure peripheral I/O remapping */
|
|
__HAL_AFIO_REMAP_PD01_ENABLE();
|
|
//^ remap XTAL so that pins can be analog (all input buffers off).
|
|
// reduces power consumption
|
|
|
|
/*
|
|
* Configure All pins as analog by default
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_3 | GPIO_PIN_4 | GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7 | GPIO_PIN_8 | GPIO_PIN_9 | GPIO_PIN_10 | GPIO_PIN_15;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_ANALOG;
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
GPIO_InitStruct.Pin = GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_3 | GPIO_PIN_4 | GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7 | GPIO_PIN_8 | GPIO_PIN_9 | GPIO_PIN_10 | GPIO_PIN_11 | GPIO_PIN_12 |
|
|
GPIO_PIN_13 | GPIO_PIN_14 | GPIO_PIN_15;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
/*Configure GPIO pins : KEY_B_Pin KEY_A_Pin */
|
|
GPIO_InitStruct.Pin = KEY_B_Pin | KEY_A_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
|
|
GPIO_InitStruct.Pull = GPIO_PULLUP;
|
|
HAL_GPIO_Init(KEY_B_GPIO_Port, &GPIO_InitStruct);
|
|
}
|
|
#ifdef USE_FULL_ASSERT
|
|
void assert_failed(uint8_t *file, uint32_t line) { asm("bkpt"); }
|
|
#endif
|