Arduino port is working, but only at 9600 baud.
[goodfet] / firmware / lib / msp430.c
1 /*! \file msp430.c
2   \author Travis Goodspeed
3   \brief MSP430-generic functions.
4 */
5
6
7 //Silently be empty if not an MSP430.
8 #ifdef MSP430
9
10
11 #include "platform.h"
12 #include "command.h"
13 #include "apps.h"
14 #include "glitch.h"
15
16
17 //! Initialize MSP430 registers and all that jazz.
18 void msp430_init(){
19         WDTCTL = WDTPW + WDTHOLD;                                       // Stop watchdog timer
20
21         //LED out and on.
22         PLEDDIR |= PLEDPIN;
23         PLEDOUT &= ~PLEDPIN;
24
25
26         /* P5.0 out and low; this is chosen for the PIC app (in which P5.0
27          is !MCLR) to ensure that an attached PIC chip, if present, is
28          immediately driven to reset state. A brief explanation of why this
29          is important follows.
30
31         At least dsPIC33F and PIC24H --and very likely other 16-bit PIC
32         families-- draw a large amount of current when running, especially
33         when using a fast clock: from 60 mA up to approx. 90 mA.  If the
34         PIC target begins to run before the client can request a new ICSP
35         session, which requires much less current (e.g., less than 2 mA),
36         then the MSP430 chip on the GoodFET will fail to start and the FTDI
37         may have trouble communicating with the client. The latter likely
38         relates to the FTDI on-chip 3V3 regulator being specified up to
39         only 50 mA. */
40
41
42         //P5REN &= ~BIT0; //DO NOT UNCOMMENT.  Breaks GF1x support.
43
44         //This will have to be cut soon.        Use pulling resistors instead.
45         /*
46         P5DIR |= BIT0;
47         P5OUT &= ~BIT0;
48         */
49
50         //Setup clocks, unique to each '430.
51         msp430_init_dco();
52         msp430_init_uart();
53
54         //DAC should be at full voltage if it exists.
55 #ifdef DAC12IR
56         //glitchvoltages(0xfff,0xfff);
57         ADC12CTL0 = REF2_5V + REFON;                                    // Internal 2.5V ref on
58         //for(i=0;i!=0xFFFF;i++) asm("nop"); //DO NOT UNCOMMENT, breaks GCC4
59         DAC12_0CTL = DAC12IR + DAC12AMP_5 + DAC12ENC; // Int ref gain 1
60         DAC12_0DAT = 0xFFF; //Max voltage 0xfff
61         DAC12_1CTL = DAC12IR + DAC12AMP_5 + DAC12ENC; // Int ref gain 1
62         DAC12_1DAT = 0x000; //Min voltage 0x000
63 #endif
64
65         /** FIXME
66           
67           This part is really ugly.  GSEL (P5.7) must be high to select
68           normal voltage, but a lot of applications light to swing it low
69           to be a nuissance.  To get around this, we assume that anyone
70           with a glitching FET will also have a DAC, then we set that DAC
71           to a high voltage.
72           
73           At some point, each target must be sanitized to show that it
74           doesn't clear P5OUT or P5DIR.
75         */
76         P5DIR|=BIT7; P5OUT=BIT7; //Normal Supply
77         //P5DIR&=~BIT7; //Glitch Supply
78
79         //Enable Interrupts.
80         //eint();
81
82 }
83
84 //MSP430
85 #endif