Search found 611 matches

by mikemoy
Sun Dec 03, 2023 12:24 am
Forum: General Discussion
Topic: esp-idf 5.1 crazy amount of log output... way different than before
Replies: 2
Views: 6275

Re: esp-idf 5.1 crazy amount of log output... way different than before

You can do something like this to minimize it. use ESP_LOG_NONE to disable all logging. Then turn on what you do want to log.


#define MAIN_TAG "Main"

void app_main(void)
{
esp_log_level_set("*", ESP_LOG_NONE);
esp_log_level_set(MAIN_TAG, ESP_LOG_VERBOSE);
by mikemoy
Thu Nov 30, 2023 6:17 pm
Forum: General Discussion
Topic: Espressif DSP Library help
Replies: 14
Views: 10161

Espressif DSP Library help

Our native DSP guy got canned last week. So I got stuck with finishing up his project. YEA!!! Don't know jack about DSP, learning as fast as I can. I need to sample a audio source from 200 - 20k. So far I am able to pull in 4096 bytes from my 12bit external a/d converter with a sample rate of 40960....
by mikemoy
Mon Nov 20, 2023 10:55 pm
Forum: General Discussion
Topic: ESP32 DMA for GPIO operations
Replies: 7
Views: 5876

Re: ESP32 DMA for GPIO operations

I ask AI to do the same, but I dont see anything wrong with the includes. #include <stdio.h> #include "esp_system.h" #include "driver/gpio.h" #include "esp_log.h" #include "esp_err.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "esp_timer.h" #define TAG "GPIO_DMA" // Configura...
by mikemoy
Thu Nov 02, 2023 5:02 am
Forum: ESP-IDF
Topic: There was an issue running gpio example on the ESP32S3
Replies: 2
Views: 781

Re: There was an issue running gpio example on the ESP32S3

gpio_set_level is expecting a 1 or 0.
by mikemoy
Tue Oct 24, 2023 11:31 am
Forum: Hardware
Topic: ESP32 WROOM 32D
Replies: 1
Views: 926

Re: ESP32 WROOM 32D

google
by mikemoy
Sat Oct 14, 2023 7:32 am
Forum: General Discussion
Topic: 3-Wire-SPI on ESP32-WROOM-32UE
Replies: 3
Views: 1285

Re: 3-Wire-SPI on ESP32-WROOM-32UE

Just dont use the 4'th wire
by mikemoy
Thu Jul 13, 2023 6:14 pm
Forum: ESP-IDF
Topic: Missing ESP32-Specific menuconfig
Replies: 1
Views: 812

Re: Missing ESP32-Specific menuconfig

Build the project first, then try again
by mikemoy
Sat May 06, 2023 4:46 pm
Forum: Showcase
Topic: Standalone EspCrashDecoder for Arduino v2.x IDE
Replies: 1
Views: 6680

Re: Standalone EspCrashDecoder for Arduino v2.x IDE

That's cool! Thanks for sharing!