From 8b69917e1df65f5503e5022c90a0f22bb9aecc59 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sat, 11 Apr 2026 21:32:50 +0900 Subject: [PATCH] Biffer buffers, more aggressive tests --- firmware/lib/test_handlers.cpp | 4 ++-- firmware/w6300/w6300.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/firmware/lib/test_handlers.cpp b/firmware/lib/test_handlers.cpp index f561b5f..cea3eb1 100644 --- a/firmware/lib/test_handlers.cpp +++ b/firmware/lib/test_handlers.cpp @@ -239,11 +239,11 @@ static void start_ping_rate(const responder& resp, uint16_t target, } static void test_ping_rate(const responder& resp) { - start_ping_rate(resp, 8192, 0, 2); + start_ping_rate(resp, 8192, 0, 8); } static void test_ping_rate_1k(const responder& resp) { - start_ping_rate(resp, 1024, 1024, 2); + start_ping_rate(resp, 2048, 1024, 8); } using sync_test_fn = ResponseTest (*)(const responder&); diff --git a/firmware/w6300/w6300.cpp b/firmware/w6300/w6300.cpp index a8278f9..365e38b 100644 --- a/firmware/w6300/w6300.cpp +++ b/firmware/w6300/w6300.cpp @@ -625,8 +625,8 @@ void init_spi() { void init() { pio_frame_end(); - std::array txsize = {4, 4, 4, 4, 4, 4, 4, 4}; - std::array rxsize = {4, 4, 4, 4, 4, 4, 4, 4}; + std::array txsize = {32, 0, 0, 0, 0, 0, 0, 0}; + std::array rxsize = {32, 0, 0, 0, 0, 0, 0, 0}; init_buffers(txsize, rxsize); }