chen
2024-09-20 292ed46c6066d47289f1330b1c2bcc6d74761f95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "main.h"
#include "stm32f4xx_hal.h"
#define HALFLIGHT
#ifdef HALFLIGHT
#define RED         0X8800
#define GREEN       0x880000
#define BLUE        0x88
#define WHITE       0x888888
#define YELLOW      0x888800
#define LEDOFF      0x000000
#else
#define RED         0X1100
#define GREEN       0x110000
#define BLUE        0x11
#define WHITE       0x111111
#define YELLOW      0x111100
#define LEDOFF      0x000000
#endif
void Set4LEDColor(uint32_t firstled,uint32_t secondled,uint32_t thirdled,uint32_t fourthled);
extern uint32_t uwbled,rtkled,led4g,powerled;