Search found 35 matches

by powerbroker
Wed May 07, 2025 2:09 am
Forum: General Discussion
Topic: Flash ESP32 programmatically using Java/Android
Replies: 9
Views: 15054

Re: Flash ESP32 programmatically using Java/Android


let me present a proof-of-concept build of Java (+ a native library "jSerialComm") Esp32 FlashTool, capable of basic ESP32 serial operations:



read MCU ID + EFUSE bank 0
upload and run ESP-IDF ESP32 Stub loader from json file
retrieve MD5 of a specified flash region
dump specified flash ...
by powerbroker
Sat May 03, 2025 5:40 am
Forum: General Discussion
Topic: Flash ESP32 programmatically using Java/Android
Replies: 9
Views: 15054

Re: Flash ESP32 programmatically using Java/Android

picking all this poothon stuff generously stuffed to us by the ESP team, i come to the conclusion that this is, definitely, possible.

let me present a proof-of-concept build of Java (+ a native library "jSerialComm") Esp32 FlashTool, capable of basic ESP32 serial operations:



read MCU ID ...
by powerbroker
Tue Apr 22, 2025 4:20 am
Forum: Showcase
Topic: Unleashing ESP32 Enterprise potential
Replies: 1
Views: 8271

Unleashing ESP32 Enterprise potential

despite the fact ESP32 platform has quite significant shortcomings, one of which is definitely an extremely suxy ADC, it can be used in industrial devices and even in measuring instruments. let me show a prototype of an industrial voltmeter 0..10V with recalculation into absolute pressure:

IMG ...
by powerbroker
Tue Apr 22, 2025 12:27 am
Forum: ESP32 Arduino
Topic: Arduino program upload not possible (Failed to connect)
Replies: 4
Views: 2154

Re: Arduino program upload not possible (Failed to connect)

yesterday my friend "bricked" two WeMos Lite boards:

IMG_20250422_015401.jpg
even if MCUs was functioning, they became unable to be flashed with all the arduino stuff. he attached a 5V ADC to some pins including D0, which acts as startup-critical BOOT option. he thought he could destroy pin D0 by ...
by powerbroker
Wed Feb 19, 2025 7:12 am
Forum: General Discussion
Topic: Flash ESP32 programmatically using Java/Android
Replies: 9
Views: 15054

Re: Flash ESP32 programmatically using Java/Android


My esptool java port is now quite stable. Working with ESP32, ESP32S3, ESP32C3 and ESP8266.

Waiting for my other board to arrive to add them



being inspired with your code now experiencing some progress with running ESP32 Stub loader #2 from java program ;)

it truly reads flash chip with 0xD2 ...
by powerbroker
Wed Feb 19, 2025 7:03 am
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.2.0 Released
Replies: 5
Views: 8471

Re: Espressif-IDE v3.2.0 Released

my settings:
Eclipse clang settings.png
Eclipse clang settings.png (46.43 KiB) Viewed 5318 times
all paths are correct. please note:
  • it's windows, not linux.
  • even if "d:\idIoT.Users\KDV\.espressif" is NTFS symlink, clang handles these paths with no problems when invoked by cmd console command.
by powerbroker
Thu Feb 13, 2025 5:48 pm
Forum: ESP32 Arduino
Topic: Does anybody managed to establish HTTP with server at port 8080?
Replies: 2
Views: 2513

Re: Does anybody managed to establish HTTP with server at port 8080?

begin is a method which actively tries to connect to the destination port. It cannot be part of the object definition.

Code: Select all

    HTTPClient http;
    http.begin("192.168.102.23", 8080);
finally it compiles and goes on with:

Code: Select all

	http.begin("http://192.168.102.23:8080/app/data");
by powerbroker
Thu Feb 13, 2025 12:31 am
Forum: IDEs for ESP-IDF
Topic: False errors of version 5.4
Replies: 3
Views: 4426

Re: False errors of version 5.4

There is no happiness in life...
i was highly proud myself thinking i'm the only one able to see the epidemic of sloppiness that affects almost every area...

but it turns out that people know about it :oops: :lol:
by powerbroker
Thu Feb 13, 2025 12:10 am
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.2.0 Released
Replies: 5
Views: 8471

Re: Espressif-IDE v3.2.0 Released

However, posting something like this won’t help either of us. If you need a solution...


well, can we address the LSP editor fake errors highlighting?
the thing is when clang for simple (only 'main.c') ESP32 Eclipse project is invoked from cmd console, it says nothing but silently generates the ...
by powerbroker
Tue Feb 11, 2025 7:59 pm
Forum: ESP32 Arduino
Topic: Arduino program upload not possible (Failed to connect)
Replies: 4
Views: 2154

Re: Arduino program upload not possible (Failed to connect)


I bought a ESP32-S3-DevKitC-1-N32R8V board (https://hu.mouser.com/ProductDetail/356-ESS3DVKTC1N32R8V) and try to upload a simple program to it with Arduino ide but got the A fatal error occurred: Failed to connect to ESP32-S3: No serial data received.


have you finally managed with your ESP32 ...

Go to advanced search