Search found 27 matches
- Sun May 03, 2026 7:04 pm
- Forum: IDEs for ESP-IDF
- Topic: Which IDE Do You Use for ESP-IDF? Please Vote
- Replies: 17
- Views: 15313
Re: Which IDE Do You Use for ESP-IDF? Please Vote
Vscode, nano, mousepad, and sometimes LibreOffice Writer when I've just re-installed the OS to get rid of a years worth of crud and on the fly trying stuff and forget to click "open with" the first time I click on a file. Mainly vscode, however sometimes nano/mousepad are good enough for a quick 1 ...
- Fri Jun 06, 2025 7:51 am
- Forum: General Discussion
- Topic: Does the ESP32C3 have a built-in temp sensor?
- Replies: 2
- Views: 278
Re: Does the ESP32C3 have a built-in temp sensor?
Yes it does. But it should be noted that its the temp of the chip its self, not an ambient/air temp sensor.
- Tue Feb 25, 2025 9:24 am
- Forum: General Discussion
- Topic: Vscode and github
- Replies: 2
- Views: 1387
Re: Vscode and github
I had the same thoughts when I first started programming using vscode/c/espressif (complete newbie).
For the tools themselves, you don't actually refer to them by location... following the "getting started" you clone the esp-isd then install.sh and then run the export.sh every subsequent time you ...
For the tools themselves, you don't actually refer to them by location... following the "getting started" you clone the esp-isd then install.sh and then run the export.sh every subsequent time you ...
- Tue Feb 18, 2025 1:41 pm
- Forum: ESP-IDF
- Topic: vscode esp-idf 5.4 can not find tools/python_env folder nor idf5.5_py3.10_env
- Replies: 1
- Views: 1217
Re: vscode esp-idf 5.4 can not find tools/python_env folder nor idf5.5_py3.10_env
Did you run the install.sh at least once before running the export.sh?
The install creates a /home/user/.espressif directory by default.
Another thing to consider is that you need python installed in to the OS (1) for it to then install a venv environment within the /home/user/.espressif/python ...
The install creates a /home/user/.espressif directory by default.
Another thing to consider is that you need python installed in to the OS (1) for it to then install a venv environment within the /home/user/.espressif/python ...
- Thu Feb 13, 2025 2:55 pm
- Forum: ESP-IDF
- Topic: VSCode ESP-IDF hangs on open/create project
- Replies: 4
- Views: 2225
Re: VSCode ESP-IDF hangs on open/create project
If you are only using vscode for esp-idf stuff then I've found that the quickest way to resolve any issues is to completely delete vscode and its data stores.
In linux those are .vscode/ and .config/Code/ under the /home/your_user/ directory. Deleting those directories completely nukes the vscode ...
In linux those are .vscode/ and .config/Code/ under the /home/your_user/ directory. Deleting those directories completely nukes the vscode ...
- Thu Jan 30, 2025 2:22 pm
- Forum: General Discussion
- Topic: Running some unity tests with weird memory leak.
- Replies: 3
- Views: 1681
Re: Running some unity tests with weird memory leak.
Thanks for that. Sets my mind more at ease.That's my guess too.
- Wed Jan 29, 2025 10:44 am
- Forum: General Discussion
- Topic: Running some unity tests with weird memory leak.
- Replies: 3
- Views: 1681
Re: Running some unity tests with weird memory leak.
Some more information...
I noticed that the "odd" allocations of memory would seemingly move location if I changed the order of the tests so initially I assumed it was possibly something to do with the "chip" loading/caching parts of my program but for the life of me I could not figure out why no ...
I noticed that the "odd" allocations of memory would seemingly move location if I changed the order of the tests so initially I assumed it was possibly something to do with the "chip" loading/caching parts of my program but for the life of me I could not figure out why no ...
- Tue Jan 28, 2025 4:08 pm
- Forum: General Discussion
- Topic: Running some unity tests with weird memory leak.
- Replies: 3
- Views: 1681
Running some unity tests with weird memory leak.
In the included stack heap trace created using heap_trace_start(HEAP_TRACE_ALL), heap_trace_stop(), and heap_trace_dump() I have noticed some strange allocations.
The start/stop/dump are around each test (in startUp and tearDown).
I also use of heap_caps_get_free_size(MALLOC_CAP_32BIT | MALLOC_CAP ...
The start/stop/dump are around each test (in startUp and tearDown).
I also use of heap_caps_get_free_size(MALLOC_CAP_32BIT | MALLOC_CAP ...
- Mon Jan 06, 2025 2:02 pm
- Forum: IDEs for ESP-IDF
- Topic: VSCode + ESP-IDF + Component Dev Env
- Replies: 3
- Views: 11038
Re: VSCode + ESP-IDF + Component Dev Env
I'm currently playing around with component development.
Within my .code-workspace file I have the following:
"folders": [
{
"name": "test-apps/i2c-mcp9808",
"path": "./test-apps/i2c-mcp9808"
},
{
"name": "ComponentTests",
"path": "./components/i2c-mcp9808/test"
},
{
"name": "examples ...
Within my .code-workspace file I have the following:
"folders": [
{
"name": "test-apps/i2c-mcp9808",
"path": "./test-apps/i2c-mcp9808"
},
{
"name": "ComponentTests",
"path": "./components/i2c-mcp9808/test"
},
{
"name": "examples ...
- Tue Jul 30, 2024 4:20 pm
- Forum: General Discussion
- Topic: Installing several different versions of ESP-IDF in VS Code - particularly the tools!
- Replies: 5
- Views: 6071
Re: Installing several different versions of ESP-IDF in VS Code - particularly the tools!
I'm fairly sure that you will get a different version of the python environment for each version of ESP-IDF in vscode.
And as as far as the tools (compilers/debugger/etc.) are concerned it may re-use some of them and/or create versions in the subdirectories under each tool such as .espressif ...
And as as far as the tools (compilers/debugger/etc.) are concerned it may re-use some of them and/or create versions in the subdirectories under each tool such as .espressif ...