2022-07-04 20:58:33 +00:00
|
|
|
/* USER CODE BEGIN Header */
|
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @file : main.c
|
|
|
|
* @brief : Main program body
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
|
|
|
* Copyright (c) 2022 STMicroelectronics.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
|
|
* in the root directory of this software component.
|
|
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
/* USER CODE END Header */
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "main.h"
|
|
|
|
#include "crc.h"
|
|
|
|
#include "dma.h"
|
|
|
|
#include "tim.h"
|
|
|
|
#include "gpio.h"
|
|
|
|
|
|
|
|
/* Private includes ----------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
|
|
|
|
#include "spi.h"
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN PTD */
|
|
|
|
|
|
|
|
/* USER CODE END PTD */
|
|
|
|
|
|
|
|
/* Private define ------------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN PD */
|
|
|
|
/* USER CODE END PD */
|
|
|
|
|
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN PM */
|
|
|
|
|
|
|
|
/* USER CODE END PM */
|
|
|
|
|
|
|
|
/* Private variables ---------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* USER CODE BEGIN PV */
|
|
|
|
|
|
|
|
/* USER CODE END PV */
|
|
|
|
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
|
|
void SystemClock_Config(void);
|
|
|
|
/* USER CODE BEGIN PFP */
|
|
|
|
|
|
|
|
/* USER CODE END PFP */
|
|
|
|
|
|
|
|
/* Private user code ---------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
|
|
|
|
bool dirty = false;
|
|
|
|
uint16_t mem[12] = {0};
|
|
|
|
|
|
|
|
#define BUFFER_SIZE 64
|
|
|
|
uint16_t RX_Buffer[BUFFER_SIZE] = {0};
|
|
|
|
|
|
|
|
void HAL_SPI_CpltCallback(SPI_HandleTypeDef *hspi) {
|
|
|
|
|
|
|
|
if(RX_Buffer[0]) {
|
|
|
|
union {
|
|
|
|
struct {
|
2022-09-24 05:41:37 +00:00
|
|
|
unsigned data: 16;
|
2022-07-04 20:58:33 +00:00
|
|
|
unsigned addr: 12;
|
|
|
|
unsigned op: 4;
|
|
|
|
} __attribute__((packed));
|
|
|
|
struct {
|
|
|
|
uint16_t high;
|
|
|
|
uint16_t low;
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
} frame = {.low=RX_Buffer[0], .high = RX_Buffer[1]};
|
2022-09-24 05:41:37 +00:00
|
|
|
|
|
|
|
if(frame.op == 0xA && frame.addr <= 16) {
|
|
|
|
mem[frame.addr] = frame.data;
|
|
|
|
dirty = true;
|
|
|
|
}
|
|
|
|
|
2022-07-04 20:58:33 +00:00
|
|
|
}
|
2022-09-24 05:41:37 +00:00
|
|
|
HAL_SPI_Receive_DMA(&hspi2, (uint8_t *) RX_Buffer, 4);
|
2022-07-04 20:58:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void HAL_SPI_RxCpltCallback(SPI_HandleTypeDef *hspi) {
|
|
|
|
HAL_SPI_CpltCallback(hspi);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HAL_SPI_TxRxCpltCallback(SPI_HandleTypeDef *hspi) {
|
|
|
|
HAL_SPI_CpltCallback(hspi);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HAL_SPI_TxCpltCallback(SPI_HandleTypeDef *hspi) {
|
|
|
|
//HAL_SPI_Transmit_DMA(&hspi2, (uint8_t *) TX_Buffer, 4);
|
|
|
|
}
|
2022-09-24 05:41:37 +00:00
|
|
|
|
|
|
|
void initPWM(TIM_HandleTypeDef timer, uint32_t channel, uint16_t period,
|
|
|
|
uint16_t pulse) {
|
|
|
|
//HAL_TIM_PWM_Stop(&timer, channel);
|
|
|
|
// stop generation of pwm
|
|
|
|
TIM_OC_InitTypeDef sConfigOC;
|
|
|
|
timer.Init.Period = period;
|
|
|
|
// set the period duration
|
|
|
|
HAL_TIM_PWM_Init(&timer); // reinititialise with new period value
|
|
|
|
sConfigOC.OCMode = TIM_OCMODE_PWM1;
|
|
|
|
sConfigOC.Pulse = pulse;
|
|
|
|
// set the pulse duration
|
|
|
|
sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH;
|
|
|
|
sConfigOC.OCFastMode = TIM_OCFAST_DISABLE;
|
|
|
|
HAL_TIM_PWM_ConfigChannel(&timer, &sConfigOC, channel);
|
|
|
|
HAL_TIM_PWM_Start(&timer, channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setPWM(TIM_HandleTypeDef timer, uint32_t channel, uint16_t period,
|
|
|
|
uint16_t pulse) {
|
|
|
|
//HAL_TIM_PWM_Stop(&timer, channel);
|
|
|
|
// stop generation of pwm
|
|
|
|
TIM_OC_InitTypeDef sConfigOC;
|
|
|
|
sConfigOC.OCMode = TIM_OCMODE_PWM1;
|
|
|
|
sConfigOC.Pulse = pulse;
|
|
|
|
// set the pulse duration
|
|
|
|
sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH;
|
|
|
|
sConfigOC.OCFastMode = TIM_OCFAST_DISABLE;
|
|
|
|
HAL_TIM_PWM_ConfigChannel(&timer, &sConfigOC, channel);
|
|
|
|
//HAL_TIM_PWM_Start(&timer, channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setDAC(uint8_t channel, uint16_t val) {
|
|
|
|
uint16_t frame = (val & 0x0FFF) | (0x7000 & (channel << 12));
|
|
|
|
HAL_SPI_Transmit(&hspi1, (uint8_t *) &frame, 1, 100);
|
|
|
|
}
|
2022-07-04 20:58:33 +00:00
|
|
|
/* USER CODE END 0 */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The application entry point.
|
|
|
|
* @retval int
|
|
|
|
*/
|
|
|
|
int main(void) {
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
|
|
|
|
/* USER CODE END 1 */
|
|
|
|
|
|
|
|
/* MCU Configuration--------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
|
|
|
|
HAL_Init();
|
|
|
|
|
|
|
|
/* USER CODE BEGIN Init */
|
|
|
|
|
|
|
|
/* USER CODE END Init */
|
|
|
|
|
|
|
|
/* Configure the system clock */
|
|
|
|
SystemClock_Config();
|
|
|
|
|
|
|
|
/* USER CODE BEGIN SysInit */
|
|
|
|
|
|
|
|
/* USER CODE END SysInit */
|
|
|
|
|
|
|
|
/* Initialize all configured peripherals */
|
|
|
|
MX_GPIO_Init();
|
|
|
|
MX_CRC_Init();
|
|
|
|
MX_TIM1_Init();
|
|
|
|
MX_DMA_Init();
|
|
|
|
MX_TIM3_Init();
|
|
|
|
/* USER CODE BEGIN 2 */
|
|
|
|
MX_SPI1_Init();
|
|
|
|
MX_SPI2_Init();
|
|
|
|
|
|
|
|
|
2022-09-24 05:41:37 +00:00
|
|
|
HAL_GPIO_WritePin(SIGNAL_LED_GPIO_Port, SIGNAL_LED_Pin, GPIO_PIN_RESET);
|
2022-07-04 20:58:33 +00:00
|
|
|
|
2022-09-24 05:41:37 +00:00
|
|
|
uint16_t frame = 0b1001000000000000;
|
|
|
|
HAL_SPI_Transmit(&hspi1, (uint8_t *) &frame, 1, 100);
|
2022-07-04 20:58:33 +00:00
|
|
|
|
2022-09-24 05:41:37 +00:00
|
|
|
for (int i = 0; i < 6; ++i) {
|
|
|
|
setDAC(i, mem[i * 2]);
|
|
|
|
}
|
2022-07-04 20:58:33 +00:00
|
|
|
|
2022-09-24 05:41:37 +00:00
|
|
|
initPWM(htim1, TIM_CHANNEL_1, 255, 0xFF & mem[1]);
|
|
|
|
initPWM(htim1, TIM_CHANNEL_2, 255, 0xFF & mem[3]);
|
|
|
|
initPWM(htim1, TIM_CHANNEL_3, 255, 0xFF & mem[5]);
|
|
|
|
initPWM(htim1, TIM_CHANNEL_4, 255, 0xFF & mem[7]);
|
|
|
|
initPWM(htim3, TIM_CHANNEL_1, 255, 0xFF & mem[9]);
|
|
|
|
initPWM(htim3, TIM_CHANNEL_2, 255, 0xFF & mem[11]);
|
2022-07-04 20:58:33 +00:00
|
|
|
|
2022-09-24 05:41:37 +00:00
|
|
|
HAL_GPIO_WritePin(SIGNAL_LED_GPIO_Port, SIGNAL_LED_Pin, GPIO_PIN_SET);
|
2022-07-04 20:58:33 +00:00
|
|
|
|
|
|
|
HAL_SPI_Receive_DMA(&hspi2, (uint8_t *) RX_Buffer, 4);
|
|
|
|
|
|
|
|
/* USER CODE END 2 */
|
|
|
|
|
|
|
|
/* Infinite loop */
|
|
|
|
/* USER CODE BEGIN WHILE */
|
|
|
|
while (1) {
|
|
|
|
/* USER CODE END WHILE */
|
|
|
|
|
|
|
|
/* USER CODE BEGIN 3 */
|
|
|
|
|
2022-09-24 05:41:37 +00:00
|
|
|
if(dirty) {
|
2022-07-04 20:58:33 +00:00
|
|
|
HAL_GPIO_WritePin(SIGNAL_LED_GPIO_Port, SIGNAL_LED_Pin, GPIO_PIN_RESET);
|
2022-09-24 05:41:37 +00:00
|
|
|
for (int i = 0; i < 6; ++i) {
|
|
|
|
setDAC(i, mem[i * 2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
initPWM(htim1, TIM_CHANNEL_1, 255, 0xFF & mem[1]);
|
|
|
|
initPWM(htim1, TIM_CHANNEL_2, 255, 0xFF & mem[3]);
|
|
|
|
initPWM(htim1, TIM_CHANNEL_3, 255, 0xFF & mem[5]);
|
|
|
|
initPWM(htim1, TIM_CHANNEL_4, 255, 0xFF & mem[7]);
|
|
|
|
initPWM(htim3, TIM_CHANNEL_1, 255, 0xFF & mem[9]);
|
|
|
|
initPWM(htim3, TIM_CHANNEL_2, 255, 0xFF & mem[11]);
|
|
|
|
|
|
|
|
dirty = false;
|
|
|
|
HAL_GPIO_WritePin(SIGNAL_LED_GPIO_Port, SIGNAL_LED_Pin, GPIO_PIN_SET);
|
2022-07-04 20:58:33 +00:00
|
|
|
}
|
2022-09-24 05:41:37 +00:00
|
|
|
HAL_Delay(50);
|
2022-07-04 20:58:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
/* USER CODE END 3 */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief System Clock Configuration
|
|
|
|
* @retval None
|
|
|
|
*/
|
|
|
|
void SystemClock_Config(void) {
|
|
|
|
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
|
|
|
|
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
|
|
|
|
|
|
|
|
/** Initializes the RCC Oscillators according to the specified parameters
|
|
|
|
* in the RCC_OscInitTypeDef structure.
|
|
|
|
*/
|
|
|
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
|
|
|
|
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
|
|
|
|
RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
|
|
|
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
|
|
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
|
|
|
|
RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL4;
|
|
|
|
RCC_OscInitStruct.PLL.PREDIV = RCC_PREDIV_DIV1;
|
|
|
|
if(HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) {
|
|
|
|
Error_Handler();
|
|
|
|
}
|
|
|
|
/** Initializes the CPU, AHB and APB buses clocks
|
|
|
|
*/
|
|
|
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK
|
|
|
|
| RCC_CLOCKTYPE_PCLK1;
|
|
|
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
|
|
|
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV16;
|
|
|
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
|
|
|
|
|
|
|
|
if(HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK) {
|
|
|
|
Error_Handler();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* USER CODE BEGIN 4 */
|
|
|
|
|
|
|
|
/* USER CODE END 4 */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This function is executed in case of error occurrence.
|
|
|
|
* @retval None
|
|
|
|
*/
|
|
|
|
void Error_Handler(void) {
|
|
|
|
/* USER CODE BEGIN Error_Handler_Debug */
|
|
|
|
/* User can add his own implementation to report the HAL error return state */
|
|
|
|
__disable_irq();
|
|
|
|
while (1) {
|
|
|
|
}
|
|
|
|
/* USER CODE END Error_Handler_Debug */
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_FULL_ASSERT
|
|
|
|
/**
|
|
|
|
* @brief Reports the name of the source file and the source line number
|
|
|
|
* where the assert_param error has occurred.
|
|
|
|
* @param file: pointer to the source file name
|
|
|
|
* @param line: assert_param error line source number
|
|
|
|
* @retval None
|
|
|
|
*/
|
|
|
|
void assert_failed(uint8_t *file, uint32_t line)
|
|
|
|
{
|
|
|
|
/* USER CODE BEGIN 6 */
|
|
|
|
/* User can add his own implementation to report the file name and line number,
|
|
|
|
ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
|
|
|
|
/* USER CODE END 6 */
|
|
|
|
}
|
|
|
|
#endif /* USE_FULL_ASSERT */
|
|
|
|
|