/*-----------------------------------------------------------------------------

File:		pwm8_io.h

Purpose:	8 channel PWM

Version:	$Revision: 1.1 $

I/O Map 18F4550 on Modtronix SBC44UC
	RB  - port for PWM output
	RC4 - Reserved for USB D-
	RC5 - Reserved for USB D+
*/

#ifndef PWM8_IO_H
#define PWM8_IO_H

#define MASK_TRISB	0x0			// RB port set to output
#define MASK_TRISD	0xfb		// RD2 set to output

#define MASK_ADCON1	0x0c		// RA0-2 are analog inputs

#endif //PWM8_IO_H
