From f096da3c8b930e1d9ceecc3b02d60fefc76ccc79 Mon Sep 17 00:00:00 2001 From: Troy <5659019+troyhacks@users.noreply.github.com> Date: Sun, 10 Nov 2024 07:18:39 -0500 Subject: [PATCH] Review Fixes --- wled00/bus_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index eb103c17..b59610e0 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -487,7 +487,7 @@ BusNetwork::BusNetwork(BusConfig &bc, const ColorOrderMap &com) : Bus(bc.type, b _valid = true; _artnet_outputs = bc.artnet_outputs; _artnet_leds_per_output = bc.artnet_leds_per_output; - _artnet_fps_limit = bc.artnet_fps_limit; + _artnet_fps_limit = max(uint8_t(1), bc.artnet_fps_limit); USER_PRINTF(" %u.%u.%u.%u]\n", bc.pins[0],bc.pins[1],bc.pins[2],bc.pins[3]); }