home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_12 / 8n12039a < prev    next >
Text File  |  1990-10-17  |  609b  |  23 lines

  1.  
  2.  
  3.         /* initialize device number 3 by holding its reset */
  4.         /* line (GPIO bit 7) high for half a minute */
  5.  
  6.  
  7. #include "mfp_defs.h"           /* MFP address definitions */
  8. #include "mfp_macs.h"           /* MFP macro definitions */
  9.  
  10. #define HOLD_TIME       30      /* seconds to hold reset line */
  11. #define RESET_LINE       7      /* reset line is GPIO bit 7 */
  12.  
  13.  
  14. reset_dev3()
  15. {
  16.         BIT_SET(GPIO,RESET_LINE);       /* set reset line */
  17.         delay(HOLD_TIME);               /* and hold it, then */
  18.         BIT_CLR(GPIO,RESET_LINE);       /* clear it back to zero */
  19. }
  20.  
  21.  
  22.  
  23.