Fix Xiao nRF52840 repeater compile failure

Compile fails due to user_btn not declared in board target.

Fixes:
- Add MomentaryButton declaration for user_btn in variants/xiao_nrf52/target.cpp
- Add momentary button helper include in variants/xiao_nrf52/target.h
- Add extern linkage for MomentaryButton -> user_btn in variants/xiao_nrf52/target.h
This commit is contained in:
entr0p1
2026-07-20 22:43:25 +10:00
parent a45dae928c
commit d2bbe4d8d3
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -4,6 +4,7 @@
#ifdef DISPLAY_CLASS
DISPLAY_CLASS display;
MomentaryButton user_btn(PIN_USER_BTN, 1000, true, true);
#endif
XiaoNrf52Board board;