Search found 13 matches

by keithco
Sat Nov 02, 2024 1:48 pm
Forum: General Discussion
Topic: Installed latest IDE/IDF now can't compile or open sdkconfig..
Replies: 1
Views: 837

Re: Installed latest IDE/IDF now can't compile or open sdkconfig..

I was able to resolve these problems by removing my previous workspace and reinstalling the latest IDE/IDF version.
I then imported my project and all works now.
by keithco
Thu Oct 31, 2024 5:08 pm
Forum: General Discussion
Topic: Installed latest IDE/IDF now can't compile or open sdkconfig..
Replies: 1
Views: 837

Installed latest IDE/IDF now can't compile or open sdkconfig..

I udated to the latest package v3.1.0/v5.3.1 When I try to compile I am getting this console message: The project was built using the ESP-IDF located at the C:/Espressif/frameworks/esp-idf-v5.2.2 path. The currently active ESP-IDF path in the IDE is C:/Espressif/frameworks/esp-idf-v5.3.1/. Please cl...
by keithco
Wed Aug 30, 2023 12:27 pm
Forum: General Discussion
Topic: WebSocket Server
Replies: 4
Views: 2656

Re: WebSocket Server

Let me look at the websocket server example. Thank you!
by keithco
Tue Aug 29, 2023 12:22 pm
Forum: General Discussion
Topic: WebSocket Server
Replies: 4
Views: 2656

Re: WebSocket Server

Hello ESP_Sprite,
Thank you for your response. I enabled notifications to me email but I did not get notified.
I saw that esp_websocket is a component. My understanding is that the client is not the same as a server.
I'll need to do some more research on this....
by keithco
Mon Aug 21, 2023 12:19 pm
Forum: General Discussion
Topic: WebSocket Server
Replies: 4
Views: 2656

WebSocket Server

I found some websocket server example code that includes this library file "esp_websocket_server.h" but it doesn't find it. I am running IDF v5.0.1. My web searches have not been successful as well. I have working code using the "esp_http_server.h" library but the state of any of the GPIO upon a web...
by keithco
Mon Aug 21, 2023 12:02 pm
Forum: General Discussion
Topic: ESP32-S3-MINI New design
Replies: 2
Views: 1273

Re: ESP32-S3-MINI New design

This is no longer an issue since I have completely changed the code and the intermittent shutdown does not happen anymore.
Definitely a code issue and not hardware.

Thank you!
by keithco
Fri Jun 30, 2023 12:21 am
Forum: General Discussion
Topic: ESP32-S3-MINI New design
Replies: 2
Views: 1273

ESP32-S3-MINI New design

My custom board is having intermittant shutdown issues using a ESP32-S3-MINI. Early on, I spent hours researching GPIO pin(s) functionality. Now, I'm questioning if I missed something.... I did not use GPIO0, GPIO3, GPIO19, GPIO20, GPIO45, GPIO46 and GPIO48. I used the remaining pins for a variety o...
by keithco
Wed May 24, 2023 12:43 pm
Forum: General Discussion
Topic: ADC issue running IDE 2.9.1
Replies: 0
Views: 763

ADC issue running IDE 2.9.1

I am running IDE 2.9.1 and are getting this error (see attachment). /* * adc.c * * Created on: Jul 28, 2022 * Author: Keith */ #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "esp_log.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" //#include "esp_a...
by keithco
Sat Apr 29, 2023 3:13 am
Forum: General Discussion
Topic: Break point and single step debugging using Espressif's IDE.
Replies: 0
Views: 712

Break point and single step debugging using Espressif's IDE.

Hi All, Any tips on getting the breakpoint and single step debugging using Espressif's IDE?
by keithco
Sat Apr 29, 2023 2:28 am
Forum: General Discussion
Topic: SPI no clock or data
Replies: 6
Views: 2230

Re: SPI no clock or data

Hello ESP_Sprite, You nailed it. I forgot that I had commented out the function call "tmp127_spi_init". There were several other issues but now are reliably reading from the TMP127-Q1 digital temperature sensor. Thanks for your help... Here is the working code: /* * temp_SPI-6.c * * Created on: Apr ...