Search found 12 matches

by emaayan
Mon Aug 28, 2023 4:23 pm
Forum: ESP-IDF
Topic: using USB as Ethernet via RNDIS?
Replies: 0
Views: 718

using USB as Ethernet via RNDIS?

hi.. i've been looking around, and i think it's possible just not sure.

essentially i'd like to use the usb port in esp-s3 as something that would get or have a static IP as though it was an ethernet port
the objective is to free the wi-fi portion to scan for channels.
is that possilbe?
by emaayan
Tue Aug 08, 2023 6:55 am
Forum: IDEs for ESP-IDF
Topic: Build & Flash without Launching monitor?
Replies: 2
Views: 6985

Build & Flash without Launching monitor?

is there a way to execute build and flash WITHOUT automatically launching the esp-idf serial monitor?
i'm using Microsot SerialMonitor which is better in many ways, but it gets blockd if the other serial monitor jumps
by emaayan
Tue Aug 01, 2023 6:09 am
Forum: General Discussion
Topic: promiscuous mode in ESP32 SDK
Replies: 1
Views: 6095

Re: promiscuous mode in ESP32 SDK

to my understanding and code i saw this is the strcut typedef struct { int16_t fctl; // frame control int16_t duration; // duration id uint8_t da[6]; // receiver address(addr1) uint8_t sa[6]; // sender address(addr2) uint8_t bssid[6]; // filtering address(addr3) int16_t seqctl; // sequence control u...
by emaayan
Sun Jul 30, 2023 6:55 pm
Forum: ESP-IDF
Topic: Getting a panic error during sniffing wifi
Replies: 0
Views: 5844

Getting a panic error during sniffing wifi

i'm trying to analyzer this error but i'n not entirely sure if the next TBTT incorrect is related, because the errors afterwards would show up sometimes without it. W (94339) wifi:Next TBTT incorrect! last beacon:73683312, offset:2807, next beacon:84128112, beacon interval:102400, dtim period:1, dti...
by emaayan
Sun Jul 23, 2023 7:08 pm
Forum: ESP-IDF
Topic: esp32 wifi shuts down at random
Replies: 0
Views: 1790

esp32 wifi shuts down at random

i have an esp32 at softAP mode, which has a tcp server streaming data to a client. i've noticed that at certain channels sometime after re-connetion the esp wifi just shutdown for no reason there's nothing in the logs, but esp32 keeps working, there's no crash. ping can alos vary dramatically at cer...
by emaayan
Fri Jul 21, 2023 3:43 pm
Forum: ESP-IDF
Topic: getting esp-idf to work on ttgo?
Replies: 0
Views: 1655

getting esp-idf to work on ttgo?

hi.. has anyone managed to get this working ?
https://projectitis.com/getting-ttgo-es ... y-to-work/
i went through the steps, but it went through a boot loop after flashing
by emaayan
Wed Jul 19, 2023 6:25 am
Forum: ESP-IDF
Topic: is the callback function in esp_wifi_set_promiscuous_rx_cb thread safe?
Replies: 0
Views: 756

is the callback function in esp_wifi_set_promiscuous_rx_cb thread safe?

let's say that in the callback function i use with esp_wifi_set_promiscuous_rx_cb i'd like to write to a tcp socket, would i need to use some sort of locks on the handler to prevent it from being called concurrently? void wifi_sniffer_packet_handler(void *buff, wifi_promiscuous_pkt_type_t type) { wi...
by emaayan
Wed Jul 19, 2023 6:21 am
Forum: IDEs for ESP-IDF
Topic: not seeing errors on editor
Replies: 2
Views: 4610

Re: not seeing errors on editor

hi.. so this IS a settings issues, some of it has been discussed here https://github.com/espressif/vscode-esp-idf-extension/issues/672 and here https://github.com/espressif/vscode-esp-idf-extension/issues/748 there are few problems with new project created with esp-idf, one is that it uses always us...
by emaayan
Sun Jun 18, 2023 7:55 pm
Forum: IDEs for ESP-IDF
Topic: not seeing errors on editor
Replies: 2
Views: 4610

not seeing errors on editor

using vs code extension 1.6.3 with idf 5.0.1
i have one project which doesn't show errors
no_errors.png
no_errors.png (210.53 KiB) Viewed 4610 times
and another project which shows them , i've compared both settings and they are identical, not sure what's going on here
errors.png
errors.png (198.74 KiB) Viewed 4610 times
by emaayan
Wed Jun 14, 2023 8:42 am
Forum: ESP-IDF
Topic: full example on how to use jtag logging?
Replies: 1
Views: 722

Re: full example on how to use jtag logging?

i'm allready using this, but what i really wanna know is how can i simply send log entries to the debug console
https://github.com/espressif/esp-idf/bl ... e_basic.py