Skip to content

Commit

Permalink
slave init bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jia-xie committed Jun 9, 2024
1 parent ee7a623 commit acc31a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/src/robot.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ void Robot_Init()
Buzzer_Init();
FusionAhrsInitialise(&g_fusion_ahrs);
CAN_Service_Init();
Board_Comm_Task_Init();
#ifdef MASTER
Melody_t system_init_melody = {
.notes = SYSTEM_INITIALIZING,
.loudness = 0.5f,
.note_num = SYSTEM_INITIALIZING_NOTE_NUM,
};
Buzzer_Play_Melody(system_init_melody); // TODO: Change to non-blocking
Board_Comm_Task_Init();
// Initialize all hardware
Chassis_Task_Init();
// Gimbal_Task_Init();
Expand Down

0 comments on commit acc31a8

Please sign in to comment.