#include <msp430.h>
#define BUTTON BIT3 // Port 1.3
#define REDLED BIT0 // Port 1.0
#define GRNLED BIT6 // Port 1.6
#define ZERO 0x08
#define ONE 0x48
#define TWO 0x09
#define THREE 0x49
public class ThreadTest {
public static void main(String[] args) throws InterruptedException {
CounterThread ct = new CounterThread();
ct.setDaemon(true);
ct.start();
c