holybro_durandal-v1: update cdcacm product id

This commit is contained in:
David Sidrane
2019-11-22 06:39:15 -08:00
committed by Daniel Agar
parent 16f53ec18d
commit bbd37ada41
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -53,9 +53,9 @@ char *g_init = 0;
#if defined(SERIAL_TRACE)
int in = 0;
int out = 0;
// must be powere of 2 length
// must be power of 2 length
#define TRACE_SIZE 256
#define TRACE_WRAP(f) (f) &=(TRACE_SIZE-1)
#define TRACE_WRAP(f) ((f) &=(TRACE_SIZE-1))
char in_trace[TRACE_SIZE];
char out_trace[TRACE_SIZE];
#endif