Search found 11 matches
- Fri Nov 24, 2017 6:09 pm
- Forum: ESP-IDF
- Topic: "No rule to make target" while compiling
- Replies: 5
- Views: 19046
Re: "No rule to make target" while compiling
had a back-up file with extension "main-Copy.cpp". Got the same error, but deleting this file fixed the problem!
- Tue Sep 05, 2017 7:42 pm
- Forum: General Discussion
- Topic: Trouble with i2c and i2s running simultaneously
- Replies: 7
- Views: 12636
Re: Trouble with i2c and i2s running simultaneously
Hi, I have finally had it working to my needs. Here is how I did it (hope it would save somebody few hours): I ran the wifi + i2s communication on the main thread, where as I ran i2C comm on separate task. This seems to be working I also noticed that most of the issues that I encountered were caused...
- Sun Sep 03, 2017 1:08 pm
- Forum: General Discussion
- Topic: Trouble with i2c and i2s running simultaneously
- Replies: 7
- Views: 12636
Trouble with i2c and i2s running simultaneously
Hi, Using ESP-IDF with ESP32-WROVER kit with jumper wires. I am running an accelerator and microphone, using freeRtos task. The sensors work fine when only one of them being used. But the problem occurs when I try to do parallel task utilizing dual cores. I2C communication stops working while i2s ke...
- Fri Aug 25, 2017 1:20 pm
- Forum: General Discussion
- Topic: I2c communication and analogue read, not working ideas??
- Replies: 2
- Views: 5408
Re: I2c communication and analogue read, not working ideas??
Thank you for your response. Here is the configuration: I2C Device: 3 axis accelerometer Analog device: analog Microphone Board: ESP32 dev kit Arrangements: on the breadboard with jumper wires I2C device drawing power from the ESP32 dev module, and communicating via pin via 21 and 22 (SCL, SDA). Ana...
- Wed Aug 23, 2017 10:03 pm
- Forum: General Discussion
- Topic: I2c communication and analogue read, not working ideas??
- Replies: 2
- Views: 5408
I2c communication and analogue read, not working ideas??
First of all I am new to electronics. I am using ESP32 dev kit and trying to communicate with an i2c sensor and an analogue sensor. I am able to communicate both devices. I am using freertos Task to gather output running on parallel threads on two cores of esp32. But I moticed that as the i2c commum...
- Wed Jun 07, 2017 1:05 am
- Forum: General Discussion
- Topic: ESP32 UDP - WiFiUDP how to send bytes using udp protocol?
- Replies: 1
- Views: 10642
ESP32 UDP - WiFiUDP how to send bytes using udp protocol?
Hi, I am trying to use WiFiUDP class. When I try to send the data using the function wifiudp.write(buf, l), I get compiler error. Which says: error: macro "write" requires 3 arguments, but only 2 given wifiudp.write https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/src/WiFiUdp.h ...
- Sun May 28, 2017 5:18 am
- Forum: General Discussion
- Topic: [SOLVED] Why it takes a while for the new posts and the replies ?
- Replies: 2
- Views: 4723
Re: Why it takes a while for the new posts and the replies ?
Thank you for your reply. No I can see it.
Thank you, Please close this as solved.
Thank you, Please close this as solved.
- Sat May 27, 2017 2:39 pm
- Forum: General Discussion
- Topic: [SOLVED] Why it takes a while for the new posts and the replies ?
- Replies: 2
- Views: 4723
[SOLVED] Why it takes a while for the new posts and the replies ?
Folks, I am a new member to this forum but I am experiencing long delays in my new post and replies published, is there any step I am missing here or it's generally slow to publish your thoughts/questions on this forum. I posted to two replies for my posts but all I get a message saying it would be ...
- Sat May 27, 2017 12:39 am
- Forum: General Discussion
- Topic: I2C communication
- Replies: 4
- Views: 9171
Re: I2C communication
Thank you for your replies. I am working using esp-idf framework using eclipse in C++. So I would prefer in C++. I was able to hook up esp32 with the sensor and successfully run it via Areduino IDE and Arduino-esp32 core. I will look into the logic analyzer, if you look through the code I am assumin...
- Fri May 26, 2017 12:46 pm
- Forum: General Discussion
- Topic: I2C communication
- Replies: 4
- Views: 9171
Re: I2C communication
Thank you for your response onehorse and Kolban. Onehorse, I am trying not to use Arduino library for my project as I am not sure what works and what does not work. I don't know where I would get stuck using Arduino library for esp32. I also looked into Arduino Wire.h to figure out where I could be ...