stm3个led显示二进制
时间: 2024-05-07 08:22:25 浏览: 62
好的,以下是使用STM32的CubeMX和HAL库编写的示例代码,将二进制数以LED灯的形式显示出来:
```c
#include "main.h"
void SystemClock_Config(void);
static void MX_GPIO_Init(void);
int main(void)
{
HAL_Init();
SystemClock_Config();
MX_GPIO_Init();
uint8_t binary = 0;
while (1)
{
GPIO_PinState bit0 = (GPIO_PinState)(binary & 0x01);
GPIO_PinState bit1 = (GPIO_PinState)((binary >> 1) & 0x01);
GPIO_PinState bit2 = (GPIO_PinState)((binary >> 2) & 0x01);
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_0, bit0);
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, bit1);
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_2, bit2);
// Increase binary by 1, and loop back to 0 when it reaches 8
binary = (binary + 1) % 8;
HAL_Delay(500);
}
}
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_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 = 8;
RCC_OscInitStruct.PLL.PLLN = 336;
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
RCC_OscInitStruct.PLL.PLLQ = 7;
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();
}
}
static void MX_GPIO_Init(void)
{
GPIO_InitTypeDef GPIO_InitStruct = {0};
/* GPIO Ports Clock Enable */
__HAL_RCC_GPIOA_CLK_ENABLE();
/*Configure GPIO pin Output Level */
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_2, GPIO_PIN_RESET);
/*Configure GPIO pins : PA0 PA1 PA2 */
GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_2;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
}
```
在这个示例代码中,我们使用了STM32F4Discovery开发板上的PA0、PA1和PA2引脚作为LED灯。代码的主要功能是将一个0到7之间的二进制数以LED灯的形式显示出来,并且每隔500毫秒更新一次。
在主函数中,我们定义了一个名为“binary”的变量,用于表示当前要显示的二进制数。然后我们进入一个无限循环,循环中先根据二进制数计算出三个LED灯对应的值,然后使用HAL库中的GPIO_WritePin函数将这些值写入到LED灯的引脚上。最后,我们通过将“binary”变量加1来更新二进制数,并使用模运算使其在达到8时循环回到0。同时,我们使用HAL延时函数HAL_Delay来控制每次更新之间的时间间隔。
如果您想要运行这个示例代码,请确保您的开发板上有3个LED灯,并将它们连接到PA0、PA1和PA2引脚上。然后使用STM32CubeMX生成一个基于HAL库的工程,并将以上代码复制到main.c文件中。最后,使用您喜欢的编译器将工程编译并下载到开发板上即可。
阅读全文