Hello everybody
My project is MB LC.
I use MPLAB IDE v 8.14 to compile.
I use 2 LCD 40X2.
How to leave a space of 5 characters between tracks ?
EX: LCD 1 ( " - " is the space )
-Track1-----Track2-----Track3-----Track4 = 40 characters
EX: LCD 2
-Track5-----Track6-----Track7-----Track8 = 40 characters
I tried to modify lc_clcd without result !!!
;; --------------------------------------------------------------------------
;; Page0:
;; --------------------------------------------------------------------------
LC_CLCD_Init_Page0
;; print status digits at position 38/2
SET_CLCD_STATUS 0, 0, 0
;; print “SMPTE/BEATS” at position: 28/2
SET_CLCD_SMPTE_BEATS 0, 0, 0
;; print MTC digits at position 27/3
SET_CLCD_MTC 0, 0, 0
;; print host messages at position 12/0, (0=normal spacing)
SET_CLCD_HOST_MSG 1, 1, 1, 5
;; don’t print meters
SET_CLCD_METER 0, 0, 0, 0
;; print rec/solo/mute status at 0/0
SET_CLCD_RSM_MSG 0, 0, 0
;; print select status at 0/1
SET_CLCD_SEL_MSG 0, 0, 0
return
Thank you