Search found 25 matches

by pratik2440
Thu Jul 29, 2021 6:25 am
Forum: General Discussion
Topic: Sniff 433Mhz Traffic using ESP32 RMT Peripheral
Replies: 1
Views: 3997

Re: Sniff 433Mhz Traffic using ESP32 RMT Peripheral

It really depends on what sniffing means in your case. In the 433 MHz band, the traffic you want to sniff must be using some modulation mechanism that you want to target. Suppose the traffic is just OOK type (RC cars, home appliance remote control, etc), then you will need an OOK receiver (433 MHz),...
by pratik2440
Sat Jul 10, 2021 6:58 am
Forum: General Discussion
Topic: ESP32 with USB Communication.
Replies: 1
Views: 2477

Re: ESP32 with USB Communication.

The question is not very clear. Do you want to connect an 8GB USB flash drive to the ESP32 to read its contents?
Or do you have 8GB flash/SD connected to the ESP32 and need to access that via USB (i.e. make ESP32 act as a USB mass storage device)?
by pratik2440
Sat Jul 10, 2021 6:56 am
Forum: ESP-IDF
Topic: How to update NVS partitions or bootloader after UART download mode is disabled
Replies: 5
Views: 5031

Re: How to update NVS partitions or bootloader after UART download mode is disabled

Ohh okay, I thought you did not have OTA on current firmware. The link posted by WiFive above is a good place to start then. You can try overwriting the bootloader and partition areas on another board where you have UART download enabled. Once you get that working, you can do the same with the board...
by pratik2440
Fri Jul 09, 2021 10:42 am
Forum: ESP-IDF
Topic: How to update NVS partitions or bootloader after UART download mode is disabled
Replies: 5
Views: 5031

Re: How to update NVS partitions or bootloader after UART download mode is disabled

Isn't that an eFuse setting? Last I checked the eFuse was OTP memory, so if you set something in there that you did not want to, then you bricked the board.
by pratik2440
Fri Jul 09, 2021 10:33 am
Forum: General Discussion
Topic: Is it possible to enter serial bootloader from application?
Replies: 1
Views: 2466

Re: Is it possible to enter serial bootloader from application?

I cannot answer this without having information on your hardware (i.e. what is accessible physically and what is not). If your board is in a product that the end user is using and can only access a USB connector to re-flash the board, that can be tough. Do you have access to the EN line via a reset ...
by pratik2440
Fri Jul 09, 2021 10:25 am
Forum: General Discussion
Topic: Using AT commands to connect to firebase
Replies: 1
Views: 2524

Re: Using AT commands to connect to firebase

You can either modify the AT command firmware to add custom AT commands that extremely simplify what you want to do by handling all the APIs directly, or you need to issue AT commands and handle everything at a lower level (like setting up a connection, forming and parsing all the data uploaded and ...
by pratik2440
Thu Jul 08, 2021 12:24 pm
Forum: ESP-IDF
Topic: RS485 Uart issue
Replies: 2
Views: 2512

Re: RS485 Uart issue

I have faced something like this before, are you using an RS485 transceiver with direction control pin?
by pratik2440
Thu Jul 08, 2021 12:21 pm
Forum: Hardware
Topic: ESP32-WROOM-32D rebooting continuously.
Replies: 1
Views: 2221

Re: ESP32-WROOM-32D rebooting continuously.

Looks like incorrect flash setting to me. I have blogged about this error, it is kinda common:
https://pcbartists.com/firmware/esp32-f ... op-solved/

Are you using a WROOM module with more than 4MB flash?
by pratik2440
Wed Jul 07, 2021 7:02 am
Forum: ESP32 Arduino
Topic: How to export ESP32CAM footage in Raw?
Replies: 1
Views: 3082

Re: How to export ESP32CAM footage in Raw?

Are you talking about the "footage" as in video, or do you just want to capture raw photos like a DSLR does? RAW format photos are basically just the uncompressed sensor matrix data + associated settings used to capture that data. So if you are running the OVxxxx sensor in non-JPEG mode, you are bas...
by pratik2440
Wed Jul 07, 2021 6:49 am
Forum: Hardware
Topic: Can the ESP32 interupt and read port within 1us?
Replies: 6
Views: 6090

Re: Can the ESP32 interupt and read port within 1us?

In my experience this is not realistic. The response time (time from interrupt source changing to user ISR execution) is around 2 us. That time is not exactly the same either, it seems to change every time with some variance. For your application, it would be best to hook up an STM32 or something (c...