Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5b7e84e
New buttons
EUtrilla2002 Sep 10, 2025
a6c2308
Added new driver + new prerrequisites
EUtrilla2002 Sep 22, 2025
fecd864
Changed esp32c2 (no JTAG) for ESP32c6 (proven, working and with JTAG)
EUtrilla2002 Sep 26, 2025
58c4fe4
Changed driver
EUtrilla2002 Sep 30, 2025
02a079d
Merge pull request #23 from EUtrilla2002/master
dcamarmas Oct 2, 2025
903c8db
Merge remote-tracking branch 'upstream/master'
EUtrilla2002 Oct 2, 2025
f23cf51
Some fixes in driver and messages
EUtrilla2002 Oct 2, 2025
494c03c
fix logging debug calls
EUtrilla2002 Oct 2, 2025
6a34e28
Merge pull request #30 from dcamarmas/master
dcamarmas Oct 7, 2025
c211a4c
Merge pull request #20 from dcamarmas/master
dcamarmas Oct 7, 2025
8e98c9f
Merge pull request #17 from creatorsim-community/master
dcamarmas Oct 7, 2025
babc9f5
Merge pull request #206 from creatorsim-community/master
dcamarmas Oct 7, 2025
235d374
Merge pull request #31 from dcamarmas/master
dcamarmas Oct 7, 2025
1ac23ad
Merge pull request #21 from dcamarmas/master
dcamarmas Oct 7, 2025
73e5508
Merge pull request #18 from creatorsim-community/master
dcamarmas Oct 7, 2025
8aa086b
Merge pull request #207 from creatorsim-community/master
dcamarmas Oct 7, 2025
fb4573a
Updated pre-requisites with instructions to create a virtual environment
EUtrilla2002 Oct 21, 2025
0f95972
Fixed messages and driver
dcamarmas Oct 23, 2025
725732b
Merge pull request #32 from EUtrilla2002/master
dcamarmas Oct 23, 2025
5ffe046
Fixes in pre-requisites
EUtrilla2002 Oct 24, 2025
a8f91be
Merge pull request #33 from EUtrilla2002/master
dcamarmas Oct 24, 2025
bbfe111
Merge pull request #19 from creatorsim-community/master
dcamarmas Oct 28, 2025
8a2ba82
Merge pull request #19 from creatorsim-community/master
dcamarmas Oct 28, 2025
5ada283
Merge pull request #208 from creatorsim-community/master
dcamarmas Oct 28, 2025
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
316 changes: 284 additions & 32 deletions components/simulator/creator_uielto_target_flash.js

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions gateway/esp32-rv/.gitignore

This file was deleted.

1 change: 1 addition & 0 deletions gateway/esp32-rv/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ cmake_minimum_required(VERSION 3.16)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(hello_world)
target_link_libraries(${project_elf} PRIVATE "-Wl,--wrap=esp_panic_handler")
48 changes: 45 additions & 3 deletions gateway/esp32-rv/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
get_idf
idf.py set-target [esp32c3]
idf.py build
# CREATOR ESP-32 Driver

By Elisa Utrilla Arroyo

## Installation and execution

1. Install [Python 3.9](https://www.python.org/downloads/release/python-3913/).

- In Ubuntu:
```bash
sudo apt install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.9 python3.9-venv python3.9-distutils
```
- With [uv](https://docs.astral.sh/uv):
```sh
uv python install 3.9
```

3. Install the ESP-IDF framework, following [espressif's documentation](https://docs.espressif.com/projects/esp-idf/en/v5.5.1/esp32/get-started/linux-macos-setup.html)To ensure Python 3.9 is used for the installation, first create a virtual environment in `~/.espressif/python_env/idf5.3_py3.9_en`, and activate it, before executing the `install.sh` script.

```bash
python3.9 -m venv ~/.espressif/python_env/idf5.3_py3.9_en
source ~/.espressif/python_env/idf5.3_py3.9_env/bin/activate


```
⚠️ If you have a newer virtual environment version for espressif, by default it will go there. Erase the virtual environments that you are not using by doing (for example):

```
rm -rf ~/.espressif/python_env/idf5.3_py3.10_en
rm -rf ~/.espressif/python_env/idf5.3_py3.13_env
```
4. Install the requirements and move variables:

```
cd ~/esp/v5.3/esp-idf
./install.sh
. ./export.sh
```
5. Execute the gateway web service:

```
python3 gateway.py
```
127 changes: 0 additions & 127 deletions gateway/esp32-rv/creator/io.h

This file was deleted.

Loading