Search found 8 matches

by Ali_Makhlouf
Wed Jun 01, 2022 8:00 am
Forum: ESP-IDF
Topic: Adding modules in folders other than components folder
Replies: 2
Views: 1542

Adding modules in folders other than components folder

Hello I am trying to make a project with different sw layers (app(eg. main.c), components(eg. lvgl, ssd1963..etc) , mcal(eg. I2C, UART..etc), driver(mcu vendor I2C)). each layers has its own modules(.h .c). But the main.c is programmed by the esp-idf to only see the components folder and other compo...
by Ali_Makhlouf
Wed Mar 30, 2022 1:02 pm
Forum: ESP-IDF
Topic: functions from other files are undefined to main.c
Replies: 1
Views: 1578

Re: functions from other files are undefined to main.c

I found the problem. it was the CMakeList.txt It should contain all the .h/.c files that should be built within the main.c the Cmakelists.txt was modified to the following: # Edit following two lines to set component requirements (see docs) set(COMPONENT_REQUIRES ) set(COMPONENT_PRIV_REQUIRES ) set(...
by Ali_Makhlouf
Wed Mar 30, 2022 12:14 pm
Forum: ESP-IDF
Topic: functions from other files are undefined to main.c
Replies: 1
Views: 1578

functions from other files are undefined to main.c

I am trying to make LCD project based on i2s driver then I faced a problem that the functions are undefined. Then I made a simple main.c file and a another .h/.c files that contain a sum functions and still tells me the function is undefined. main.c code: #include <stdio.h> #include "freertos/FreeRT...
by Ali_Makhlouf
Mon Mar 28, 2022 5:11 pm
Forum: Hardware
Topic: ESP32-S3 RGB LCD maximum throughput
Replies: 34
Views: 36513

Re: ESP32-S3 RGB LCD maximum throughput

I am trying to use this solution as well as and I am facing problems due to its lack of information. So thank you for your information. Please if you can answer some questions considering this solution: 1- What is the FPS achieved while changing the entire screen image? 2- do you have to keep flushi...
by Ali_Makhlouf
Wed Mar 02, 2022 8:21 am
Forum: Hardware
Topic: Amount of PSRAM required for 480x272 16bit-RGB LCD interface using ESP32-S3.
Replies: 1
Views: 1527

Amount of PSRAM required for 480x272 16bit-RGB LCD interface using ESP32-S3.

I am making a project of LCD interface using 480x272, 16bit-RGB LCD + LVGL library + RGB peripheral inside ESP32-S3 from my calculations: 1- 480x272= 130.56 KB --> x2 (because of 16bit-RGB) = 261.120 KB So from this calculations I can choose a 2MB PSRAM ESP32-S3. Is this calculations correct or do I...
by Ali_Makhlouf
Sun Jan 23, 2022 12:56 pm
Forum: General Discussion
Topic: esp32 support of mass production
Replies: 0
Views: 2316

esp32 support of mass production

which are produced in mass production for the following esp32 versions:
1- esp32 WROOM / WROVER
2- esp32-s2 WROOM / WROVER
3- ESP32-s3 WROOM
4- ESP32-c3 WROOM

Thanks in advance
by Ali_Makhlouf
Tue Dec 28, 2021 2:20 pm
Forum: ESP-IDF
Topic: ESP32 I2S behaviours on different FIFO modes
Replies: 0
Views: 3039

ESP32 I2S behaviours on different FIFO modes

I am working on an LCD project interfacing ESP32 Wroom with ER-TFTM043-7S (800x480 - SSD1963) buydisplay LCD. However I have some questions about the behavior of the I2S: from other forums I knew that the I2S swaps the order like this internal data : 0 1 2 3 How I2S sends it: 2 3 0 2 and then there ...
by Ali_Makhlouf
Mon Dec 13, 2021 3:59 pm
Forum: ESP-IDF
Topic: Qt for LCD using ESP32 Wroom
Replies: 1
Views: 1844

Qt for LCD using ESP32 Wroom

I am trying to make an LCD application (buy display 480x272 with ssd1963 controller) using ESP32 WROOM. and I am trying to use Qt library for it: But the tutorials are not very clear and I don't know where to start from. can you please show me a way to get started with this solution one more questio...