From 52c6464f0d86aee9f149c08340f4badfc5ffc618 Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Thu, 12 Mar 2026 15:15:07 -0400 Subject: [PATCH] fix docker compile, dongle address --- board/dongle.c | 6 +++--- board/k92x0249.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/board/dongle.c b/board/dongle.c index 43390d2..c2b6307 100644 --- a/board/dongle.c +++ b/board/dongle.c @@ -80,8 +80,8 @@ void dongle_init( dongle->jvs.next = next; dongle->jvs.transact = dongle_transact; dongle->jvs.sense = dongle_sense; - dongle->jvs.sense_out = true; - dongle->addr = 0xFF; + dongle->jvs.sense_out = false; + dongle->addr = 0x80; dongle->state = IDLE; dongle->ops_ctx = ops_ctx; } @@ -167,7 +167,7 @@ static HRESULT dongle_cmd( default: dprintf("DONGLE: Node %02x: Unhandled command byte @ %02X %02x\n", dongle->addr, - req->pos, + (uint8_t)req->pos, req->bytes[req->pos]); dump_const_iobuf(req); diff --git a/board/k92x0249.c b/board/k92x0249.c index 560115a..92a77b2 100644 --- a/board/k92x0249.c +++ b/board/k92x0249.c @@ -167,7 +167,7 @@ static HRESULT k92x0249_cmd( default: dprintf("K92X0249: Node %02x: Unhandled command byte @ %02X %02x\n", k92x0249->addr, - req->pos, + (uint8_t)req->pos, req->bytes[req->pos]); dump_const_iobuf(req);