]> rtime.felk.cvut.cz Git - fpga/virtex2/uart.git/blob - software/hardware.h
d7131041c5c0f2b5bf0463ec800aa05d7852c6fe
[fpga/virtex2/uart.git] / software / hardware.h
1 #ifndef HARDWARE_H
2 #define HARDWARE_H
3
4 #define __msp430_have_port3
5 #define __MSP430_HAS_PORT3__
6
7 #include <io.h>
8 #include <signal.h>
9 #include <iomacros.h>
10
11
12 //QuadCounter registers
13 #define QCNTL_             0x0150
14 sfrw(QCNTL,QCNTL_);
15 #define QCNTH_             0x0152
16 sfrw(QCNTH,QCNTH_);
17
18
19 //PINS
20 //PORT1
21 #define TX              BIT1
22
23 //PORT2
24 #define RX              BIT2
25 #define LED             BIT1
26
27 //Port Output Register 'P1OUT, P2OUT':
28 #define P1OUT_INIT      TX              //Init Output data of port1
29 #define P2OUT_INIT      0               //Init Output data of port2
30 #define P3OUT_INIT      0               //Init Output data of port3
31
32 //Port Direction Register 'P1DIR, P2DIR':
33 #define P1DIR_INIT      TX              //Init of Port1 Data-Direction Reg (Out=1 / Inp=0)
34 #define P2DIR_INIT      ~RX             //Init of Port2 Data-Direction Reg (Out=1 / Inp=0)
35 #define P3DIR_INIT      0xff            //Init of Port3 Data-Direction Reg (Out=1 / Inp=0)
36
37 //Selection of Port or Module -Function on the Pins 'P1SEL, P2SEL'
38 #define P1SEL_INIT      0               //P1-Modules:
39 #define P2SEL_INIT      RX              //P2-Modules:
40 #define P3SEL_INIT      0               //P3-Modules:
41
42 //Interrupt capabilities of P1 and P2
43 #define P1IE_INIT       0               //Interrupt Enable (0=dis 1=enabled)
44 #define P2IE_INIT       0               //Interrupt Enable (0=dis 1=enabled)
45 #define P1IES_INIT      0               //Interrupt Edge Select (0=pos 1=neg)
46 #define P2IES_INIT      0               //Interrupt Edge Select (0=pos 1=neg)
47
48 #define IE_INIT         0
49 #define WDTCTL_INIT     WDTPW|WDTHOLD
50
51 #define BCSCTL1_FLL     XT2OFF|DIVA1|RSEL2|RSEL0
52 #define BCSCTL2_FLL     0
53 #define TACTL_FLL       TASSEL_2|TACLR
54 #define CCTL2_FLL       CM0|CCIS0|CAP
55
56 #define TACTL_AFTER_FLL TASSEL_2|TACLR|ID_0
57
58 //#define BAUD            40              //9600 @3MHz div 8
59 //#define BAUD            20              //19200 @3MHz div 8
60 //#define BAUD            20              //9600 @1.5MHz div 8
61 //#define BAUD            140              //9600 @1.5MHz div 8
62
63 //#define BAUD           2083              //9600 @20.0MHz div 1
64 //#define BAUD           1042              //19200 @20.0MHz div 1
65 //#define BAUD            521              //38400 @20.0MHz div 1
66 //#define BAUD            347              //57600 @20.0MHz div 1
67 //#define BAUD            174              //115200 @20.0MHz div 1
68 //#define BAUD             87              //230400 @20.0MHz div 1
69
70 #define BAUD            208              //115200 @24.0MHz div 1
71
72 //Selection of 'Digitally Controlled Oszillator' (desired frquency in HZ, 1..3 MHz)
73 #define DCO_FREQ        1536000         //3072000/2 makes 9600 a bit more precise
74
75 //Automatic, do not edit
76 #define DCO_FSET        (DCO_FREQ/8192) //DCO_FSET = DCO_FREQ / (32768/4)
77 #define DCOCTL_MAX      0xff            // Used from FLL to check when Rsel must be changed
78 #define DCOCTL_MIN      0               // Used from FLL to check when Rsel must be changed
79
80
81 #endif //HARDWARE_H