LCD Lib for MC9S08dz60 and T6963c

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

LCD Lib for MC9S08dz60 and T6963c

3,064 Views
MarkusWimmer
Contributor I

Hello! I search for a LCD Driver Library. The Microcontroller i have is Freescale MC9S08dz60 and the Grafik LCD has 160*80dot with the T6963c Grafikcontroller.

Have anybody something librays?

Thanks Markus

Labels (1)
0 Kudos
5 Replies

715 Views
Problem99
Contributor I

Hi Markus,

yes, I'm german, but for other readers here, I'll answer in english language.

 

I have found the files at  http://www.sctec.com.br/content/view/85/46/  some days ago.

But I have no more information about that, no hardware, never compiled by myself.

You have to find out more by yourself, sorry.

 

Also, i know some other sources for interface Freescale uP  <---> T6963 graphic controller.

 

1.)  My preference:

This is "DRM008" , "Alarm Control Panel Reference Design" from Oliver Thamm. 

You can download complete sourcecode & documentation from

http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=RDHCS12ACP

The project ist for HCS12, but well documented, and written in C. 

See file "t6963.c"

 

2.) A "bean" for Processor Expert is also available ...

http://www.processorexpert.com/package_info.php?pac_id=396&tpl=mc__package_info.html&&s_bea_id=&&s_rel_id[]=4&&&&&&&s_bean_name=&&&FormTable_Sorting=6&FormTable_Sorted=&&Formtable_Page=&&Formmcus_Page=3&Formmcus_Page=2

 

3.) 

Another source (german language) for questions about T6963 is  http://www.mikrocontroller.net/  forum.

Search for T6963:

http://www.mikrocontroller.net/forum/mikrocontroller-elektronik?filter=T6963

But the discussions there should be handled with care, because sometimes not really accurate.

 

 

Klaus

 

0 Kudos

715 Views
MarkusWimmer
Contributor I
Hello, can you give me your email adress?, i haf some questions about the "Alarm Control Panel Reference Design" thanks markus
0 Kudos

715 Views
Problem99
Contributor I

A copy of complete project information HW+SW about "Alarm Control Panel Reference Design" for HCS12 is available at

http://elmicro.com/hc12web/acprd/index.html

 

A book about HCS12 uP , little expensive, is    ISBN 10: 1435486145   ISBN 13: 9781435486140

Another one is     ISBN-10: 0136072291  ISBN-13: 978-0136072294   , again little expensive.

See ebay or amazon for details. Search for  "HCS12" . 

German book from Oliver Thamm is no more available ; maybe you can find a used one  ISBN-10: 3446217754 ISBN-13: 978-3446217751

 

 

A book about HCS08 is   ISBN-10: 1419685929    ISBN-13: 978-1419685927

Search amazon for "HCS08"

 

 

 

0 Kudos

715 Views
Problem99
Contributor I

Look at  http://www.sctec.com.br/content/view/85/46/

See files  "lcdg.c" and "lcdg.h" .

You should learn some Portuguese... des is manchmol hilfreicher als denglisch.

Klaus

 

0 Kudos

715 Views
MarkusWimmer
Contributor I

Hallo, aus dem letzten Satz nehme ich an du sprichst deutsch?? ich verstehe die Lib nicht- speziell di Pinzuordnung:

 

#ifndef lcdg_cd
    #define lcdg_cd P2OUT_bit.P2OUT_1          was bedeutet P2OUT_bit.P2OUT_1, etwa das Port 2

                                                               Pin1 auf ausgang ist???      

    #define lcdg_cd_dir P2DIR_bit.P2DIR_1        was wird hier gemacht?

#endif
#ifndef lcdg_rd
    #define lcdg_rd P2OUT_bit.P2OUT_3
    #define lcdg_rd_dir P2DIR_bit.P2DIR_3
#endif
#ifndef lcdg_wr
    #define lcdg_wr P2OUT_bit.P2OUT_2
    #define lcdg_wr_dir P2DIR_bit.P2DIR_2
#endif
#ifndef lcdg_ce
    #define lcdg_ce P2OUT_bit.P2OUT_0
    #define lcdg_ce_dir P2DIR_bit.P2DIR_0
#endif
#ifndef lcdg_dados_out                                   Sind das die Datenbits D0-D7?   

#define lcdg_dados_dir P1DIR                           was wird hier gmacht?

    #define lcdg_dados_out P1OUT                     ....und hier ein ganzer Port auf low.... 

   #define lcdg_dados_in P1IN                           und hier wieder auf high gesetzt

#endif 

 

Danke

Markus

0 Kudos