完美体育·(中国)手机网页版科技提醒您:您的浏览器版本过低或者使用了兼容模式,为了获得更好的浏览体验,建议使用IE10以上的浏览器或使用极速模式。 请升级浏览器以获得更好的体验!

完美体育·(中国)手机网页版 > 评测报告 > 【完美体育·(中国)手机网页版MYD-YA15XC-T开发板】使用STM32CubeIDE测试Cortex M4内核GPIO

【完美体育·(中国)手机网页版MYD-YA15XC-T开发板】使用STM32CubeIDE测试Cortex M4内核GPIO

文章来源: 发布日期:2022.11.24 浏览次数:1242 次


本篇测评由电子发烧友的优秀测评者“马猛 ”提供。
此次的板卡测试,是完美体育·(中国)手机网页版MYD-YA15XC-T开发板测试Cortex M4内核GPIO



  完美体育·(中国)手机网页版MYD-YA15XC-T开发板接口丰富,几乎把核心板全部接口引出,而且按照功能进行归类排布,非常方便测试。STM32MP1 是 ST 推出的首款 Cortex-A7 +Cortex-M4多核异构 MPU, A7 可以运行 Linux 系统,借助 Linux 系统庞大而丰富的软件组件处理复杂应用,比如 UI 界面、网络应用等, M4 内核的优势就是实时性,因此可以在 M4 内核上运行对于实时性要求严格的应用,比如电机控制、无人机飞控等各种控制算法。 M4 也可以运行各种 RTOS 操作系统,比FreeRTOS、 RTThread 等。



x1 2x25_2.54mm 间距双排针(显示 RGB888、触摸、I2C、PWM)
x1 2x10_2.54mm 间距双排针(DCMI)
x1 2x10_2.54mm 间距双排针(SDIOx1,UARTx1)
x1 2x10_2.54mm 间距双排针(GPIO,USBx2)
x1 2x20_2.54mm 间距双排针 RPI 接口(SPIx2、UARTx2、I2Cx2、CANx1、SAIx1)



   STM32MP151 的 GPIO 有 GPIOA 至 GPIOK 和 GPIOZ 共 12 组 GPIO,其中 GPIOA~GPIOK每组有 16 个 IO,而 GPIOZ 有 8 个 IO。所有的 GPIO 均带有中断功能,所有的 GPIO 都可以被Cortex-M4 和 Cortex-A7 共享访问,而 GPIOZ 可用于 TrustZone 安全性相关的设置(当用于此项时仅限于 Cortex-A7 访问),相关的外围设备的软件访问被定义为安全性访问,常用于安全解决方案中。
    

  STM32MP151 的 GPIO 可以由软件配置成如下 8 种模式中的任何一种:
1、输入浮空
2、输入上拉
3、输入下拉
4、模拟输入
5、具有上拉或下拉功能的开漏输出
6、具有上拉或下拉功能的推挽输出
7、具有上拉或下拉功能的开漏式复用功能
8、具有上拉或下拉功能的推挽式复用功能
每个 GPIO 引脚都可以通过软件配置为输出(推挽或漏极开路,带或不带上拉或下拉)、输入(带或不带上拉或下拉)或外围设备复用功能。

  1. /**
  2. * [url=home.php?mod=space&uid=2666770]@Brief[/url] GPIO Init structure definition
  3. */
  4. typedef struct
  5. {
  6. uint32_t Pin; /*!< Specifies the GPIO pins to be configured.
  7. This parameter can be any value of [url=home.php?mod=space&uid=1352397]@ref[/url] GPIO_pins_define */
  8. uint32_t Mode; /*!< Specifies the operating mode for the selected pins.
  9. This parameter can be a value of @ref GPIO_mode_define */
  10. uint32_t Pull; /*!< Specifies the Pull-up or Pull-Down activation for the selected pins.
  11. This parameter can be a value of @ref GPIO_pull_define */
  12. uint32_t Speed; /*!< Specifies the speed for the selected pins.
  13. This parameter can be a value of @ref GPIO_speed_define */
  14. uint32_t Alternate; /*!< Peripheral to be connected to the selected pins.
  15. This parameter can be a value of @ref GPIO_Alternate_function_selection */
  16. }GPIO_InitTypeDef;
    

GPIO 的基本结构图:

: 


完美体育·(中国)手机网页版的芯片类型:

