Search found 17 matches

by jhinkle
Sat Nov 17, 2018 11:28 am
Forum: ESP-IDF
Topic: [SOLVED] Severe Limitation to APSTA Mode
Replies: 7
Views: 11865

Re: Severe Limitation to APSTA Mode

Just a few thoughts. I've done a lot of work recently on the AP interface - here is what I found and it may help shed some light on your issue. Check your event callback and see if you are issuing a esp_wifi_connect() in response to an event. If so, you may need to rethink exactly how you do that. L...
by jhinkle
Sat Nov 17, 2018 10:34 am
Forum: ESP-IDF
Topic: WiFI events in EMC radiations test
Replies: 4
Views: 5235

Re: WiFI events in EMC radiations test

Just me 2 cents on your question. Are you in AP only mode or APSTA mode? The events you are getting is from the AP wifi interface. You are seeing clients connect and disconnect to your access point. You can not lose your access point. The event you are asking about is a STA event. Those events are a...
by jhinkle
Thu Nov 15, 2018 3:11 pm
Forum: ESP-IDF
Topic: Requirements for esp_wifi_internal_tx() - new Stack
Replies: 0
Views: 2146

Requirements for esp_wifi_internal_tx() - new Stack

I removed lwip as the stack over in ESP8266 RTOS V3 IDF and ported in a different stack. The function that bridged the stack and the internal wifi transmit required an additional 36 bytes preceding the data (used for wifi headers) and need to be allocated from the DRAM heap (IRAM would cause a crash...
by jhinkle
Wed Nov 14, 2018 11:18 pm
Forum: ESP-IDF
Topic: esp_wifi_internal_tx() required memory type
Replies: 0
Views: 1863

esp_wifi_internal_tx() required memory type

If the buffer passed to esp_wifi_internal_tx() comes from a standard malloc() call, will the buffer be proper aligned and of the correct "CAP" type for the function esp_wifi_internal_tx()?

Thanks
by jhinkle
Thu Aug 30, 2018 2:27 am
Forum: General Discussion
Topic: Windows Installation missing tool chain
Replies: 3
Views: 3965

Re: Windows Installation missing tool chain

Thanks - found them.

I was looking at some installation guides that suggested they were located elsewhere -- I could not be found.
by jhinkle
Thu Aug 30, 2018 12:26 am
Forum: General Discussion
Topic: Windows Installation missing tool chain
Replies: 3
Views: 3965

Windows Installation missing tool chain

I followed the Windows Install process where it calls to download and run
esp32_win32_msys2_environment_and_toolchain-20180110.zip

After executing I have a complete msys2 folder but the toolchain was not included.

Nowhere can I find a way to acquire the toolchain to install it.

Help.

Thanks.

Joe
by jhinkle
Wed Aug 29, 2018 4:13 pm
Forum: General Discussion
Topic: Update Via UART
Replies: 5
Views: 9127

Re: Update Via UART

Look at esptool.py and see how they program it using the uart. Perform the same protocol via a uart in your external CPU. Besides the uart, you will need some I/O to control reset and I/O manipulation to put the ESP into programming mode. There are also a few C based ESP tools like esptool that are ...