Prof.
Le Tien Thuong
DSP LAB 2: OLED LCD Communication using
TMS320C5515/35 eZdsp USB STICK
1. Introduction:
- Introducing oled LCD of TMS320C5515/35 and implementing the display on oled
LCD.
- LCD of TMS320C5515/35 is a 96x16 OLED display screen which has 96 columns
and 16 rows. The display screen is divided into two regions, so actually we have
two 96x8 to display a text.
- For this project, to illustrate each character, we need 5x8 pixels. To keep the space
between characters, we use only 4x7 pixels for designing. Each led in LCD is
activated by setting to bit 1. The picture below will clearly show the rules of writing
on LCD.
Fig 1. How to define a character in LCD.
- In project sample lcd-osd9616, to print out a character, they implement a function
called printLetter.
Int16 printLetter(Uint16 l1,Uint16 l2,Uint16 l3,Uint16 l4)
{
OSD9616_send(0x40,l1);
OSD9616_send(0x40,l2);
OSD9616_send(0x40,l3);
OSD9616_send(0x40,l4);
OSD9616_send(0x40,0x00);
return 0;
}
Where l1 consider as A0, l2 as A1, l3 as A2, l4 as A3.
1
Prof. Le Tien Thuong
2. Tasks:
- From example in lcd-osd9616, you will rewrite your required text.
“LỚP XỬ LÝ SỐ TÍN HIỆU_TT01 Thí nghiệm chiều thứ ba_Học kỳ 1 niên khóa 2022-
2023”
- Make sure the clarity of your characters.
- Due to the limitation of memory, the screen only displays 128 columns for each
page. Find a solution for showing full text in one-time display.
- Capture the result and write a report.