diff --git a/main/boards/BlackBoxX32.c b/main/boards/BlackBoxX32.c
index 88fa5fe..f42a4c5 100644
--- a/main/boards/BlackBoxX32.c
+++ b/main/boards/BlackBoxX32.c
@@ -5,20 +5,20 @@
Part of grblHAL
- Copyright (c) 2023 Terje Io
+ Copyright (c) 2023-2024 Terje Io
- Grbl is free software: you can redistribute it and/or modify
+ grblHAL is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
- Grbl is distributed in the hope that it will be useful,
+ grblHAL is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with Grbl. If not, see .
+ along with grblHAL. If not, see .
*/
#include "driver.h"
@@ -88,12 +88,12 @@ static void onHomingRateSet (axes_signals_t axes, float rate, homing_mode_t mode
on_homing_rate_set(axes, rate, mode);
}
-static void onHomingCompleted (bool success)
+static void onHomingCompleted (axes_signals_t cycle, bool success)
{
homing.mask = 0;
if(on_homing_completed)
- on_homing_completed(success);
+ on_homing_completed(cycle, success);
}
void board_init (void)