Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions components/box-emu/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
## IDF Component Manager Manifest File
dependencies:
idf: ">=5.5"
espressif/esp_tinyusb: ">=2.0"
idf: '>=5.5'
espressif/esp_tinyusb: '>=2.0'
lvgl/lvgl: '>=9.2.2'
espp/adc: ">=1.0"
espp/aw9523: ">=1.0"
espp/button: ">=1.0"
espp/drv2605: ">=1.0"
espp/esp-box: ">=1.0"
espp/event_manager: ">=1.0"
espp/max1704x: ">=1.0"
espp/mcp23x17: ">=1.0"
espp/task: ">=1.0"
espp/timer: ">=1.0"
espp/serialization: ">=1.0"
espp/adc: '>=1.0'
espp/aw9523: '>=1.0'
espp/button: '>=1.0'
espp/drv2605: '>=1.0'
espp/esp-box: '>=1.0'
espp/event_manager: '>=1.0'
espp/max1704x: '>=1.0'
espp/mcp23x17: '>=1.0'
espp/task: '>=1.0'
espp/timer: '>=1.0'
espp/serialization: '>=1.0'
espressif/usb: '*'
2 changes: 1 addition & 1 deletion components/box-emu/include/box-emu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <esp_vfs_fat.h>
#include <sdmmc_cmd.h>

#include <hal/usb_phy_types.h>
// #include <hal/usb_phy_types.h>
#include <esp_private/usb_phy.h>
Comment on lines 9 to 11

#include <tinyusb.h>
Expand Down
1 change: 1 addition & 0 deletions components/box-emu/src/box-emu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,7 @@ bool BoxEmu::initialize_usb() {
.max_files = 5,
.allocation_unit_size = 2 * 1024, // sector size is 512 bytes, this should be between sector size and (128 * sector size). Larger means higher read/write performance and higher overhead for small files.
.disk_status_check_enable = false, // true if you see issues or are unmounted properly; slows down I/O
.use_one_fat = true,
};

tinyusb_msc_fatfs_config_t config_msc = {
Expand Down
4 changes: 4 additions & 0 deletions components/doom/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ target_compile_options(${COMPONENT_LIB} PRIVATE
-Wno-misleading-indentation
-Wno-format-overflow
-Wno-char-subscripts
$<$<COMPILE_LANGUAGE:C>:-std=gnu17>
$<$<COMPILE_LANGUAGE:C>:-Wno-discarded-qualifiers>
$<$<COMPILE_LANGUAGE:C>:-Wno-error=incompatible-pointer-types>
$<$<COMPILE_LANGUAGE:C>:-Wno-error=compare-distinct-pointer-types>
-Wno-missing-field-initializers
-DHAVE_CONFIG_H
-O2
Expand Down
Loading
Loading