From b225a8a7e344f7d74042333923f2744cf8bda056 Mon Sep 17 00:00:00 2001 From: Michael Ossmann Date: Sat, 3 Jan 2026 19:03:15 -0500 Subject: [PATCH] Fix RFFC5072 GPO bug on Jawbreaker --- firmware/common/rffc5071.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firmware/common/rffc5071.c b/firmware/common/rffc5071.c index 2e1d7c41..161e74ec 100644 --- a/firmware/common/rffc5071.c +++ b/firmware/common/rffc5071.c @@ -122,8 +122,10 @@ void rffc5071_setup(rffc5071_driver_t* const drv) /* GPOs are active at all times */ set_RFFC5071_GATE(drv, 1); +#ifdef PRALINE /* Enable GPO Lock output signal */ set_RFFC5071_LOCK(drv, 1); +#endif rffc5071_regs_commit(drv); }