diff --git a/script_support/components/CAPE/ROBOTICS/HDL/debounce.v b/script_support/components/CAPE/ROBOTICS/HDL/debounce.v
index 9ca8daf76b8e022c31fd9d2b6f049034cfc0d9bd..b4031ba9e46a1aaf775ed209c15ddd17bd157f34 100644
--- a/script_support/components/CAPE/ROBOTICS/HDL/debounce.v
+++ b/script_support/components/CAPE/ROBOTICS/HDL/debounce.v
@@ -9,7 +9,7 @@ module debounce
     output reg switch_out
   );
 
-  localparam bounce_limit_upper_bit = 15;
+  localparam bounce_limit_upper_bit = 13;
   reg [bounce_limit_upper_bit:0] bounce_count = 0;
 
   //---------------------------------------------------------------------------