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

📄 main.c

📁 Freescale的S08BDM开发工具制作资料
💻 C
字号:
/*
    Open Source BDM - main program loop
    
     /* Prominent Notice-This software was modified from TBDML software - 12/05

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#include "hidef.h"
#include "MC68HC908JB16.h"
#include "commands.h"
#include "usb.h"
#include "bdm.h"
#include "led.h"
#include "main.h"
 
/* basic program flow:

1. all BDM activity is driven by commands received from the USB
2. all BDM commands are executed from within the ISRs servicing the USB IRQ (i.e. with interrupts disabled)
3. suspend timekeeping is performed in the main loop
4. the only asynchronous activity is detection of external resets on RESET_IN pin through KBD interrupts   

*/

/* timer counts up and the part is suspended when it reaches treshold value */
/* the USB interrupt resets the timer */
volatile signed char suspend_timer;
 
/* initialise the CPU */
void init(void) {
  CONFIG = CONFIG_URSTD_MASK | CONFIG_STOP_MASK | CONFIG_COPD_MASK; /* disable part reset on USB reset, enable STOP instruction & disable COP */
  ISCR = ISCR_ACK_MASK | ISCR_IMASK_MASK;         /* acknowledge IRQ interrupt and disable it */
  
  if (PTD_PTD3 ==0){
 //set up a mass erase
 
 asm {
     jmp  0xfa19
 	 ; mov	#0x04,UCR3		; enable USB pullup
 }
 		  
 
  } 
    
  POCR_PTDLDD= 1; 
  PTD = 0x14;
  
 DDRD_DDRD2 = 1;
 DDRD_DDRD4 = 1;
 DDRD_DDRD5 = 1;
 
 PTE_PTE0 = 1;
 PTE_PTE2 =  0;
 //DDRE_DDRE0 = 1;
 
 DDRE_DDRE2 = 1;
  bdm_init();
  usb_init();
  EnableInterrupts;                               /* enable interrupts */
}

/* wait 100us */
void wait100us(void) {
  asm {
    LDA   #((BUS_FREQUENCY*100/3)-4-2-4)  /* minus cycles needed for BSR, LDA and RTS */
  loop:
    DBNZA loop  /* 3 cycles per iteration */ 
  }
}

/* main function */
void main(void) {
  init();
  /* testing */
#if 0

 //bdm_sync_meas();   //
  //bdm_rx_tx_select();
    bdm08_connect();
  
  					 //bdm_status.sync_length= 975 ;
  BDM08_CMD_WRITECONTROL(0x88);
    bdm08_connect();
  while(1) {
    unsigned char i;
       
    BDM08_CMD_READSTATUS(&i);
    for (i=0;i<120;i++) asm(nop);
    	
  }
#endif  
  
  while(1) {
    wait100us();
    suspend_timer++;
    if (suspend_timer>=SUSPEND_TIME) {
      /* host is not sending keepalive signals, time to suspend all operation */
      /* BDM is in idle mode when not communicating, so nothing to do there */
      unsigned int i;
      KBSCR = KBSCR_IMASKK_MASK | KBSCR_ACKK_MASK; /* acknowledge any pending interrupt and disable KBD interrupts; this will prevent RESET activity waking us up out of stop */
      led_state=LED_OFF;  /* switch the LED off */      
      LED_SW_OFF;         /* do it now, the interrupt which would do it normally is not going to come */
      UIR0_SUSPND=1;      /* suspend USB */
      while (suspend_timer) asm(STOP);  /* go to sleep, wait for USB resume or reset */
      for (i=0;i<RESUME_RECOVERY;i++) wait100us();  /* wait for host to recover */
      led_state=LED_ON;   /* switch the LED back on */ 
      bdm_init();         /* reinitialise the BDM after wake-up as the device might have been disconected in the meantime; assume nothing */ 
    }
  }
}

⌨️ 快捷键说明

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