File "oc3.h"
Full Path: /home/analogde/www/68hc11/68HC12/oc3.h
File size: 898 bytes
MIME-type: text/plain
Charset: utf-8
220
HTTP/1.1 200 OK
Date: Sat, 18 Jun 2005 20:19:32 GMT
Server: Apache/1.3.26 (Unix) Debian GNU/Linux mod_perl/1.26 mod_ssl/2.8.9 OpenSSL/0.9.6g PHP/4.1.2
Last-Modified: Wed, 08 Jan 2003 19:42:56 GMT
ETag: "95c9bf-220-3e1c7f40"
Accept-Ranges: bytes
Content-Length: 544
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
Content-Type: text/x-chdr
// File **********OC3.H***********
// Periodic Interrupt using TOC3
// Output on TC3/OC3
// Last modified 1/16/02 by Jonathan W. Valvano
// Copyright 2002 by Jonathan W. Valvano, v
0
alvano@uts.cc.utexas.edu
// You may use, edit, run or distribute this file
// as long as the above copyright notice remains
void Start(unsigned short Period, void(*fp)(void));
// Period is the interrupt rate in ms
// fp is a function to be executed at this period
// example
// void toggle(void){PORTT^=0x40;}
// Start(100,&toggle);