Search found 21 matches

by kearins
Mon Sep 11, 2017 5:43 am
Forum: General Discussion
Topic: espefuse.py could not write efuse in Windows msys2
Replies: 6
Views: 10573

Re: espefuse.py could not write efuse in Windows msys2

temp4eb wrote:Many Thanx!And could you please share your updated code?Thanx!
I did not make any changes in source code, I've just updated my old version of esptool with new one.
by kearins
Sat Sep 09, 2017 7:12 pm
Forum: Report Bugs
Topic: SD card 0x107 errors after Aug22 commit 0532d37
Replies: 4
Views: 8105

Re: SD card 0x107 errors after Aug22 commit 0532d37

I've tried commit 050ae50 (07 sep 2017), sd card works in 4-line mode with fat filesystem at high speed: I (178) MAIN: Initializing SD card I (178) MAIN: Using SDMMC peripheral I (3185) MAIN: host.slot=1 host.max_freq_khz=50000 I (3185) MAIN: Mounting FAT... I (3247) MAIN: esp_vfs_fat_sdmmc_mount() ...
by kearins
Sat Sep 09, 2017 1:29 am
Forum: ESP-IDF
Topic: And again someone who has problems with esp32 and sd cards
Replies: 23
Views: 50613

Re: And again someone who has problems with esp32 and sd cards

At last, after days of experiments, hours of disappointments, I did it! I've got 3Mb/s write speed in fat file system with 4-line mode: I (178) MAIN: Initializing SD card I (178) MAIN: Using SDMMC peripheral I (3185) MAIN: host.slot=1 host.max_freq_khz=50000 I (3185) MAIN: Mounting FAT... I (3247) M...
by kearins
Fri Sep 08, 2017 1:11 am
Forum: General Discussion
Topic: espefuse.py could not write efuse in Windows msys2
Replies: 6
Views: 10573

Re: espefuse.py could not write efuse in Windows msys2

I had the same problem: could not complete 'espefuse.py set_flash_voltage xxx' on windows msys32. Process hung on 'Connecting........__ '. The esp-idf installation was made 9-aug-2017. I updated esptool from https://github.com/espressif/esptool today (8-sent-2017) and now the command is executed per...
by kearins
Thu Sep 07, 2017 3:54 am
Forum: ESP-IDF
Topic: And again someone who has problems with esp32 and sd cards
Replies: 23
Views: 50613

Re: And again someone who has problems with esp32 and sd cards

Friends, can anybody say me about read/write speed of SD cards in practise? I've connected a SD card via SPI (esp-idf/examples/storage/sd_card) and have tried to write 1Mb, it took about 10 seconds per megabyte. Is it normal? I used microSDHC 32Gb and microSDHC 2Gb, host.max_freq_khz = 32000. SD Car...
by kearins
Mon Aug 21, 2017 8:23 pm
Forum: ESP-IDF
Topic: Need API support to provide micro seconds delay
Replies: 12
Views: 21542

Re: Need API support to provide micro seconds delay

Ritesh wrote: Yes. We have ported that stuff using RMT Interface and it works fine without any issue.
Hi, Ritech, could I put an eye on your ported version of onewire.c?
by kearins
Fri Aug 11, 2017 1:12 am
Forum: Showcase
Topic: ESP32 TFT display library
Replies: 74
Views: 486075

Re: ESP32 TFT display library

Why did you commented out call to gpio_set_level() in spi_master_lobo.c? //gpio_set_level(handle->cfg.spics_ext_io_num, 0); GPIO.out_w1ts = (1 << handle->cfg.spics_ext_io_num); In this case we can't use GPIO 32,33 for PIN_NUM_DC. Maybe you have a reason to do so? I uncommented call to gpio_set_level...
by kearins
Tue Aug 08, 2017 2:09 pm
Forum: Showcase
Topic: ESP32 TFT display library
Replies: 74
Views: 486075

Re: ESP32 TFT display library

I found why 'make makefs' does not work. 1) These files are absent: components\mkspiffs\component.mk components\spiffs_image\component.mk 2) Lines in components\spiffs_image\Makefile.projbuild .PHONY: flashfs .PHONY: makefs .PHONY: copyfs should be changed to one line .PHONY: flashfs makefs copyfs 3...
by kearins
Mon Aug 07, 2017 11:22 am
Forum: Showcase
Topic: ESP32 TFT display library
Replies: 74
Views: 486075

Re: ESP32 TFT display library

I have successfuly tested TFT 1.8" 128x160 ST7735S (black label) with following settings: #define TFT_INVERT_ROTATION1 1 #define TFT_RGB_BGR 0x00 #define DEFAULT_TFT_DISPLAY_WIDTH 160 #define DEFAULT_TFT_DISPLAY_HEIGHT 128 #define DEFAULT_SPI_CLOCK 32000000 #define DEFAULT_DISP_TYPE DISP_TYPE_ILI948...
by kearins
Mon Jul 24, 2017 9:39 am
Forum: ESP-IDF
Topic: A2DP Sink: how to get bit depth and sample rate
Replies: 5
Views: 11595

Re: A2DP Sink: how to get bit depth and sample rate

I have used 44100Hz / 16 bit as default, but I saw that 16000 - 48000Hz are possible. Is there a way to be notified what the SBC decoder actually found? To define sample rate I do check in callback for A2DP sink: in case of ESP_A2D_AUDIO_CFG_EVT I do: a2d = (esp_a2d_cb_param_t *)(param); uint8_t sb...