2023-02-26 12:02 AM
Hello,
I have posted some questions for this configuration - NUCLSEO-G071RB + X-NUCLEO-GFX01M02($AZ2). Now some sample projects are partially working.
(1). It can compiled and downloaded into the board and show 1st page graphic, but the touch panel does not work, cannot switch the screen by press the button on the screen.
(2). if any changes in STM32CubeMX - STM32G071RB_NUCLEO_AZ2.ioc and re-generated the code, it will cause compiling issue with this new code.
2.Tested X-CUBE-DISPLAY - en.X-CUBE-DISPLAY.3.0.0.zip. Selected GFX01M2_HelloWorld from X-NUCLEO-GFX01M2 and NUCLEO-G071RB. Compiled fine, but the project code hang at BSP_LCD_Init(). It could be caused by LCD type as I am using AZ2. but after re-configuration in STM32CubeMX. the project has compiling issues.
Questions,
Thanks & best regards,
Jiannong
Solved! Go to Solution.
2023-02-27 01:42 AM
Well, about question 2 about the X-NUCLEO-GFX01M2 not responding to touch: what makes you think the display is a touch display?
The product description says:
...feature a 2.2" SPI QVGA TFT display as well as a 64-Mbit SPI NOR Flash memory for storing graphic images, texts and texture. The expansion boards also offer a joystick for GUI navigation.
You can create applications for it with TouchGFX, but these are pure display applications without touch for this simple X-NUCLEO.
Regards
/Peter
2023-02-26 03:53 PM
For Q1 (1). I should continue to add code to let the code work. And also I re-configure IO pin on NUCLEO-G071FRB board to use to drive DC motor. it looks like fine.
But For Q1(2). still have some problem if re-configure X-NUCLEO-GFX01M2 code.
Jiannong
2023-02-27 01:42 AM
Well, about question 2 about the X-NUCLEO-GFX01M2 not responding to touch: what makes you think the display is a touch display?
The product description says:
...feature a 2.2" SPI QVGA TFT display as well as a 64-Mbit SPI NOR Flash memory for storing graphic images, texts and texture. The expansion boards also offer a joystick for GUI navigation.
You can create applications for it with TouchGFX, but these are pure display applications without touch for this simple X-NUCLEO.
Regards
/Peter
2023-03-01 05:16 AM
@Peter BENSCH ,
Yes. you are right. I also found that this board is only LCD display without touch panel.
Thanks,
Jiannong
2023-07-12 05:33 PM
Hello Jiannong Zhou.
I am also testing with the NUCLEO-G071RB + X-NUCLEO-GFX01M2 ($AZ2) combination.
As you said, AZ1 and AZ2 of X-NUCLEO-GFX01M2 have different LCD and LCD Driver IC.
----------------------------------------------------
1. X-NUCLEO-GFX01M1
1.1 XNGFX01M1$AZ1
This product identification is based on board MB1642-DT022CTFT-B01.
The LCD used in this product is DT022CTFT with driver IC ILI9341V.
2. X-NUCLEO-GFX01M2
2.1 XNGFX01M2$AZ1
This product identification is based on board MB1642-TCXD022IB5-D01.
The LCD used in this product is TCXD022IBLON-5 with driver IC ST7789V.
2.2 XNGFX01M2$AZ2
This product identification is based on board MB1642-DT022CTFT-D01.
The LCD used in this product is DT022CTFT with driver IC ILI9341V.
----------------------------------------------------
However, AZ2's LCD and LCD Driver IC are the same as X-NUCLEO-GFX01M1.
So, if you use the two projects in the en.X-CUBE-DISPLAY.3.0.0.zip file (example), you can create a project for AZ2.
STM32CubeIDE\en.X-CUBE-DISPLAY.3.0.0\Projects\NUCLEO-G071RB\Applications\
- GFX01M1_HelloWorld
- GFX01M2_HelloWorld
The task basically uses the GFX01M2_HelloWorld project.
1. Copy 'lcd_io.c' and 'lcd_io.h' in the 'GFX01M1_HelloWorld\DISPLAY\Target folder to the GFX01M2_HelloWorld\DISPLAY\Target' folder. (overwrite)
2. Modify the following contents in 'en.X-CUBE-DISPLAY.3.0.0\Projects\NUCLEO-G071RB\Applications\GFX01M2_HelloWorld\Core\Inc\RTE_Components.h' file.
#define DISPLAY_LCD_COMP_ST7789V -> #define DISPLAY_LCD_COMP_ILI9341
3. In the folder 'en.X-CUBE-DISPLAY.3.0.0\Projects\NUCLEO-G071RB\Applications\GFX01M2_HelloWorld\STM32CubeIDE'
Open '.cproject' and '.project' files and modify all ST7789V related paths to ILI9341 paths.
4. Open the project with STM32CubeIDE.
5. Run the build
6. If there is no error after building, select 'en.X-CUBE-DISPLAY.3.0.0\Utilities\PC_Software\ExternalLoader\MX25L6433F_GFX01M2_STM32G0.stldr' for external loaders.
Then you can run the GFX01M2_HelloWorld project in your environment.
good luck.
Regards.