Search found 1365 matches

by Ritesh
Wed Jun 14, 2017 12:49 am
Forum: ESP-IDF
Topic: Modify data of particular location of flash memory using spiffs.?
Replies: 6
Views: 9097

Re: Modify data of particular location of flash memory using spiffs.?

I'm not sure if I understand what is the problem. Look at: https://www.tutorialspoint.com/c_standard_library/c_function_fopen.htm "w" mode creates an empty file for writing. If a file with the same name already exists, its content is erased and the file is considered as a new empty file. You can al...
by Ritesh
Tue Jun 13, 2017 5:00 pm
Forum: ESP-IDF
Topic: Modify data of particular location of flash memory using spiffs.?
Replies: 6
Views: 9097

Re: Modify data of particular location of flash memory using spiffs.?

Hi Loboris, We have tested SPIFFS code which is provided in your TFT Library Repository and found one issue. The issue is like we have added some files externally using mkspiffs binary. After that we have opened one file among them in "w" mode only at that time it seems like another same name file h...
by Ritesh
Tue Jun 13, 2017 8:55 am
Forum: ESP-IDF
Topic: Storing file in ESP32 file system
Replies: 3
Views: 9919

Re: Storing file in ESP32 file system

Hi, I have a requirement to do in ESP32, I want to split 4MB of flash into 2MB+2MB, for code section and file system. In file system, I want to download files from cloud(internet) and store it. And need to read/write during esp32 running and able send the file to internet when ever required. Guide ...
by Ritesh
Tue Jun 13, 2017 4:06 am
Forum: ESP-IDF
Topic: Need sample code for ILI9488 LCD on SPI Interface
Replies: 82
Views: 117396

Re: Need sample code for ILI9488 LCD on SPI Interface

loboris wrote:Probably before the end of the month...
Ok. Thanks for update.
by Ritesh
Mon Jun 12, 2017 4:38 pm
Forum: ESP-IDF
Topic: Need sample code for ILI9488 LCD on SPI Interface
Replies: 82
Views: 117396

Re: Need sample code for ILI9488 LCD on SPI Interface

Hi Loboris,

Will you please let me know your schedule or any tantative schedule to add support for PNG image format in to your existing Repository?

Let me know if you have plan to add it soon.
by Ritesh
Mon Jun 12, 2017 4:08 am
Forum: ESP-IDF
Topic: Dual core
Replies: 18
Views: 28103

Re: Dual core

thanks! if i not use this functions, the code is usually run in core 0? core 1? or in two in same time? any datasheet for this informations? Hi, If you have looked into make menuconfig configurations for your application then there is one options defined into configuration like "[*] Run FreeRTOS on...
by Ritesh
Mon Jun 12, 2017 12:27 am
Forum: ESP-IDF
Topic: Dual core
Replies: 18
Views: 28103

Re: Dual core

As per my understanding, By default if you will directly use xTaskCreate API then it will create task for CPU1 as CPU0 is dedicated for WiFi and Bluetooth by default. No it will create task with no affinity meaning it will run on either core, whichever is available. Ok. But WiFi and Bluetooth Core ...
by Ritesh
Sun Jun 11, 2017 4:57 pm
Forum: ESP-IDF
Topic: Dual core
Replies: 18
Views: 28103

Re: Dual core

So, In short, xTaskCreatePinnedToCore is useful function for you with last argument as to create task for CPU0 or CPU1 based on your task, it's handler, size and it's priority. As per my understanding, By default if you will directly use xTaskCreate API then it will create task for CPU1 as CPU0 is d...
by Ritesh
Sun Jun 11, 2017 4:49 pm
Forum: ESP-IDF
Topic: Need sample code for ILI9488 LCD on SPI Interface
Replies: 82
Views: 117396

Re: Need sample code for ILI9488 LCD on SPI Interface

@Ritesh Yes, I'm planning to include PNG support. At the moment I'm looking for the best way to implement transparency. As I'm not using the frame buffer ( it will be included later for ESP32 with 4MB of PSRAM ) the data has to be read from display RAM, combined with image data and written back to ...
by Ritesh
Sat Jun 10, 2017 12:17 pm
Forum: ESP-IDF
Topic: Need sample code for ILI9488 LCD on SPI Interface
Replies: 82
Views: 117396

Re: Need sample code for ILI9488 LCD on SPI Interface

Hi Loboris, I have one more quick question for you that is there any plan to add support for PNG file format in addition to ".jpg" and ".bmp" file format your latest TFT Repository? We have one requirement in which we want to use transparent image and that image format is in .png format. So, Please ...