Révision 482
Ajouté par mamoisan il y a presque 4 ans
SP4b2.c | ||
---|---|---|
/* NOTE:THIS IS A TYPICAL EXAMPLE. */
|
||
/***********************************************************************/
|
||
|
||
#include "sfr32c87.h"
|
||
|
||
#define LCD_DC p3_0
|
||
#define LCD_RW p3_1
|
||
#define LCD_E p3_2
|
||
#define LCD_DB4 p3_4
|
||
#define LCD_DB5 p3_5
|
||
#define LCD_DB6 p3_6
|
||
#define LCD_DB7 p3_7
|
||
|
||
void tpo_us(unsigned short duree);// temporisation en ?s
|
||
void tpo_ms(unsigned short duree);// temporisation en ms
|
||
void lcd_init_port(void);// initialisation des broches du ?C
|
||
void lcd_4b(unsigned char car);// envoi des 4 bits de poids fort
|
||
void lcd_8b(unsigned char car); // envoi des 8 bits de donn?e
|
||
void lcd_car(unsigned char car);// envoi d'une donn?e ? afficher
|
||
void lcd_com(unsigned char com);// envoi d'une commande
|
||
void lcd_init(void);// initialisation de l'afficheur
|
||
void lcd_str(unsigned char *str);// envoi d'une cha?ne de caract?re
|
||
char touche_app(void);//renvoie la touche que l'on appuie
|
||
|
||
void main(void)
|
||
{
|
||
char touche;
|
||
pd3=0xff;
|
||
pd10 = 0x0F;
|
||
lcd_init();
|
||
while(1)
|
||
{
|
||
touche = touche_app();
|
||
lcd_car(touche);
|
||
tpo_ms(500);
|
||
}
|
||
}
|
||
|
||
void tpo_us(unsigned short duree)
|
||
{
|
||
tcspr = 0x8A;
|
||
ta0mr = 0x82;
|
||
ta0 = duree;
|
||
ta0s = 1;
|
||
ta0os = 1;
|
||
ta0ic = 0x00;
|
||
while(ir_ta0ic != 1);
|
||
ta0s = 0;
|
||
}
|
||
|
||
void tpo_ms(unsigned short duree)
|
||
{
|
||
tpo_us(duree*1000);
|
||
}
|
||
|
||
void lcd_4b(unsigned char car)
|
||
{
|
||
LCD_E = 1;
|
||
|
||
if ((car & 0x80)==0x80)
|
||
{
|
||
LCD_DB7 = 1;
|
||
} else {
|
||
LCD_DB7 = 0;
|
||
}
|
||
|
||
if ((car & 0x40)==0x40)
|
||
{
|
||
LCD_DB6 = 1;
|
||
} else {
|
||
LCD_DB6 = 0;
|
||
}
|
||
|
||
if ((car & 0x20)==0x20)
|
||
{
|
||
LCD_DB5 = 1;
|
||
} else {
|
||
LCD_DB5 = 0;
|
||
}
|
||
|
||
if ((car & 0x10)==0x10)
|
||
{
|
||
LCD_DB4 = 1;
|
||
} else {
|
||
LCD_DB4 = 0;
|
||
}
|
||
|
||
LCD_E = 0;
|
||
}
|
||
|
||
void lcd_8b(unsigned char car)
|
||
{
|
||
lcd_4b(car);
|
||
lcd_4b(car<<4);
|
||
}
|
||
|
||
void lcd_com(unsigned char com)
|
||
{
|
||
LCD_DC = 0;
|
||
lcd_8b(com);
|
||
}
|
||
|
||
void lcd_car(unsigned char car)
|
||
{
|
||
LCD_DC = 1;
|
||
lcd_8b(car);
|
||
}
|
||
|
||
void lcd_init(void)
|
||
{
|
||
LCD_DC = 0;
|
||
tpo_ms(15);
|
||
lcd_4b(0x30);
|
||
tpo_ms(5);
|
||
lcd_4b(0x30);
|
||
tpo_us(100);
|
||
lcd_4b(0x30);
|
||
lcd_4b(0x20); //mode 4 bits
|
||
lcd_com(0x28); //?criture sur 2 lignes
|
||
lcd_com(0x06); //incr?menter vers la gauche
|
||
lcd_com(0x0F); //rallumer l'?cran avec curseur
|
||
lcd_com(0x01); //clear
|
||
tpo_ms(5);
|
||
}
|
||
|
||
void lcd_str(unsigned char *str)
|
||
{
|
||
int i = 0;
|
||
char strb = str[0];
|
||
while (strb != '\0')
|
||
{
|
||
lcd_car(strb);
|
||
i++;
|
||
strb = str[i];
|
||
}
|
||
}
|
||
|
||
char touche_app(void)
|
||
{
|
||
char t;
|
||
char touche;
|
||
pu31 = 1;
|
||
p10 = 0;
|
||
while(1)
|
||
{
|
||
t = p10;
|
||
if(t !=0xf0)
|
||
{
|
||
p10 = 0xfe;
|
||
t = p10;
|
||
if (t==0xbe)
|
||
{
|
||
touche = '1';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0xde)
|
||
{
|
||
touche = '2';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0x7e)
|
||
{
|
||
touche = '3';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
p10 = 0xfd;
|
||
t = p10;
|
||
if (t==0xbd)
|
||
{
|
||
touche = '4';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0xdd)
|
||
{
|
||
touche = '5';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0x7d)
|
||
{
|
||
touche = '6';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
p10 = 0xfb;
|
||
t = p10;
|
||
if (t==0x7b)
|
||
{
|
||
touche = '9';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0xdb)
|
||
{
|
||
touche = '8';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0xeb)
|
||
{
|
||
touche = '7';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
p10 = 0xf7;
|
||
t = p10;
|
||
if (t==0xd7)
|
||
{
|
||
touche = '0';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0x77)
|
||
{
|
||
touche = '#';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0xe7)
|
||
{
|
||
touche = '*';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
p10 = 0xf;
|
||
t = p10;
|
||
if (t==0xbe)
|
||
{
|
||
touche = '1';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0xde)
|
||
{
|
||
touche = '2';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
if (t==0x7e)
|
||
{
|
||
touche = '3';
|
||
tpo_ms(500);
|
||
return touche;
|
||
exit(1);
|
||
}
|
||
}
|
||
|
||
}
|
||
}
|
Formats disponibles : Unified diff
fin TP2b