cancel
Showing results for 
Search instead for 
Did you mean: 

How can I display Korean in STM32F429ZI Discovery?

지한.1
Associate II

Hi, I want to display Korean in STM32F429ZI discovery LCD.

Unicode::snprintf(textArea_1_Buffer, TEXTAREA_1_SIZE, "%s", "남");-> Display ???

​​

  • TouchGFX Designer Display 0693W00000JMd7pQAD.png
  • Wildcard Ranges are 0x0000-0xffff
  • ​textArea Wildcard0693W00000JMd8OQAT.png

​How can I change Korean used to Unicode::snprintf?

1 ACCEPTED SOLUTION

Accepted Solutions
Peter BENSCH
ST Employee

Have you ever had a look at this thread that discusses a similar problem?

Regards

/Peter

In order to give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

View solution in original post

2 REPLIES 2
Peter BENSCH
ST Employee

Have you ever had a look at this thread that discusses a similar problem?

Regards

/Peter

In order to give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

Thank you

I solved the problem.

I used the font "Malgun Gothic Bold".

And I used this code.

Unicode::fromUTF8( ( const uint8_t *) "하", textArea_1Buffer, TEXTAREA_1_SIZE );

textArea_1.invalidate();​