Search found 16 matches

by rossati
Thu May 19, 2022 4:47 pm
Forum: ESP-IDF
Topic: ESP32 Port
Replies: 4
Views: 2193

Re: ESP32 Port

Thanks mbratch
Whe I attach Arduino 1 appears COM5; attaching ESP32 appears
Other devices
CP2102 USB to UART Bridge Controller
So I downloaded the CP2102 driver and installed.
Now I see COM6

Very thanks
by rossati
Wed May 18, 2022 3:24 pm
Forum: ESP-IDF
Topic: ESP32 Port
Replies: 4
Views: 2193

Re: ESP32 Port

Hi
I select the correct board (I hope: DOIT ESP32 DEVKIT V1) on tools.
by rossati
Wed May 18, 2022 2:25 pm
Forum: ESP-IDF
Topic: ESP32 Port
Replies: 4
Views: 2193

ESP32 Port

Hi
My ESP32 DEVKITV1 is not seen by Arduino IDE (it tells none on COM5).
With Arduino Uno card I am able to load software.
My Os is Window 10.
by rossati
Mon May 24, 2021 2:14 pm
Forum: Hardware
Topic: Ext0 wake up source
Replies: 2
Views: 2682

Re: Ext0 wake up source

thanks che for the confirmation you gave me.
by rossati
Mon May 24, 2021 1:52 pm
Forum: Hardware
Topic: Ext0 wake up source
Replies: 2
Views: 2682

Ext0 wake up source

Hi
I am trying to activate multiple pins at the same time as wake up Ext0, but it seems that only the last one is accepted.
Can someone confirm that Wxt0 accept only one pin?
Thanks
by rossati
Thu Jul 30, 2020 7:06 am
Forum: General Discussion
Topic: C++ compiler for Sketch ESP32
Replies: 7
Views: 7515

Re: C++ compiler for Sketch ESP32

Tanks markkuk
by rossati
Wed Jul 29, 2020 4:07 pm
Forum: General Discussion
Topic: C++ compiler for Sketch ESP32
Replies: 7
Views: 7515

Re: C++ compiler for Sketch ESP32

Thanks ESP_Sprite I agree with you on the use int8_t instead of char , because there is difference in compiling for Arduino and ESP32: for example if char variable = -1 this instruction mYArray[variable+1]; works in Arduino and crash on ESP32. For the functions with default variable this is the frag...
by rossati
Tue Jul 28, 2020 2:42 pm
Forum: General Discussion
Topic: C++ compiler for Sketch ESP32
Replies: 7
Views: 7515

Re: C++ compiler for Sketch ESP32

Thanks ESP_Sprite my problem is to create a scketch for Arduino and ESP32 boards. My be the compiler (or the switches) arenn't of the same level, for example the C++ compiler for Arduino accepts the default parameters in function declaration but this not happens for the C++ ESP32 compiler. Another d...
by rossati
Sun Jul 26, 2020 6:43 pm
Forum: General Discussion
Topic: C++ compiler for Sketch ESP32
Replies: 7
Views: 7515

C++ compiler for Sketch ESP32

Hi
It is true that the C++ compiler of ESP32 sketchs on Arduino IDE is different from the C++ compile of Arduino Uno board?
by rossati
Mon Jul 20, 2020 8:40 am
Forum: ESP-IDF
Topic: How test if Sketch usee WiFi and/or Bluetooth
Replies: 0
Views: 1776

How test if Sketch usee WiFi and/or Bluetooth

Hi I am developing a module for power reduction and I would know if this module is included in Sketch dealing with WiFi. For example I would write something like this: #ifdef WiFi esp_wifi_stop(); #endif I think there is a convention in writing forms for introspection, but I don't know it. Thanks fo...