Skip to content

Commit

Permalink
fix for compilation Blackbox x32 failure
Browse files Browse the repository at this point in the history
  • Loading branch information
terjeio committed Mar 28, 2024
1 parent dc9e940 commit ab895e8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions main/boards/BlackBoxX32.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://www.gnu.org/licenses/>.
along with grblHAL. If not, see <http://www.gnu.org/licenses/>.
*/

#include "driver.h"
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit ab895e8

Please sign in to comment.