Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ sdkconfig.old
*.img
*.exe
*.gch
*.zip
*.zip
.DS_Store
*/.DS_Store

7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,16 @@ _Note: If you are familiar with esptool, you just have to flash `odroid-go-multi


# Compilation
The official esp-idf version 3.1 or newer is required and to improve SD Card support you should this patch:
The official esp-idf version 5.0 or newer is required and to improve SD Card support you should this patch:

- tools/patches/esp-idf-sdcard-patch.diff

_Note: Those patches do not introduce breaking changes to non-GO (standard ESP32) projects and can safely be applied to your global esp-idf installation._

## Build Steps:
1. Compile firmware: `idf.py build`
2. And then:
1. Copy sdkconfig.odroid_go to sdkconfig or do `idf.py menuconfig` for custom targets.
2. Compile firmware: `idf.py build`
3. And then:
- To produce image files: `python tools/pack.py`
- To flash and debug: `idf.py flash monitor`

Expand Down
Binary file added components/esp_bsp_generic/.DS_Store
Binary file not shown.
9 changes: 9 additions & 0 deletions components/esp_bsp_generic/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
file(GLOB_RECURSE SRCS src/*.c)

idf_component_register(
SRCS ${SRCS}
INCLUDE_DIRS "include"
PRIV_INCLUDE_DIRS "priv_include"
REQUIRES driver spiffs esp_littlefs fatfs
PRIV_REQUIRES esp_lcd
)
Loading