Search found 4 matches
- Mon Jan 23, 2023 7:35 am
- Forum: IDEs for ESP-IDF
- Topic: Select Different ESP-IDF framework for different Projects with Visual Code
- Replies: 3
- Views: 7628
Re: Select Different ESP-IDF framework for different Projects with Visual Code
Thank you. For Windows with VS Code, the simplest way I had found was to keep a different set of settings files and just paste them inside the settings.vscode. Then, I thought it might be a more professional way and I had somewhere read that esp-idf add-on will find the different esp-idf installatio...
- Wed Jan 11, 2023 1:22 pm
- Forum: IDEs for ESP-IDF
- Topic: Select Different ESP-IDF framework for different Projects with Visual Code
- Replies: 3
- Views: 7628
Select Different ESP-IDF framework for different Projects with Visual Code
I have three installed frameworks:
1. v4.2.3 (in a specific commit)
2. v4.4.2
3. v5.0
I would like to use different frameworks in different projects (folders or even Workspaces).
How can I do that?
Where does esp-idf extension for Visual Code gets the "current" or "default" framework to use?
1. v4.2.3 (in a specific commit)
2. v4.4.2
3. v5.0
I would like to use different frameworks in different projects (folders or even Workspaces).
How can I do that?
Where does esp-idf extension for Visual Code gets the "current" or "default" framework to use?
- Fri May 20, 2022 7:11 pm
- Forum: Hardware
- Topic: Connect a TFT with ST7735S to ESP32 with ESP-IDF
- Replies: 2
- Views: 1930
Re: Connect a TFT with ST7735S to ESP32 with ESP-IDF
Thank you for posting!
Yes, DIO is wrong.
Finally I had solved it. Mode should be 3 and not 0
Yes, DIO is wrong.
Finally I had solved it. Mode should be 3 and not 0
- Tue May 17, 2022 6:30 pm
- Forum: Hardware
- Topic: Connect a TFT with ST7735S to ESP32 with ESP-IDF
- Replies: 2
- Views: 1930
Connect a TFT with ST7735S to ESP32 with ESP-IDF
I cannot communicate with the display. Any help is highly wellcome! Following are the main configurations data: spi_bus_config_t: spi_bus_config_t BusCfg= { .mosi_io_num=23, .miso_io_num=-1, .sclk_io_num=18, .quadwp_io_num=-1, .quadhd_io_num=-1, }; spi_device_interface_config_t: spi_device_interface...