From dc1f114c87407a2ba19b54f7554349ec7cff6075 Mon Sep 17 00:00:00 2001 From: Luca Toniolo <10792599+grandixximo@users.noreply.github.com> Date: Mon, 3 Aug 2026 21:01:41 +0800 Subject: [PATCH] hal: Migrate homecomp is_module pin declaration to bool Leftover from f107cd307a: the is_module dummy pin was still declared with the legacy bit type while the rest of homecomp uses the new getter/setter API. --- src/hal/components/homecomp.comp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hal/components/homecomp.comp b/src/hal/components/homecomp.comp index f073114f0de..8be998239b2 100644 --- a/src/hal/components/homecomp.comp +++ b/src/hal/components/homecomp.comp @@ -51,7 +51,7 @@ HOMEMOD=user_homecomp https://github.com/LinuxCNC/linuxcnc/blob/BRANCHNAME/src/hal/components/homecomp.comp """; -pin out bit is_module=1; //one pin is required to use halcompile) +pin out bool is_module=1; //one pin is required to use halcompile) license "GPL"; author "Dewey Garrett";