AD7606使用系列篇3--STM32F407VET6

AD7606使用系列篇3--STM32F407VET6

使用说明

在使用前,请先使用CubeMX生成Keil文件
需配置SPI1,PWM,UART,GPIO。(这边考虑到单片机没有一个实时能够显示的界面,我就用UART把数据传出来看了,如果还是不会配的话,可以直接去我的Gitee仓库里看一下我的CubeMx文件)

AD7606板引脚STM32F407VET6开发板引脚
+5V5V
GNDGND
D7PA6
RDPA5
CSPA2
RESETPA3
CAPA1
RANGEPA4
OS0PB13
OS1PB14
OS2PB15
BUSYPC4

另外我还将PA9和PA10作为串口的TX和RX连接在CH340上,与电脑相连,用于查看读取的得到的数据。

C代码

我将整个main.c文件附在这里。

/* USER CODE BEGIN Header */
/**
  ******************************************************************************
  * @file           : main.c
  * @brief          : Main program body
  ******************************************************************************
  * @attention
  *
  * Copyright (c) 2023 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 "main.h"
#include "spi.h"
#include "tim.h"
#include "usart.h"
#include "gpio.h"

/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
#include <stdio.h>

volatile uint16_t SAMPLING_POINTS = 100;
volatile uint8_t nums = 0;
volatile uint8_t ad7606SamplingDoneFlag = 0;
volatile float data[8][100];
/* 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 */
void AD7606_STM32F407VET6(uint8_t RANGE, uint8_t OS)
{
	volatile uint16_t ii = 0;
  volatile uint8_t MODE = 0;
  volatile uint8_t M[3] = {0x00, 0x00, 0x00};
	
	/*Initialize CS pin*/
	HAL_GPIO_WritePin(GPIOA, AD_CS_PIN_Pin, GPIO_PIN_RESET);
	
	/*Reset AD7606*/
	HAL_GPIO_WritePin(GPIOA, AD_RESET_PIN_Pin, GPIO_PIN_RESET);
	HAL_Delay(1);
	HAL_GPIO_WritePin(GPIOA, AD_RESET_PIN_Pin, GPIO_PIN_SET);
	HAL_Delay(1);
	HAL_GPIO_WritePin(GPIOA, AD_RESET_PIN_Pin, GPIO_PIN_RESET);
	
	/*PWM*/
	HAL_TIM_PWM_Start(&htim2,TIM_CHANNEL_2);
	
	/*Define OS pin*/
	MODE = OS;
	for(ii=0;ii<3;ii++)
  {
		M[ii] = MODE % 2;
    MODE = MODE / 2;
  }
	 if(M[0] == 1)
	 {
		 HAL_GPIO_WritePin(GPIOB, AD_OS0_PIN_Pin, GPIO_PIN_SET);
	 }
	 else
	 {
		 HAL_GPIO_WritePin(GPIOB, AD_OS0_PIN_Pin, GPIO_PIN_RESET);
	 }
	 if(M[1] == 1)
	 {
		 HAL_GPIO_WritePin(GPIOB, AD_OS1_PIN_Pin, GPIO_PIN_SET);
	 }
	 else
	 {
		 HAL_GPIO_WritePin(GPIOB, AD_OS1_PIN_Pin, GPIO_PIN_RESET);
	 }
	 if(M[2] == 1)
	 {
		 HAL_GPIO_WritePin(GPIOB, AD_OS2_PIN_Pin, GPIO_PIN_SET);
	 }
	 else
	 {
		 HAL_GPIO_WritePin(GPIOB, AD_OS2_PIN_Pin, GPIO_PIN_RESET);
	 }
	 if(RANGE == 1)
	 {
		 HAL_GPIO_WritePin(GPIOA, AD_RANGE_PIN_Pin, GPIO_PIN_SET);
	 }
	 else
	 {
		 HAL_GPIO_WritePin(GPIOA, AD_RANGE_PIN_Pin, GPIO_PIN_RESET);
	 }

}
/* USER CODE END 0 */

/**
  * @brief  The application entry point.
  * @retval int
  */
int main(void)
{
  /* USER CODE BEGIN 1 */
	char buffer[8];
	volatile int32_t i=0;
  /* 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_SPI1_Init();
  MX_TIM2_Init();
  MX_USART1_UART_Init();
  /* USER CODE BEGIN 2 */
	HAL_NVIC_DisableIRQ(EXTI4_IRQn);
	AD7606_STM32F407VET6(1, 0);
	HAL_NVIC_EnableIRQ(EXTI4_IRQn);

  /* USER CODE END 2 */

  /* Infinite loop */
  /* USER CODE BEGIN WHILE */
  while (1)
  {
		if(ad7606SamplingDoneFlag == 1)
		{
			__HAL_TIM_SET_COMPARE(&htim2, TIM_CHANNEL_2, 0);
			HAL_GPIO_WritePin(GPIOA, AD_CS_PIN_Pin, GPIO_PIN_SET);
			ad7606SamplingDoneFlag = 1;
			break;
		}
    /* USER CODE END WHILE */

    /* USER CODE BEGIN 3 */
  }
	for(i = 0; i<=100; i++)
	{
		sprintf(buffer, "%+1.4f", data[1][i]);
		buffer[7] = '\n';
		HAL_UART_Transmit(&huart1, (uint8_t*)buffer, sizeof(buffer), 10);
	}
  /* USER CODE END 3 */
}

/**
  * @brief System Clock Configuration
  * @retval None
  */
void SystemClock_Config(void)
{
  RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};

  /** Configure the main internal regulator output voltage
  */
  __HAL_RCC_PWR_CLK_ENABLE();
  __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);

  /** Initializes the RCC Oscillators according to the specified parameters
  * in the RCC_OscInitTypeDef structure.
  */
  RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  RCC_OscInitStruct.PLL.PLLM = 4;
  RCC_OscInitStruct.PLL.PLLN = 168;
  RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
  RCC_OscInitStruct.PLL.PLLQ = 4;
  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_CLOCKTYPE_PCLK2;
  RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
  RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;

  if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5) != HAL_OK)
  {
    Error_Handler();
  }
}

/* USER CODE BEGIN 4 */
void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
{
	volatile uint8_t i = 0;
	volatile uint8_t first_bit = 0;
	uint8_t byte[2];
  volatile uint16_t receive;
  volatile uint8_t chari = 0;
	char buffer[8];
  if(GPIO_Pin == AD_BUSY_PIN_Pin)
	{
		if(ad7606SamplingDoneFlag == 0)
		{
			if(nums < SAMPLING_POINTS)
			{
				ad7606SamplingDoneFlag = 0;
				for(i = 0; i < 8; i++)
				{
					HAL_GPIO_WritePin(GPIOA, AD_CS_PIN_Pin, GPIO_PIN_RESET);
					HAL_SPI_Receive(&hspi1, byte, 2, 20);
					receive = (uint16_t)((byte[0] << 8) | byte[1]);
					first_bit = (byte[0] >> 7) & 1;
					if(first_bit == 1)
					{
						data[i][nums] = receive / 65535.0 * 2.0 * 10.0 - 20;
					}
					else
					{
						data[i][nums] = receive / 65535.0 * 2.0 * 10.0;
					}
					HAL_GPIO_WritePin(GPIOA, AD_CS_PIN_Pin, GPIO_PIN_SET);
				}
				nums++;
			}
			else
			{
				ad7606SamplingDoneFlag = 1;
			}
		}
	}
}
/* 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 */

本人也将代码(完整工程文件)开源在Gitee上,有需要的可下载。
如有其他问题,可私信我。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值