File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
ports/raspberrypi/boards/adafruit_fruit_jam Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,3 @@ CHIP_PACKAGE = B
88CHIP_FAMILY = rp2
99
1010EXTERNAL_FLASH_DEVICES = "W25Q128JVxQ"
11-
12- # CIRCUITPY_DISPLAY_FONT = $(TOP)/tools/fonts/unifont-16.0.02-all.bdf
13- # CIRCUITPY_FONT_EXTRA_CHARACTERS = "🖮🖱️"
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ static mp_obj_t _next_device(usb_core_devices_obj_t *iter) {
8989
9090 // We passed the filters. Now make a properly allocated object to
9191 // return to the user.
92- usb_core_device_obj_t * self = mp_obj_malloc (usb_core_device_obj_t , & usb_core_device_type );
92+ usb_core_device_obj_t * self = mp_obj_malloc_with_finaliser (usb_core_device_obj_t , & usb_core_device_type );
9393
9494 common_hal_usb_core_device_construct (self , i );
9595 iter -> next_index = i + 1 ;
You can’t perform that action at this time.
0 commit comments