altos/cc1115l: Reduce trace buffer size
authorKeith Packard <keithp@keithp.com>
Fri, 10 Jun 2016 21:40:26 +0000 (14:40 -0700)
committerKeith Packard <keithp@keithp.com>
Fri, 10 Jun 2016 21:40:26 +0000 (14:40 -0700)
A 32-element trace buffer is all the larger we can fit in teledongle.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/drivers/ao_cc115l.c

index 0246ba02ddfce5a4f5925a2ac080fbbcb9bad563..24180f345cc6905856ad097884f83e386c113bef 100644 (file)
@@ -70,7 +70,7 @@ struct ao_cc115l_trace {
        const char                      *comment;
 };
 
-#define NUM_TRACE      256
+#define NUM_TRACE      32
 
 static struct ao_cc115l_trace  trace[NUM_TRACE];
 static int                     trace_i;