ensure USB config numbers always start from 1

Depending on which features (and thus USB configurations) are included
in the firmware, we need to re-define the ordering of the configuration
numbers, as the Atmel USBD driver simply assumes that configurations are
numbered 1..N without any gaps in the sequence.
This commit is contained in:
Harald Welte
2016-03-03 11:02:45 +01:00
parent 072daddf98
commit 1605564489
7 changed files with 26 additions and 4 deletions

View File

@@ -25,8 +25,6 @@
#include "string.h"
#include "inttypes.h"
#include "simtrace.h"
#define MIN(a, b) ((a < b) ? a : b)
#ifdef __GNUC__