File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ CIRCUITPY_AUDIOIO = 1
14
14
CIRCUITPY_AUDIOBUSIO = 1
15
15
# Pins for I2SOut are not available.
16
16
CIRCUITPY_AUDIOBUSIO_I2SOUT = 0
17
+ CIRCUITPY_BUSIO_SPI = 0
17
18
CIRCUITPY_PWMIO = 0
18
19
CIRCUITPY_ROTARYIO = 0
19
20
CIRCUITPY_RTC = 0
Original file line number Diff line number Diff line change @@ -10,4 +10,6 @@ INTERNAL_FLASH_FILESYSTEM = 1
10
10
LONGINT_IMPL = NONE
11
11
CIRCUITPY_FULL_BUILD = 0
12
12
13
- CIRCUITPY_GETPASS = 0
13
+ # There are many pin definitions on this board; it doesn't quite fit on very large translations.
14
+ # So remove what might be least likely module to be used.
15
+ CIRCUITPY_RAINBOWIO = 0
Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ typedef struct {
41
41
mp_obj_base_t base ;
42
42
// Python buffer object whose contents are the descriptor.
43
43
const uint8_t * report_descriptor ;
44
- uint8_t report_ids [MAX_REPORT_IDS_PER_DESCRIPTOR ];
45
- uint8_t in_report_lengths [MAX_REPORT_IDS_PER_DESCRIPTOR ];
46
- uint8_t out_report_lengths [MAX_REPORT_IDS_PER_DESCRIPTOR ];
47
44
uint8_t * in_report_buffers [MAX_REPORT_IDS_PER_DESCRIPTOR ];
48
45
uint8_t * out_report_buffers [MAX_REPORT_IDS_PER_DESCRIPTOR ];
49
46
uint16_t report_descriptor_length ;
47
+ uint8_t report_ids [MAX_REPORT_IDS_PER_DESCRIPTOR ];
48
+ uint8_t in_report_lengths [MAX_REPORT_IDS_PER_DESCRIPTOR ];
49
+ uint8_t out_report_lengths [MAX_REPORT_IDS_PER_DESCRIPTOR ];
50
50
uint8_t usage_page ;
51
51
uint8_t usage ;
52
52
uint8_t num_report_ids ;
You can’t perform that action at this time.
0 commit comments