在STM32CubeIDE搭建PRJ工程:


选择:STM32MP151AACX 主控


  程序配置PACK:

 


配置GPIO模式:建立GPIO LED PRJ

生产的代码:



  1. /* USER CODE BEGIN Header */
  2. /**
  3.   ******************************************************************************
  4.   * [url=home.php?mod=space&uid=1455510]@file[/url]           : main.c
  5.   * @brief          : Main program body
  6.   ******************************************************************************
  7.   * @attention
  8.   *
  9.   *

    © Copyright (c) 2021 STMicroelectronics.
  10.   * All rights reserved.

  11.   *
  12.   * This software component is licensed by ST under BSD 3-Clause license,
  13.   * the "License"; You may not use this file except in compliance with the
  14.   * License. You may obtain a copy of the License at:
  15.   *                        opensource.org/licenses/BSD-3-Clause
  16.   *
  17.   ******************************************************************************
  18.   */
  19. /* USER CODE END Header */
  20. /* Includes ------------------------------------------------------------------*/
  21. #include "main.h"

  22. /* Private includes ----------------------------------------------------------*/
  23. /* USER CODE BEGIN Includes */

  24. /* USER CODE END Includes */

  25. /* Private typedef -----------------------------------------------------------*/
  26. /* USER CODE BEGIN PTD */

  27. /* USER CODE END PTD */

  28. /* Private define ------------------------------------------------------------*/
  29. /* USER CODE BEGIN PD */
  30. /* USER CODE END PD */

  31. /* Private macro -------------------------------------------------------------*/
  32. /* USER CODE BEGIN PM */

  33. /* USER CODE END PM */

  34. /* Private variables ---------------------------------------------------------*/

  35. /* USER CODE BEGIN PV */

  36. /* USER CODE END PV */

  37. /* Private function prototypes -----------------------------------------------*/
  38. void SystemClock_Config(void);
  39. /* USER CODE BEGIN PFP */

  40. /* USER CODE END PFP */

  41. /* Private user code ---------------------------------------------------------*/
  42. /* USER CODE BEGIN 0 */

  43. /* USER CODE END 0 */

  44. /**
  45.   * @brief  The application entry point.
  46.   * @retval int
  47.   */

  48. void bsp_led_init(void)
  49. {
  50. GPIO_InitTypeDef GPIO_InitStruct;
  51. __HAL_RCC_GPIOZ_CLK_ENABLE();
  52. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_5, GPIO_PIN_RESET);
  53. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_6, GPIO_PIN_RESET);
  54. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_7, GPIO_PIN_RESET);
  55. GPIO_InitStruct.Pin = GPIO_PIN_5;
  56. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  57. GPIO_InitStruct.Pull = GPIO_PULLUP;
  58. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  59. HAL_GPIO_Init(GPIOZ, &GPIO_InitStruct);
  60. GPIO_InitStruct.Pin = GPIO_PIN_6;
  61. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  62. GPIO_InitStruct.Pull = GPIO_PULLUP;
  63. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  64. HAL_GPIO_Init(GPIOZ, &GPIO_InitStruct);
  65. GPIO_InitStruct.Pin = GPIO_PIN_7;
  66. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  67. GPIO_InitStruct.Pull = GPIO_PULLUP;
  68. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  69. HAL_GPIO_Init(GPIOZ, &GPIO_InitStruct);
  70. }
  71. void bsp_led_on(void)
  72. {
  73. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_5,GPIO_PIN_SET);
  74. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_6,GPIO_PIN_SET);
  75. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_7,GPIO_PIN_SET);
  76. }
  77. void bsp_led_off(void)
  78. {
  79. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_5,GPIO_PIN_RESET);
  80. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_6,GPIO_PIN_RESET);
  81. HAL_GPIO_WritePin(GPIOZ, GPIO_PIN_7,GPIO_PIN_RESET);
  82. }

  83. int main(void)
  84. {
  85.   /* USER CODE BEGIN 1 */

  86.   /* USER CODE END 1 */

  87.   /* MCU Configuration--------------------------------------------------------*/

  88.   /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  89.   HAL_Init();

  90.   /* USER CODE BEGIN Init */

  91.   /* USER CODE END Init */

  92.   if(IS_ENGINEERING_BOOT_MODE())
  93.   {
  94.     /* Configure the system clock */
  95.     SystemClock_Config();
  96.   }
  97.   bsp_led_init();
  98.   /* USER CODE BEGIN SysInit */

  99.   /* USER CODE END SysInit */

  100.   /* Initialize all configured peripherals */
  101.   /* USER CODE BEGIN 2 */

  102.   /* USER CODE END 2 */

  103.   /* Infinite loop */
  104.   /* USER CODE BEGIN WHILE */
  105.   while (1)
  106.   {
  107.         //  bsp_led_on();
  108.           bsp_led_off();
  109.           
  110.   }
  111.   /* USER CODE END 3 */
  112. }

  113. /**
  114.   * @brief System Clock Configuration
  115.   * @retval None
  116.   */
  117. void SystemClock_Config(void)
  118. {
  119.   RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  120.   RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};

  121.   /** Initializes the RCC Oscillators according to the specified parameters
  122.   * in the RCC_OscInitTypeDef structure.
  123.   */
  124.   RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI|RCC_OSCILLATORTYPE_LSI;
  125.   RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  126.   RCC_OscInitStruct.HSICalibrationValue = 16;
  127.   RCC_OscInitStruct.HSIDivValue = RCC_HSI_DIV1;
  128.   RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  129.   RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
  130.   RCC_OscInitStruct.PLL2.PLLState = RCC_PLL_NONE;
  131.   RCC_OscInitStruct.PLL3.PLLState = RCC_PLL_NONE;
  132.   RCC_OscInitStruct.PLL4.PLLState = RCC_PLL_NONE;
  133.   if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  134.   {
  135.     Error_Handler();
  136.   }
  137.   /** RCC Clock Config
  138.   */
  139.   RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_ACLK
  140.                               |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2
  141.                               |RCC_CLOCKTYPE_PCLK3|RCC_CLOCKTYPE_PCLK4
  142.                               |RCC_CLOCKTYPE_PCLK5;
  143.   RCC_ClkInitStruct.AXISSInit.AXI_Clock = RCC_AXISSOURCE_HSI;
  144.   RCC_ClkInitStruct.AXISSInit.AXI_Div = RCC_AXI_DIV1;
  145.   RCC_ClkInitStruct.MCUInit.MCU_Clock = RCC_MCUSSOURCE_HSI;
  146.   RCC_ClkInitStruct.MCUInit.MCU_Div = RCC_MCU_DIV1;
  147.   RCC_ClkInitStruct.APB4_Div = RCC_APB4_DIV1;
  148.   RCC_ClkInitStruct.APB5_Div = RCC_APB5_DIV1;
  149.   RCC_ClkInitStruct.APB1_Div = RCC_APB1_DIV1;
  150.   RCC_ClkInitStruct.APB2_Div = RCC_APB2_DIV1;
  151.   RCC_ClkInitStruct.APB3_Div = RCC_APB3_DIV1;

  152.   if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct) != HAL_OK)
  153.   {
  154.     Error_Handler();
  155.   }
  156. }

  157. /* USER CODE BEGIN 4 */

  158. /* USER CODE END 4 */

  159. /**
  160.   * @brief  This function is executed in case of error occurrence.
  161.   * @retval None
  162.   */
  163. void Error_Handler(void)
  164. {
  165.   /* USER CODE BEGIN Error_Handler_Debug */
  166.   /* User can add his own implementation to report the HAL error return state */
  167.   __disable_irq();
  168.   while (1)
  169.   {
  170.   }
  171.   /* USER CODE END Error_Handler_Debug */
  172. }

  173. #ifdef  USE_FULL_ASSERT
  174. /**
  175.   * @brief  Reports the name of the source file and the source line number
  176.   *         where the assert_param error has occurred.
  177.   * [url=home.php?mod=space&uid=3142012]@param[/url]  file: pointer to the source file name
  178.   * @param  line: assert_param error line source number
  179.   * @retval None
  180.   */
  181. void assert_failed(uint8_t *file, uint32_t line)
  182. {
  183.   /* USER CODE BEGIN 6 */
  184.   /* User can add his own implementation to report the file name and line number,
  185.      ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  186.   /* USER CODE END 6 */
  187. }
  188. #endif /* USE_FULL_ASSERT */

  189. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/


编译通过:

测试:CM4 内核启动,需要将拨码开关 BOOT0、 BOOT1 和 BOOT2 设置为 001
使用ST LINK 下载,可以用万用表看到GPIO电平变化。