
#include "at91sam7x256.h"
#include "board.h"
#include "gsm.h"


void Delay (unsigned long a)
{
	while (--a!=0);
}

int main (void)
{

	InitUSART1();
	write_str_USART1("AT\r\n");
	Delay(5000000);
	write_str_USART1("ATD0176xxxxxxxx;\r\n");
	Delay(15000000);
	write_str_USART1("ATH\r\n");
	
}







