⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 飞思卡尔HC08/HCS08系列单片机LCD驱动源码
💻 C
字号:
#include <hidef.h>     /* For EnableInterrupts macro                         */
#include "lcd.h"       /* Include LCD Driver definitions                     */

void TimerInit(void);  /* Initialization of timer                            */

extern UINT8 timerLCD; /* Variable in the driver used for delays             */

UINT8 current_function_flag; /* Variable used for state of print in LCD      */

UINT8 cycles;          /* Variables to demonstrate the functionality of LCD  */
                       /*       Driver                                       */
UINT8 cycles_100;
UINT8 cycles_10000;

UINT8 temp;            /* Temporal variable                                  */

/******************************** Main Routine *******************************/
void main(void)
 {
  /* Disable the Cop and the LVI module power */
  CONFIG1_COPD =    1;
  CONFIG1_LVIPWRD =  1;

  /* Using the External Crystal Oscilator. Wich frecuency is Fxtal=9.8304MHz */
  CONFIG2_OSCCLK0=0;
  CONFIG2_OSCCLK1=1;
  
  TimerInit();              /* Initialization of time                        */
  LCDInit();                /* Initialization of LCD Driver                  */

  EnableInterrupts;         /* Enable interrupts                             */
  
  cycles =         0;
  cycles_100 =     0;
  cycles_10000 =   0;
  
  for(;;) 
  {

    if (timerLCD == 0) LCDTimeBase(); /* LCD Driver time base                */
          
    /* State routine for print in LCD */
    if(LCDStatus() == lcdStatusReady)
    {
      if(current_function_flag == 0)
      {
        current_function_flag = 1;
        LCDCursor(0x00);                /* Set the cursor at home            */
      }      
      else if(current_function_flag == 1)
      {
        current_function_flag = 2;
        LCDPrint("Line one",8);     /* Print the text of a specific length   */
      }
      else if(current_function_flag == 2)
      {
        current_function_flag = 3;
        LCDCursor(0x40);
      } 
      else if(current_function_flag == 3)
      {
        current_function_flag = 4;
        LCDPrint("Line two",8); 
      }
      else if(current_function_flag == 4)
      {
        current_function_flag = 5;
        LCDCursor(0x0A);
      } 
      else if(current_function_flag == 5)
      {
        current_function_flag = 6;
        LCDPrint("Cycles",6); 
      }
      else if(current_function_flag == 6)
      {
        current_function_flag = 7;
        LCDCursor(0x4A);
      } 
      else if(current_function_flag == 7)
      {
        current_function_flag = 8;
        LCDPrint("x64*",4);
      }
      else if(current_function_flag == 8)
      {
        current_function_flag = 9;
        temp = (((cycles_100)>>4) & 0x0F) + '0';
        if (temp > '9') temp += 7;
        LCDPrint(&temp,1);
      }
      else if(current_function_flag == 9)
      {
        current_function_flag = 0;
        temp = ((cycles_100) & 0x0F) + '0';
        if (temp > '9') temp += 7;
        LCDPrint(&temp,1);
        cycles =         0;
        cycles_100 =     0;
        cycles_10000 =   0;
      }
    }  
    
    cycles++;
    if (cycles == 100) {
      cycles_100++;
      cycles = 0;
      if (cycles_100 == 100) {
        cycles_10000++;
        cycles_100 = 0;
      }
    }
            
  }  /* Loop forever */
}


/* Initialization of timer */
void TimerInit(void)
{

  T1SC_TOIE = 1;     /* Enable overflow interrupt                            */
  T1SC_PS0 =  0;     /* Select prescale divisor. Preescaler = 1              */
  T1SC_PS1 =  0;                   
  T1SC_PS2 =  0;                     

  T1MOD = 0x00f6;    /* For an overflow interrupt of aprox 100 us, this need */
                     /*        246 counts because each count take 1 Tbus, so */
                     /*        (246 * 1Tbus) = 100.09us                      */
  
  T1SC_TSTOP = 0;    /* For normal operation                                 */
  
}


/* Timer Overflow Interrupt */
void interrupt 7 timeOverFlowInterrupt(void) 
{

    T1SC &= 0x7F;                 /* Clear flag                              */
    if (timerLCD > 0) timerLCD--; /* Decrement one time the timerLCD         */
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -