Search found 6 matches

by shadowkane
Sun Mar 03, 2024 3:28 pm
Forum: ESP-IDF
Topic: How to run Classic Bluetooth SPP with SSP and Passkey entry?
Replies: 0
Views: 2481

How to run Classic Bluetooth SPP with SSP and Passkey entry?

Hi I'm trying to create a classic Bluetooth firmware for ESP32 that uses SPP (serial port profile) and SSP (secure simple pairing). and i'm following this example from espressif github "https://github.com/espressif/esp-idf/tree/fdb7a43752633560c73ee079d512c0c13808456f/examples/bluetooth/bluedroid/cl...
by shadowkane
Fri Feb 23, 2024 5:54 pm
Forum: ESP32 Arduino
Topic: Stop ADC continuous in ISR function
Replies: 4
Views: 1293

Re: Stop ADC continuous in ISR function

Thank you :)
by shadowkane
Fri Feb 23, 2024 1:39 pm
Forum: ESP32 Arduino
Topic: Stop ADC continuous in ISR function
Replies: 4
Views: 1293

Re: Stop ADC continuous in ISR function

Hi @lbernstone and thank you for your answer. your suggestion is good but the thing is, i'm not using any rtos, also for this project i just want a sequential programming, no threads or semaphores (ofc, i can replace semaphore by using a flag) but that won't prevent the ADC continuous from interrupt...
by shadowkane
Wed Feb 21, 2024 5:40 pm
Forum: ESP32 Arduino
Topic: Stop ADC continuous in ISR function
Replies: 4
Views: 1293

Stop ADC continuous in ISR function

Hi, i'm looking for a way to stop the ADC continuous mode as soon as the conversion ends, in my situation is, when the ADC_complete() ISR function is called. this is my code: // functions void ARDUINO_ISR_ATTR vAdc_continous_complete_isr_fn(){ // stop ADC continous until the next cycle analogContinu...
by shadowkane
Thu May 09, 2019 10:52 pm
Forum: ESP-IDF
Topic: how to get the ip address in the "SYSTEM_EVENT_AP_STAIPASSIGNED" event?
Replies: 0
Views: 1948

how to get the ip address in the "SYSTEM_EVENT_AP_STAIPASSIGNED" event?

Hello, in the ESP32 documentation the event id "SYSTEM_EVENT_AP_STAIPASSIGNED" has no data struction. but at the moment the esp32(running as softAP) assigns a new IP to the connected station it shows up in the serial monitor, so i guess it's possible to get that IP unless it's just an log(print) out...
by shadowkane
Tue May 07, 2019 2:14 pm
Forum: ESP-IDF
Topic: the meaning for OS API
Replies: 0
Views: 1656

the meaning for OS API

Hello, I have something i didn't understand, to be more specific i can't get the meaning of "The main task calls OS API to create the application task.", what is this 'OS API'. i'm reading the documentation of ESP32 for the wifi section and in the general scenario of the wifi station in the init pha...