Search found 24 matches

by ESP_Vikram
Thu Mar 19, 2020 10:02 am
Forum: ESP-WHO
Topic: Tensorflow support?
Replies: 4
Views: 54574

Re: Tensorflow support?

By the way, you can now build and run TFLite micro examples on ESP32.

https://github.com/tensorflow/tensorflo ... y-to-esp32
by ESP_Vikram
Wed Mar 18, 2020 11:56 am
Forum: ESP-ADF
Topic: ESP32 ADF as server to stream audio to browser?
Replies: 1
Views: 9317

Re: ESP32 ADF as server to stream audio to browser?

As you already have figured out, ADF's http_stream is client only, For your functionality you will need to create your http_server task. Read opus song and keep writing it to raw stream.... read data from raw stream and provide it to http_server task. sdcard--> raw stream --> http_server. Make sure ...
by ESP_Vikram
Wed Mar 18, 2020 11:51 am
Forum: ESP-ADF
Topic: ADF without codec
Replies: 2
Views: 9327

Re: ADF without codec

MP3 decode without codec is ok (tested) @colinives, what exactly do you mean by MP3 decode without codec? If you want to decode an mp3 audio, you will need mp3_decoder, and related code will be pulled in. I have managed this part without use of the codec but I also want to capture new files receive...
by ESP_Vikram
Thu Feb 13, 2020 3:59 pm
Forum: ESP-IDF
Topic: ESP32 IDF smtp (Simple Mail Transfer Protocol) support
Replies: 22
Views: 23377

Re: ESP32 IDF smtp (Simple Mail Transfer Protocol) support

Thanks Lee for the info.
Will fix the issues.

Hope you were successful in running and refactoring the code with C++ as well.

Thanks,
Vikram
by ESP_Vikram
Thu Feb 13, 2020 3:54 pm
Forum: ESP-IDF
Topic: ESP32-PICO-D4 external SPRAM
Replies: 3
Views: 4720

Re: ESP32-PICO-D4 external SPRAM

Maybe not useful for you... But, I had similar problem few months back. Turns out I was using pin 9 for CLK. Following change worked for me... If you go to $IDF_PATH/components/esp32/spiram_psram.c There is a define: #define PICO_PSRAM_CLK_IO 6 I changed this to #define PICO_PSRAM_CLK_IO 9 ...and it...
by ESP_Vikram
Sun Feb 09, 2020 5:10 pm
Forum: ESP-IDF
Topic: ESP32 IDF smtp (Simple Mail Transfer Protocol) support
Replies: 22
Views: 23377

Re: ESP32 IDF smtp (Simple Mail Transfer Protocol) support

@leenowell Thanks for your reports. For gmail server and gmail's web client as well as Samsung Email client work fine for me. I need some info to reproduce issues at my end to add and check if fixes work. 1. What's the email server? 2. Which email client do you use to receive email? Thanks again for...
by ESP_Vikram
Sat Feb 08, 2020 12:29 pm
Forum: ESP-IDF
Topic: ESP32 IDF smtp (Simple Mail Transfer Protocol) support
Replies: 22
Views: 23377

Re: ESP32 IDF smtp (Simple Mail Transfer Protocol) support

The example is added on master branch.
You may create a patch and apply on `release/v4.0` branch if you want and it should work fine with that branch as well.
...now getting errors about `esp_netif_init` not being declared.
Is it possible that you missed `submodule update` at some point?
by ESP_Vikram
Sat Feb 08, 2020 11:16 am
Forum: ESP-IDF
Topic: ESP32 IDF smtp (Simple Mail Transfer Protocol) support
Replies: 22
Views: 23377

Re: ESP32 IDF smtp (Simple Mail Transfer Protocol) support

@leenowell replied your DM. E (6131) smtp_example: mbedtls_ssl_write failed with error -0x50 E (6141) smtp_example: mbedtls_ssl_write failed with error -0x4e E (6141) smtp_example: mbedtls_ssl_write failed with error -0x4e I had changed the ESP_LOGE to output (-ret) from ret to try and map to the co...
by ESP_Vikram
Wed Feb 05, 2020 11:53 am
Forum: ESP-IDF
Topic: ESP32 IDF smtp (Simple Mail Transfer Protocol) support
Replies: 22
Views: 23377

Re: ESP32 IDF smtp (Simple Mail Transfer Protocol) support

1. How do you specify which file to upload and how does it get to the ESP to then attach to the email? Are you able to send the file as it is from the example? I have embedded this file in the code in CMakelist.txt and component.mk under main/ directory. and used it in example file. You can grasp t...
by ESP_Vikram
Tue Feb 04, 2020 12:07 pm
Forum: ESP-IDF
Topic: ESP32 IDF smtp (Simple Mail Transfer Protocol) support
Replies: 22
Views: 23377

Re: ESP32 IDF smtp (Simple Mail Transfer Protocol) support

@leenowell thanks for letting know you figured out port number issue. 1. As far as, `image name` sent in email, it should not matter. 2. For setup of WiFi info, you need to set this info under `Example Connection Configuration` via menuconfig as suggested in README.md. I think you already have figur...