1
0
複製 0
Go to file
Austin Morlan 99e40d860a
Update README
2023-08-22 08:44:58 -07:00
assets Part 8: Tile System 2020-07-01 17:40:42 -07:00
game Part 8: Tile System 2020-07-01 17:40:42 -07:00
tools Part 8: Tile System 2020-07-01 17:40:42 -07:00
.gitignore Part 1: Build System 2020-07-01 17:40:36 -07:00
LICENSE Part 1: Build System 2020-07-01 17:40:36 -07:00
README.md Update README 2023-08-22 08:44:58 -07:00

README.md

Embedded Game Programming (2020)

  • Get the ESP-IDF v4.0
  • Comment out line 303 of esp-idf/components/driver/sdspi_host.c to enable the shared SPI bus
// Initialize SPI bus
esp_err_t ret = spi_bus_initialize((spi_host_device_t)slot, &buscfg,
    slot_config->dma_channel);
if (ret != ESP_OK) {
    ESP_LOGD(TAG, "spi_bus_initialize failed with rc=0x%x", ret);
    //return ret;
}
  • Modify the export.sh script in the game directory and fill out IDF_PATH and IDF_TOOLS_PATH
    • IDF_PATH is the extracted ESP-IDF
    • IDF_TOOLS_PATH is the path to the toolchain
  • source export.sh

Current Status