1
0
Fork 0
2020-embedded-game-programming/README.md

24 lines
895 B
Markdown
Raw Permalink Normal View History

2022-10-28 21:02:11 +00:00
# Embedded Game Programming (2020)
2020-05-10 02:07:57 +00:00
* Get the [ESP-IDF v4.0](https://github.com/espressif/esp-idf/releases/tag/v4.0)
* Follow Steps 1 through 3 of the [Documentation](https://docs.espressif.com/projects/esp-idf/en/v4.0/get-started/index.html#step-1-install-prerequisites)
2020-05-20 01:16:30 +00:00
* Comment out line 303 of `esp-idf/components/driver/sdspi_host.c` to enable the shared SPI bus
```c
// 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;
}
```
2020-05-29 02:11:59 +00:00
* Modify the `export.sh` script in the `game` directory and fill out `IDF_PATH` and `IDF_TOOLS_PATH`
2020-05-10 02:07:57 +00:00
* `IDF_PATH` is the extracted ESP-IDF
* `IDF_TOOLS_PATH` is the path to the toolchain
* `source export.sh`
2023-08-22 15:44:58 +00:00
![Current Status](https://austinmorlan.com/posts/odroid_8/media/demo.gif)
2020-06-13 05:41:45 +00:00