#include "stm32c0xx_hal.h"
#define LED_VERTE_PIN GPIO_PIN_0
#define LED_ROUGE_PIN GPIO_PIN_1
#define LED_ORANGE_PIN GPIO_PIN_2
#define LED_BLEUE_PIN GPIO_PIN_14
// Déclaration de la broche pour le bouton
#define BOUTON_PIN GPIO_PIN_8
void allumerLEDOrange(GPIO_PinState state)
{
// Activer la LED orange pendant 500 ms
HAL_GPIO_WritePin(GPIOD, LED_ORANGE_PIN, GPIO_PIN_SET);
HAL_Delay(2000);
// Éteindre la LED orange
HAL_GPIO_WritePin(GPIOD, LED_ORANGE_PIN, GPIO_PIN_RESET);
}
void allumerLEDBleue(GPIO_PinState state)
{
// Activer la LED bleue pendant 500 ms
HAL_GPIO_WritePin(GPIOD, LED_BLEUE_PIN, GPIO_PIN_SET);
HAL_Delay(2000);
// Éteindre la LED bleue
HAL_GPIO_WritePin(GPIOD, LED_BLEUE_PIN, GPIO_PIN_RESET);
}
void allumerLEDRouge(GPIO_PinState state)
{
// Activer la LED rouge pendant 500 ms
HAL_GPIO_WritePin(GPIOD, LED_ROUGE_PIN, GPIO_PIN_SET);
HAL_Delay(2000);
// Éteindre la LED rouge
HAL_GPIO_WritePin(GPIOD, LED_ROUGE_PIN, GPIO_PIN_RESET);
}
void allumerLEDVerte(GPIO_PinState state)
{
// Activer la LED verte pendant 500 ms
HAL_GPIO_WritePin(GPIOD, LED_VERTE_PIN, GPIO_PIN_SET);
HAL_Delay(2000);
// Éteindre la LED verte
HAL_GPIO_WritePin(GPIOD, LED_VERTE_PIN, GPIO_PIN_RESET);
}
// Déclaration des broches pour les LEDs
void gestionBouton(void)
{
GPIO_PinState boutonState = HAL_GPIO_ReadPin(GPIOA, BOUTON_PIN);
if (boutonState == GPIO_PIN_SET)
{
allumerLEDVerte(boutonState);
allumerLEDRouge(boutonState);
allumerLEDOrange(boutonState);
allumerLEDBleue(boutonState);
} }
void SystemClock_Config(void);
int main(void)
{
HAL_GPIO_WritePin(GPIOD, LED_VERTE_PIN | LED_ROUGE_PIN | LED_ORANGE_PIN | LED_BLEUE_PIN, GPIO_PIN_RESET);
// Initialisation de la bibliothèque HAL
HAL_Init();
// Configuration des broches GPIO pour les LEDs et le bouton
__HAL_RCC_GPIOD_CLK_ENABLE(); // Activer l'horloge pour GPIOD
__HAL_RCC_GPIOA_CLK_ENABLE(); // Activer l'horloge pour GPIOA
GPIO_InitTypeDef GPIO_InitStruct;
// Configuration des broches pour les LEDs en mode sortie
GPIO_InitStruct.Pin = LED_VERTE_PIN | LED_ROUGE_PIN | LED_ORANGE_PIN | LED_BLEUE_PIN ;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
HAL_GPIO_Init(GPIOD, &GPIO_InitStruct);
// Configuration de la broche pour le bouton en mode entrée avec résistance de pull-up
GPIO_InitStruct.Pin = BOUTON_PIN ;
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
// Boucle principale
while (1)
{
gestionBouton();
}}
void SystemClock_Config(void)
{
RCC_OscInitTypeDef RCC_OscInitStruct;
RCC_ClkInitTypeDef RCC_ClkInitStruct;
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
// Correction : Supprimer la ligne RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
{
Error_Handler();
}
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK |
RCC_CLOCKTYPE_PCLK1;
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI;
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK)
{
Error_Handler();
}
}
void Error_Handler(void)
{
// Gérer l'erreur de manière appropriée, par exemple, clignoter une LED d'erreur ou signaler l'erreur via une interface de débogage.
while (1)
{
// Boucle infinie pour maintenir le microcontrôleur dans un état d'erreur
}
}
Loading
st-nucleo-c031c6
st-nucleo-c031c6