This commit is contained in:
TuxMonkey
2025-11-04 22:13:49 +08:00
parent d744034f45
commit f51fe3cc4e
4 changed files with 49 additions and 54 deletions

View File

@@ -35,7 +35,7 @@ uint8_t b = 0;
* @brief WS2812 LED control task
* @param argument
*/
void ws2812Task(void const *argument) {
void ws2812Task(void const * argument) {
while (1) {
switch (RobotMode) {
case NORMAL_MODE:

View File

@@ -8,7 +8,7 @@
#include "ws2812.h"
/*---------------------FUNCTIONS---------------------*/
void ws2812Task(void const *argument);
extern void ws2812Task(void const *argument);
void BlinkYellow(void);