/*
 * task2 - task for os
 *
 * $Id: task2.c,v 1.6 2002/07/31 05:52:16 tomdean Exp $
 */

#include <sys/ports_def.h>
#include <os.h>
#include <lcd.h>
#include <libeeprom.h>

unsigned char stack2[STACK_SIZE];

/*
 * task 2
 */
void task2() {
  register unsigned short loop_count = 0;
  
  while (1) {	
	hex_to_ascii_4(++loop_count, TASK2_COUNT);

	SYS_DONE();
  }
}

