summaryrefslogtreecommitdiff
path: root/src/led-test/include/stm_init.h
blob: 0792dd60be7b658e48cd09f09c550a723b9c96fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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 */