Motor Shield Capable of Driving 5 DC motors?

Retroplayer:
The short answer is that if you don't need it, don't use it. But it may be required to terminate it. Check the datasheet for that.

RetroPlayer,

I got my H-Bridge in and got it all wired up to the arduino, motor and external supply. I decided not to use the current sense pin (pin 8) or the thermal flag ouput (pin 9), as I have no use for them in this project. Since I'm not going to use it, I first tried my test program with pin 8 & 9 NOT connnected to anything. The program compiled with no errors, but I got no movement with the motor. I then tried connecting the current sense output pin to ground with a 2.7kΩ resistor between the connection and ground (see pg 6 on the datasheet, as it shows a test circuit example schematic), still nothing. I have yet to try to connect the thermal flag output to anything, as I figured it really shouldn't affect the program working properly. I've checked over my circuit to make sure all the connections are correct multiple times. Is something wrong with my code that it's not running properly? (Keep in mind that the only coding that I ever really mess with is assembly for one of my classes and ladder logic for PLC's, so I'm not the best with this C++ based stuff). My code is as follows:

int pwmPin=4;//defines PWM input to LM18200
int dirPin=5;//defines direction input to LM18200
int brkPin=6;//defines break input to LM18200
int speed=127;//defines the speed of the motor (half speed)

void setup()

	{

	pinMode(pwmPin,OUTPUT);
	pinMode(dirPin,OUTPUT);
	pinMode(brkPin,OUTPUT);

	}

void forward()

//Necessary conditions to drive the motor in the forward direction
	{

	analogWrite(pwmPin,speed);	//Sets speed of motor by PWM
	digitalWrite(dirPin,HIGH);	//Direction pin goes HIGH 
	digitalWrite(brkPin,LOW);	//Brake pin is disabled 

	}

void reverse()

//Necessary conditions to drive the motor in the reverse direction

	{

	analogWrite(pwmPin,speed);	//sets speed of motor by PWM
	digitalWrite(dirPin,LOW);	//Direction pin goes LOW, causing motor to turn opposite direciton
	digitalWrite(brkPin,LOW);	//Brake pin is disabled

	}


void brake()
//Necessary conditions to short the motor terminals and "brake" the motor

	{
	analogWrite(pwmPin,speed);
	digitalWrite(dirPin,HIGH);
	digitalWrite(brkPin,HIGH);
	}

void loop()

	{	
	forward();
	delay(4000);
	brake();			//Brakes inbetween directions to avoid immediate direction chnge
	delay(500);
	reverse();
	delay(4000);
	brake();	
	delay(500);
	}

Any suggestions?
Oh and here's the datasheet again to keep from having to hunt it down in previous posts:
http://www.datasheetcatalog.org/datasheet/nationalsemiconductor/DS010568.PDF

Thank you,
-Jeff F.