blob: 0792dd60be7b658e48cd09f09c550a723b9c96fd (
plain) (
tree)
|
|
#ifndef __STM_INIT_H
#define __STM_INIT_H
#include "stm32f4xx_hal.h"
#define LED_PORT GPIOJ
#define LED_RED GPIO_PIN_1
#define LED_YELLOW GPIO_PIN_2
#define LED_GREEN GPIO_PIN_3
#define LED_BLUE GPIO_PIN_4
extern void stm_init(void);
#endif /* __STM_INIT_H */
|