Search found 5 matches

by elexinverter
Fri Sep 03, 2021 8:53 am
Forum: General Discussion
Topic: Unable to connect bluetooth via PC
Replies: 0
Views: 1217

Unable to connect bluetooth via PC

Hello I have tried the SerialToSerialBT example from arduino-esp32. The code when using a serial bluetooth terminal on an android mobile works great as expected. On a PC the module pairs fine and two Bluetooth COM ports are installed. A serial terminal connects on 'incoming' COM port but not data is...
by elexinverter
Fri Sep 03, 2021 7:25 am
Forum: General Discussion
Topic: arduino-esp32 v2.0.0 & Arduino IDE 1.8.15
Replies: 1
Views: 1865

Re: arduino-esp32 v2.0.0 & Arduino IDE 1.8.15

I was able to install the latest stable v2.0.0 arduino-esp32 in arduino 1.8.15 using the board manager link https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json It is mentioned on https://docs.espressif.com/projects/arduino-esp32/en/latest/installing.html Hope ...
by elexinverter
Thu Jul 29, 2021 9:21 am
Forum: General Discussion
Topic: MCPWM fault - low level trigger
Replies: 0
Views: 1591

MCPWM fault - low level trigger

Greetings, The documentation for MCPWM fault initialization function mcpwm_fault_init describes Initialize fault submodule, currently low level triggering is not supported also the definition for its argument in mcpwm.h file says typedef enum { MCPWM_LOW_LEVEL_TGR = 0, /*!<Fault condition occurs whe...
by elexinverter
Fri May 21, 2021 6:53 am
Forum: General Discussion
Topic: Array elements not assigned in loop
Replies: 2
Views: 1904

Re: Array elements not assigned in loop

My bad :oops: . I made a logical error while framing the snippet, since I cant post the original code. But your response helped in finding the logical bug in my actual code. Since I have made all elements of array zero at beginning, the bug in index computation skipped one element and the string wou...
by elexinverter
Fri May 21, 2021 4:42 am
Forum: General Discussion
Topic: Array elements not assigned in loop
Replies: 2
Views: 1904

Array elements not assigned in loop

Greetings, I am beginner with ESP32 and using VSCode with PlatformIO plugin and Arduino framework. Below is a code snippet: struct MasterStatusDef { uint8_t members[40]; }; union { struct MasterStatusDef Value; uint8_t Byte[sizeof(struct MasterStatusDef)]; }MasterStatusRx, MasterStatusTx; void setup...