Search found 23 matches

by s.allasia
Thu Mar 28, 2024 7:52 am
Forum: ESP-IDF
Topic: BLE 5.0 mesh and LONG RANGE
Replies: 0
Views: 155

BLE 5.0 mesh and LONG RANGE

Hi,
I have a ESP32-C3-MINI module.
Can I set and use BLE 5.0 mesh and LONG RANGE option together?

Thanks in advance!
by s.allasia
Tue Oct 24, 2023 3:28 pm
Forum: ESP-IDF
Topic: Verify on "Flash download tools"
Replies: 0
Views: 300

Verify on "Flash download tools"

Hi,
When I program ESP32 using "Flash Download Tools", is verification performed?
If no, how can I check it?

Thanks in advance
by s.allasia
Fri Sep 21, 2018 3:38 pm
Forum: General Discussion
Topic: Task watchdog got triggered with WiFi and Bluetooth in the same time
Replies: 12
Views: 18467

Re: Task watchdog got triggered with WiFi and Bluetooth in the same time

Hi fly135,
If a task watchdog triggers it's very probably that calls to functions don't work, "Panic handler behaviour" works instead.
by s.allasia
Fri Sep 21, 2018 3:28 pm
Forum: General Discussion
Topic: Task watchdog got triggered with WiFi and Bluetooth in the same time
Replies: 12
Views: 18467

Re: Task watchdog got triggered with WiFi and Bluetooth in the same time

Hi davdav,
If you enable panic when WDT happen via menuconfig, the behaviour is decided by "make menuconfig --> Component config --> ESP32-specific --> Panic handler behaviour".

If you want disable watchdog, you must disable "Initialize Task Watchdog Timer on startup" (not recommended).
by s.allasia
Fri Sep 21, 2018 1:25 pm
Forum: General Discussion
Topic: Task watchdog got triggered with WiFi and Bluetooth in the same time
Replies: 12
Views: 18467

Re: Task watchdog got triggered with WiFi and Bluetooth in the same time

Hi davdav,
Yes, you can.
You must enable panic when WDT happen via menuconfig:
make menuconfig --> Component config --> ESP32-specific --> Invoke panic handler on Task Watchdog timeout

Bye
by s.allasia
Fri Sep 21, 2018 5:45 am
Forum: General Discussion
Topic: Task watchdog got triggered with WiFi and Bluetooth in the same time
Replies: 12
Views: 18467

Re: Task watchdog got triggered with WiFi and Bluetooth in the same time

Hi vonnieda,
I checked: yes It's the same thing!
Do you have any answer?
by s.allasia
Thu Sep 20, 2018 7:23 am
Forum: General Discussion
Topic: Task watchdog got triggered with WiFi and Bluetooth in the same time
Replies: 12
Views: 18467

Task watchdog got triggered with WiFi and Bluetooth in the same time

Hi, I'm working on IoT project based on ESP32-WROOM32. The system must work simultaneously with WiFi and Bluetooth. Now the device execute this sequence: 1) init NVM 2) init BLE in client mode 3) start scan BLE 4) init WiFi 5) connect to AP of my WiFi router 6) get timestamp 7) connect to IoT servic...
by s.allasia
Wed Aug 29, 2018 5:45 am
Forum: General Discussion
Topic: [Answered] Digital Signature with RSASSA-PKCS1-v1_5 using SHA-256
Replies: 2
Views: 6786

Re: Digital Signature with RSASSA-PKCS1-v1_5 using SHA-256

Hi,
Digital Signature with RSASSA-PKCS1-v1_5 using SHA-256 woks!
Thank you Kolban.
by s.allasia
Thu Aug 23, 2018 12:36 pm
Forum: ESP-IDF
Topic: [Answered]: JWT component for ESP-IDF (JSON Web Tokens)
Replies: 10
Views: 25481

Re: JWT component for ESP-IDF (JSON Web Tokens)

Hi kolban, I'm interisting to use GCLOUD (IOT core): I'm trying to sign my mqtt password with JSON Web Token (JWT) but actually I can't generate the digital signature with RSASSA-PKCS1-v1_5 using SHA-256. I followed istructions on https://tools.ietf.org/html/rfc7518#section-3.3 , but the final signa...
by s.allasia
Thu Aug 23, 2018 8:11 am
Forum: General Discussion
Topic: [Answered] Digital Signature with RSASSA-PKCS1-v1_5 using SHA-256
Replies: 2
Views: 6786

[Answered] Digital Signature with RSASSA-PKCS1-v1_5 using SHA-256

Hi,
Is there a library that can do a digital signature with RSASSA-PKCS1-v1_5 using SHA-256?
Thanks!