Search found 7 matches

by ben3welec
Mon Mar 28, 2022 6:44 pm
Forum: IDEs for ESP-IDF
Topic: Setting up common source files in Espressif-IDE
Replies: 2
Views: 3400

Re: Setting up common source files in Espressif-IDE

Hi ESP_kondalkolipaka, Thanks so much for your response. Unfortunately I couldn't seem to make much of the cmake thread you referenced, and I also wasn't able to get far with the "Shared Projects" concept - I wasn't really sure how to fit that in with my paradigm as the shared files are not really a...
by ben3welec
Fri Mar 18, 2022 8:43 pm
Forum: IDEs for ESP-IDF
Topic: Setting up common source files in Espressif-IDE
Replies: 2
Views: 3400

Setting up common source files in Espressif-IDE

Hi All, I hope this ins't a duplicate topic (I've done a fair amount of googling and tinkering), but I cannot seem to come up with the right way to have a set of common source files shared between two projects in the Espressif IDE (Version: 2.4.0 / Build id: 20220128-0745) What I want is something l...
by ben3welec
Wed Mar 03, 2021 3:36 pm
Forum: IDEs for ESP-IDF
Topic: Eclipse Installation - Cmake Error - Python dependencies
Replies: 1
Views: 5411

Re: Eclipse Installation - Cmake Error - Python dependencies

I don't know if this "correct", but here's what I did to fix my problem: I noticed a message within the console that said “To install the missing packages, please run "C:\ESP-DEV\esp-idf-v4.2\install.bat". Running that batch file resulted itself in more error messages that included a message to inst...
by ben3welec
Fri Feb 26, 2021 9:54 pm
Forum: IDEs for ESP-IDF
Topic: Eclipse Installation - Cmake Error - Python dependencies
Replies: 1
Views: 5411

Eclipse Installation - Cmake Error - Python dependencies

Hi All, I'm trying to install a fresh copy of Eclipse following the instructions at https://github.com/espressif/idf-eclipse-plugin#Prerequisites Everything appears to work up until I try to build the idf_default_template project (or any other project for that matter). I get "CMake Error at C:/ESP-D...
by ben3welec
Wed Aug 05, 2020 6:18 pm
Forum: General Discussion
Topic: UART to SPP Bridge - ESP reboots whenever esp_spp_write() is called
Replies: 3
Views: 5263

Re: UART to SPP Bridge - ESP reboots whenever esp_spp_write() is called

So as linuxpaul alluded to, I was getting "LoadProhibited" error. It appears that the error was being somehow caused by the line: if (spp_param->write.cong == 0) {} located in my uart_rx_task(). What had me so stumped for so long was that commenting out lines inside the if statement prevented the ex...
by ben3welec
Mon Jul 20, 2020 12:32 pm
Forum: General Discussion
Topic: UART to SPP Bridge - ESP reboots whenever esp_spp_write() is called
Replies: 3
Views: 5263

Re: UART to SPP Bridge - ESP reboots whenever esp_spp_write() is called

Hi linuxpaul,

Thanks for the reply. The pins I'm using for the uart are GPIO4 & 5. The datasheet says to avoid GPIO6-11, so I think I'm ok there. Also, I don't have a problem when I comment out the spp_uart_write() line, so I think everything is working from the standpoint of the uart.
by ben3welec
Fri Jul 17, 2020 3:44 pm
Forum: General Discussion
Topic: UART to SPP Bridge - ESP reboots whenever esp_spp_write() is called
Replies: 3
Views: 5263

UART to SPP Bridge - ESP reboots whenever esp_spp_write() is called

Hi All, first post ever so hopefully I do this right :) I'm trying to do something very similar to this post (https://esp32.com/viewtopic.php?t=5499), and likely experiencing a similar problem, but I just can't seem to get around it. I'm trying to use the esp_spp_write() function to send data receiv...