K
Klaus Sandner
Guest
I want to send a textstring to a display.To do this I have to transform
each charakters of the string to 8 bit values.
here my Vhdl solution
constant LCD_display_lenositive:=16;
subtype LCD_display_string is string(1 to LCD_display_len);
subtype LCD_display_bit is std_logic_vector(1 to LCD_display_len*8);
process (clk)
variable data_string :LCD_display_string := "test string for ";
variable data_bit :LCD_display_bit;
now I have problems to write the right instruction
data_bit <= conv ????????????????????????????
has somebody a solution?
klaus
end process;
each charakters of the string to 8 bit values.
here my Vhdl solution
constant LCD_display_lenositive:=16;
subtype LCD_display_string is string(1 to LCD_display_len);
subtype LCD_display_bit is std_logic_vector(1 to LCD_display_len*8);
process (clk)
variable data_string :LCD_display_string := "test string for ";
variable data_bit :LCD_display_bit;
now I have problems to write the right instruction
data_bit <= conv ????????????????????????????
has somebody a solution?
klaus
end process;