Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2850 dpurdie 1
/******************************************************************************/
2
/* Legacy Header File                                                         */
3
/* Not recommended for use in new projects.                                   */
4
/* Please use the msp430.h file or the device specific header file            */
5
/******************************************************************************/
6
 
7
/********************************************************************
8
*
9
* Standard register and bit definitions for the Texas Instruments
10
* MSP430 microcontroller.
11
*
12
* This file supports assembler and C development for
13
* MSP430x20x2 devices.
14
*
15
* Texas Instruments, Version 1.5
16
*
17
* Rev. 1.0, Setup
18
* Rev. 1.1, Removed some TACCx2 definition on TA2 module
19
* Rev. 1.2, Replaced USIIFGDC with USIIFGCC
20
* Rev. 1.3  Replaced ADC10AE with ADC10AE0 according to the Users Guide
21
* Rev. 1.4, added definitions for Interrupt Vectors xxIV
22
* Rev. 1.5, Fixed typo in ADC10: SREF3 -> SREF2
23
*
24
********************************************************************/
25
 
26
#ifndef __msp430x20x2
27
#define __msp430x20x2
28
 
29
#ifdef __cplusplus
30
extern "C" {
31
#endif
32
 
33
 
34
/*----------------------------------------------------------------------------*/
35
/* PERIPHERAL FILE MAP                                                        */
36
/*----------------------------------------------------------------------------*/
37
 
38
/* External references resolved by a device-specific linker command file */
39
#define SFR_8BIT(address)   extern volatile unsigned char address
40
#define SFR_16BIT(address)  extern volatile unsigned int address
41
 
42
 
43
/************************************************************
44
* STANDARD BITS
45
************************************************************/
46
 
47
#define BIT0                   (0x0001)
48
#define BIT1                   (0x0002)
49
#define BIT2                   (0x0004)
50
#define BIT3                   (0x0008)
51
#define BIT4                   (0x0010)
52
#define BIT5                   (0x0020)
53
#define BIT6                   (0x0040)
54
#define BIT7                   (0x0080)
55
#define BIT8                   (0x0100)
56
#define BIT9                   (0x0200)
57
#define BITA                   (0x0400)
58
#define BITB                   (0x0800)
59
#define BITC                   (0x1000)
60
#define BITD                   (0x2000)
61
#define BITE                   (0x4000)
62
#define BITF                   (0x8000)
63
 
64
/************************************************************
65
* STATUS REGISTER BITS
66
************************************************************/
67
 
68
#define C                      (0x0001)
69
#define Z                      (0x0002)
70
#define N                      (0x0004)
71
#define V                      (0x0100)
72
#define GIE                    (0x0008)
73
#define CPUOFF                 (0x0010)
74
#define OSCOFF                 (0x0020)
75
#define SCG0                   (0x0040)
76
#define SCG1                   (0x0080)
77
 
78
/* Low Power Modes coded with Bits 4-7 in SR */
79
 
80
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
81
#define LPM0                   (CPUOFF)
82
#define LPM1                   (SCG0+CPUOFF)
83
#define LPM2                   (SCG1+CPUOFF)
84
#define LPM3                   (SCG1+SCG0+CPUOFF)
85
#define LPM4                   (SCG1+SCG0+OSCOFF+CPUOFF)
86
/* End #defines for assembler */
87
 
88
#else /* Begin #defines for C */
89
#define LPM0_bits              (CPUOFF)
90
#define LPM1_bits              (SCG0+CPUOFF)
91
#define LPM2_bits              (SCG1+CPUOFF)
92
#define LPM3_bits              (SCG1+SCG0+CPUOFF)
93
#define LPM4_bits              (SCG1+SCG0+OSCOFF+CPUOFF)
94
 
95
#include "in430.h"
96
 
97
#define LPM0         _bis_SR_register(LPM0_bits)         /* Enter Low Power Mode 0 */
98
#define LPM0_EXIT    _bic_SR_register_on_exit(LPM0_bits) /* Exit Low Power Mode 0 */
99
#define LPM1         _bis_SR_register(LPM1_bits)         /* Enter Low Power Mode 1 */
100
#define LPM1_EXIT    _bic_SR_register_on_exit(LPM1_bits) /* Exit Low Power Mode 1 */
101
#define LPM2         _bis_SR_register(LPM2_bits)         /* Enter Low Power Mode 2 */
102
#define LPM2_EXIT    _bic_SR_register_on_exit(LPM2_bits) /* Exit Low Power Mode 2 */
103
#define LPM3         _bis_SR_register(LPM3_bits)         /* Enter Low Power Mode 3 */
104
#define LPM3_EXIT    _bic_SR_register_on_exit(LPM3_bits) /* Exit Low Power Mode 3 */
105
#define LPM4         _bis_SR_register(LPM4_bits)         /* Enter Low Power Mode 4 */
106
#define LPM4_EXIT    _bic_SR_register_on_exit(LPM4_bits) /* Exit Low Power Mode 4 */
107
#endif /* End #defines for C */
108
 
109
/************************************************************
110
* PERIPHERAL FILE MAP
111
************************************************************/
112
 
113
/************************************************************
114
* SPECIAL FUNCTION REGISTER ADDRESSES + CONTROL BITS
115
************************************************************/
116
 
117
SFR_8BIT(IE1);                                /* Interrupt Enable 1 */
118
#define WDTIE                  (0x01)         /* Watchdog Interrupt Enable */
119
#define OFIE                   (0x02)         /* Osc. Fault  Interrupt Enable */
120
#define NMIIE                  (0x10)         /* NMI Interrupt Enable */
121
#define ACCVIE                 (0x20)         /* Flash Access Violation Interrupt Enable */
122
 
123
SFR_8BIT(IFG1);                               /* Interrupt Flag 1 */
124
#define WDTIFG                 (0x01)         /* Watchdog Interrupt Flag */
125
#define OFIFG                  (0x02)         /* Osc. Fault Interrupt Flag */
126
#define PORIFG                 (0x04)         /* Power On Interrupt Flag */
127
#define RSTIFG                 (0x08)         /* Reset Interrupt Flag */
128
#define NMIIFG                 (0x10)         /* NMI Interrupt Flag */
129
 
130
/************************************************************
131
* ADC10
132
************************************************************/
133
#define __MSP430_HAS_ADC10__                  /* Definition to show that Module is available */
134
 
135
SFR_8BIT(ADC10DTC0);                          /* ADC10 Data Transfer Control 0 */
136
SFR_8BIT(ADC10DTC1);                          /* ADC10 Data Transfer Control 1 */
137
SFR_8BIT(ADC10AE0);                           /* ADC10 Analog Enable 0 */
138
 
139
SFR_16BIT(ADC10CTL0);                         /* ADC10 Control 0 */
140
SFR_16BIT(ADC10CTL1);                         /* ADC10 Control 1 */
141
SFR_16BIT(ADC10MEM);                          /* ADC10 Memory */
142
SFR_16BIT(ADC10SA);                           /* ADC10 Data Transfer Start Address */
143
 
144
/* ADC10CTL0 */
145
#define ADC10SC                (0x001)        /* ADC10 Start Conversion */
146
#define ENC                    (0x002)        /* ADC10 Enable Conversion */
147
#define ADC10IFG               (0x004)        /* ADC10 Interrupt Flag */
148
#define ADC10IE                (0x008)        /* ADC10 Interrupt Enalbe */
149
#define ADC10ON                (0x010)        /* ADC10 On/Enable */
150
#define REFON                  (0x020)        /* ADC10 Reference on */
151
#define REF2_5V                (0x040)        /* ADC10 Ref 0:1.5V / 1:2.5V */
152
#define MSC                    (0x080)        /* ADC10 Multiple SampleConversion */
153
#define REFBURST               (0x100)        /* ADC10 Reference Burst Mode */
154
#define REFOUT                 (0x200)        /* ADC10 Enalbe output of Ref. */
155
#define ADC10SR                (0x400)        /* ADC10 Sampling Rate 0:200ksps / 1:50ksps */
156
#define ADC10SHT0              (0x800)        /* ADC10 Sample Hold Select Bit: 0 */
157
#define ADC10SHT1              (0x1000)       /* ADC10 Sample Hold Select Bit: 1 */
158
#define SREF0                  (0x2000)       /* ADC10 Reference Select Bit: 0 */
159
#define SREF1                  (0x4000)       /* ADC10 Reference Select Bit: 1 */
160
#define SREF2                  (0x8000)       /* ADC10 Reference Select Bit: 2 */
161
#define ADC10SHT_0             (0*0x800u)     /* 4 x ADC10CLKs */
162
#define ADC10SHT_1             (1*0x800u)     /* 8 x ADC10CLKs */
163
#define ADC10SHT_2             (2*0x800u)     /* 16 x ADC10CLKs */
164
#define ADC10SHT_3             (3*0x800u)     /* 64 x ADC10CLKs */
165
 
166
#define SREF_0                 (0*0x2000u)    /* VR+ = AVCC and VR- = AVSS */
167
#define SREF_1                 (1*0x2000u)    /* VR+ = VREF+ and VR- = AVSS */
168
#define SREF_2                 (2*0x2000u)    /* VR+ = VEREF+ and VR- = AVSS */
169
#define SREF_3                 (3*0x2000u)    /* VR+ = VEREF+ and VR- = AVSS */
170
#define SREF_4                 (4*0x2000u)    /* VR+ = AVCC and VR- = VREF-/VEREF- */
171
#define SREF_5                 (5*0x2000u)    /* VR+ = VREF+ and VR- = VREF-/VEREF- */
172
#define SREF_6                 (6*0x2000u)    /* VR+ = VEREF+ and VR- = VREF-/VEREF- */
173
#define SREF_7                 (7*0x2000u)    /* VR+ = VEREF+ and VR- = VREF-/VEREF- */
174
 
175
/* ADC10CTL1 */
176
#define ADC10BUSY              (0x0001)       /* ADC10 BUSY */
177
#define CONSEQ0                (0x0002)       /* ADC10 Conversion Sequence Select 0 */
178
#define CONSEQ1                (0x0004)       /* ADC10 Conversion Sequence Select 1 */
179
#define ADC10SSEL0             (0x0008)       /* ADC10 Clock Source Select Bit: 0 */
180
#define ADC10SSEL1             (0x0010)       /* ADC10 Clock Source Select Bit: 1 */
181
#define ADC10DIV0              (0x0020)       /* ADC10 Clock Divider Select Bit: 0 */
182
#define ADC10DIV1              (0x0040)       /* ADC10 Clock Divider Select Bit: 1 */
183
#define ADC10DIV2              (0x0080)       /* ADC10 Clock Divider Select Bit: 2 */
184
#define ISSH                   (0x0100)       /* ADC10 Invert Sample Hold Signal */
185
#define ADC10DF                (0x0200)       /* ADC10 Data Format 0:binary 1:2's complement */
186
#define SHS0                   (0x0400)       /* ADC10 Sample/Hold Source Bit: 0 */
187
#define SHS1                   (0x0800)       /* ADC10 Sample/Hold Source Bit: 1 */
188
#define INCH0                  (0x1000)       /* ADC10 Input Channel Select Bit: 0 */
189
#define INCH1                  (0x2000)       /* ADC10 Input Channel Select Bit: 1 */
190
#define INCH2                  (0x4000)       /* ADC10 Input Channel Select Bit: 2 */
191
#define INCH3                  (0x8000)       /* ADC10 Input Channel Select Bit: 3 */
192
 
193
#define CONSEQ_0               (0*2u)         /* Single channel single conversion */
194
#define CONSEQ_1               (1*2u)         /* Sequence of channels */
195
#define CONSEQ_2               (2*2u)         /* Repeat single channel */
196
#define CONSEQ_3               (3*2u)         /* Repeat sequence of channels */
197
 
198
#define ADC10SSEL_0            (0*8u)         /* ADC10OSC */
199
#define ADC10SSEL_1            (1*8u)         /* ACLK */
200
#define ADC10SSEL_2            (2*8u)         /* MCLK */
201
#define ADC10SSEL_3            (3*8u)         /* SMCLK */
202
 
203
#define ADC10DIV_0             (0*0x20u)      /* ADC10 Clock Divider Select 0 */
204
#define ADC10DIV_1             (1*0x20u)      /* ADC10 Clock Divider Select 1 */
205
#define ADC10DIV_2             (2*0x20u)      /* ADC10 Clock Divider Select 2 */
206
#define ADC10DIV_3             (3*0x20u)      /* ADC10 Clock Divider Select 3 */
207
#define ADC10DIV_4             (4*0x20u)      /* ADC10 Clock Divider Select 4 */
208
#define ADC10DIV_5             (5*0x20u)      /* ADC10 Clock Divider Select 5 */
209
#define ADC10DIV_6             (6*0x20u)      /* ADC10 Clock Divider Select 6 */
210
#define ADC10DIV_7             (7*0x20u)      /* ADC10 Clock Divider Select 7 */
211
 
212
#define SHS_0                  (0*0x400u)     /* ADC10SC */
213
#define SHS_1                  (1*0x400u)     /* TA3 OUT1 */
214
#define SHS_2                  (2*0x400u)     /* TA3 OUT0 */
215
#define SHS_3                  (3*0x400u)     /* TA3 OUT2 */
216
 
217
#define INCH_0                 (0*0x1000u)    /* Selects Channel 0 */
218
#define INCH_1                 (1*0x1000u)    /* Selects Channel 1 */
219
#define INCH_2                 (2*0x1000u)    /* Selects Channel 2 */
220
#define INCH_3                 (3*0x1000u)    /* Selects Channel 3 */
221
#define INCH_4                 (4*0x1000u)    /* Selects Channel 4 */
222
#define INCH_5                 (5*0x1000u)    /* Selects Channel 5 */
223
#define INCH_6                 (6*0x1000u)    /* Selects Channel 6 */
224
#define INCH_7                 (7*0x1000u)    /* Selects Channel 7 */
225
#define INCH_8                 (8*0x1000u)    /* Selects Channel 8 */
226
#define INCH_9                 (9*0x1000u)    /* Selects Channel 9 */
227
#define INCH_10                (10*0x1000u)   /* Selects Channel 10 */
228
#define INCH_11                (11*0x1000u)   /* Selects Channel 11 */
229
#define INCH_12                (12*0x1000u)   /* Selects Channel 12 */
230
#define INCH_13                (13*0x1000u)   /* Selects Channel 13 */
231
#define INCH_14                (14*0x1000u)   /* Selects Channel 14 */
232
#define INCH_15                (15*0x1000u)   /* Selects Channel 15 */
233
 
234
/* ADC10DTC0 */
235
#define ADC10FETCH             (0x001)        /* This bit should normally be reset */
236
#define ADC10B1                (0x002)        /* ADC10 block one */
237
#define ADC10CT                (0x004)        /* ADC10 continuous transfer */
238
#define ADC10TB                (0x008)        /* ADC10 two-block mode */
239
#define ADC10DISABLE           (0x000)        /* ADC10DTC1 */
240
 
241
/************************************************************
242
* Basic Clock Module
243
************************************************************/
244
#define __MSP430_HAS_BC2__                    /* Definition to show that Module is available */
245
 
246
SFR_8BIT(DCOCTL);                             /* DCO Clock Frequency Control */
247
SFR_8BIT(BCSCTL1);                            /* Basic Clock System Control 1 */
248
SFR_8BIT(BCSCTL2);                            /* Basic Clock System Control 2 */
249
SFR_8BIT(BCSCTL3);                            /* Basic Clock System Control 3 */
250
 
251
#define MOD0                   (0x01)         /* Modulation Bit 0 */
252
#define MOD1                   (0x02)         /* Modulation Bit 1 */
253
#define MOD2                   (0x04)         /* Modulation Bit 2 */
254
#define MOD3                   (0x08)         /* Modulation Bit 3 */
255
#define MOD4                   (0x10)         /* Modulation Bit 4 */
256
#define DCO0                   (0x20)         /* DCO Select Bit 0 */
257
#define DCO1                   (0x40)         /* DCO Select Bit 1 */
258
#define DCO2                   (0x80)         /* DCO Select Bit 2 */
259
 
260
#define RSEL0                  (0x01)         /* Range Select Bit 0 */
261
#define RSEL1                  (0x02)         /* Range Select Bit 1 */
262
#define RSEL2                  (0x04)         /* Range Select Bit 2 */
263
#define RSEL3                  (0x08)         /* Range Select Bit 3 */
264
#define DIVA0                  (0x10)         /* ACLK Divider 0 */
265
#define DIVA1                  (0x20)         /* ACLK Divider 1 */
266
#define XTS                    (0x40)         /* LFXTCLK 0:Low Freq. / 1: High Freq. */
267
#define XT2OFF                 (0x80)         /* Enable XT2CLK */
268
 
269
#define DIVA_0                 (0x00)         /* ACLK Divider 0: /1 */
270
#define DIVA_1                 (0x10)         /* ACLK Divider 1: /2 */
271
#define DIVA_2                 (0x20)         /* ACLK Divider 2: /4 */
272
#define DIVA_3                 (0x30)         /* ACLK Divider 3: /8 */
273
 
274
#define DIVS0                  (0x02)         /* SMCLK Divider 0 */
275
#define DIVS1                  (0x04)         /* SMCLK Divider 1 */
276
#define SELS                   (0x08)         /* SMCLK Source Select 0:DCOCLK / 1:XT2CLK/LFXTCLK */
277
#define DIVM0                  (0x10)         /* MCLK Divider 0 */
278
#define DIVM1                  (0x20)         /* MCLK Divider 1 */
279
#define SELM0                  (0x40)         /* MCLK Source Select 0 */
280
#define SELM1                  (0x80)         /* MCLK Source Select 1 */
281
 
282
#define DIVS_0                 (0x00)         /* SMCLK Divider 0: /1 */
283
#define DIVS_1                 (0x02)         /* SMCLK Divider 1: /2 */
284
#define DIVS_2                 (0x04)         /* SMCLK Divider 2: /4 */
285
#define DIVS_3                 (0x06)         /* SMCLK Divider 3: /8 */
286
 
287
#define DIVM_0                 (0x00)         /* MCLK Divider 0: /1 */
288
#define DIVM_1                 (0x10)         /* MCLK Divider 1: /2 */
289
#define DIVM_2                 (0x20)         /* MCLK Divider 2: /4 */
290
#define DIVM_3                 (0x30)         /* MCLK Divider 3: /8 */
291
 
292
#define SELM_0                 (0x00)         /* MCLK Source Select 0: DCOCLK */
293
#define SELM_1                 (0x40)         /* MCLK Source Select 1: DCOCLK */
294
#define SELM_2                 (0x80)         /* MCLK Source Select 2: XT2CLK/LFXTCLK */
295
#define SELM_3                 (0xC0)         /* MCLK Source Select 3: LFXTCLK */
296
 
297
#define LFXT1OF                (0x01)         /* Low/high Frequency Oscillator Fault Flag */
298
#define XT2OF                  (0x02)         /* High frequency oscillator 2 fault flag */
299
#define XCAP0                  (0x04)         /* XIN/XOUT Cap 0 */
300
#define XCAP1                  (0x08)         /* XIN/XOUT Cap 1 */
301
#define LFXT1S0                (0x10)         /* Mode 0 for LFXT1 (XTS = 0) */
302
#define LFXT1S1                (0x20)         /* Mode 1 for LFXT1 (XTS = 0) */
303
#define XT2S0                  (0x40)         /* Mode 0 for XT2 */
304
#define XT2S1                  (0x80)         /* Mode 1 for XT2 */
305
 
306
#define XCAP_0                 (0x00)         /* XIN/XOUT Cap : 0 pF */
307
#define XCAP_1                 (0x04)         /* XIN/XOUT Cap : 6 pF */
308
#define XCAP_2                 (0x08)         /* XIN/XOUT Cap : 10 pF */
309
#define XCAP_3                 (0x0C)         /* XIN/XOUT Cap : 12.5 pF */
310
 
311
#define LFXT1S_0               (0x00)         /* Mode 0 for LFXT1 : Normal operation */
312
#define LFXT1S_1               (0x10)         /* Mode 1 for LFXT1 : Reserved */
313
#define LFXT1S_2               (0x20)         /* Mode 2 for LFXT1 : VLO */
314
#define LFXT1S_3               (0x30)         /* Mode 3 for LFXT1 : Digital input signal */
315
 
316
#define XT2S_0                 (0x00)         /* Mode 0 for XT2 : 0.4 - 1 MHz */
317
#define XT2S_1                 (0x40)         /* Mode 1 for XT2 : 1 - 4 MHz */
318
#define XT2S_2                 (0x80)         /* Mode 2 for XT2 : 2 - 16 MHz */
319
#define XT2S_3                 (0xC0)         /* Mode 3 for XT2 : Digital input signal */
320
 
321
/*************************************************************
322
* Flash Memory
323
*************************************************************/
324
#define __MSP430_HAS_FLASH2__                 /* Definition to show that Module is available */
325
 
326
SFR_16BIT(FCTL1);                             /* FLASH Control 1 */
327
SFR_16BIT(FCTL2);                             /* FLASH Control 2 */
328
SFR_16BIT(FCTL3);                             /* FLASH Control 3 */
329
 
330
#define FRKEY                  (0x9600)       /* Flash key returned by read */
331
#define FWKEY                  (0xA500)       /* Flash key for write */
332
#define FXKEY                  (0x3300)       /* for use with XOR instruction */
333
 
334
#define ERASE                  (0x0002)       /* Enable bit for Flash segment erase */
335
#define MERAS                  (0x0004)       /* Enable bit for Flash mass erase */
336
#define WRT                    (0x0040)       /* Enable bit for Flash write */
337
#define BLKWRT                 (0x0080)       /* Enable bit for Flash segment write */
338
#define SEGWRT                 (0x0080)       /* old definition */ /* Enable bit for Flash segment write */
339
 
340
#define FN0                    (0x0001)       /* Divide Flash clock by 1 to 64 using FN0 to FN5 according to: */
341
#define FN1                    (0x0002)       /*  32*FN5 + 16*FN4 + 8*FN3 + 4*FN2 + 2*FN1 + FN0 + 1 */
342
#ifndef FN2
343
#define FN2                    (0x0004)
344
#endif
345
#ifndef FN3
346
#define FN3                    (0x0008)
347
#endif
348
#ifndef FN4
349
#define FN4                    (0x0010)
350
#endif
351
#define FN5                    (0x0020)
352
#define FSSEL0                 (0x0040)       /* Flash clock select 0 */        /* to distinguish from USART SSELx */
353
#define FSSEL1                 (0x0080)       /* Flash clock select 1 */
354
 
355
#define FSSEL_0                (0x0000)       /* Flash clock select: 0 - ACLK */
356
#define FSSEL_1                (0x0040)       /* Flash clock select: 1 - MCLK */
357
#define FSSEL_2                (0x0080)       /* Flash clock select: 2 - SMCLK */
358
#define FSSEL_3                (0x00C0)       /* Flash clock select: 3 - SMCLK */
359
 
360
#define BUSY                   (0x0001)       /* Flash busy: 1 */
361
#define KEYV                   (0x0002)       /* Flash Key violation flag */
362
#define ACCVIFG                (0x0004)       /* Flash Access violation flag */
363
#define WAIT                   (0x0008)       /* Wait flag for segment write */
364
#define LOCK                   (0x0010)       /* Lock bit: 1 - Flash is locked (read only) */
365
#define EMEX                   (0x0020)       /* Flash Emergency Exit */
366
#define LOCKA                  (0x0040)       /* Segment A Lock bit: read = 1 - Segment is locked (read only) */
367
#define FAIL                   (0x0080)       /* Last Program or Erase failed */
368
 
369
/************************************************************
370
* DIGITAL I/O Port1/2 Pull up / Pull down Resistors
371
************************************************************/
372
#define __MSP430_HAS_PORT1_R__                /* Definition to show that Module is available */
373
#define __MSP430_HAS_PORT2_R__                /* Definition to show that Module is available */
374
 
375
SFR_8BIT(P1IN);                               /* Port 1 Input */
376
SFR_8BIT(P1OUT);                              /* Port 1 Output */
377
SFR_8BIT(P1DIR);                              /* Port 1 Direction */
378
SFR_8BIT(P1IFG);                              /* Port 1 Interrupt Flag */
379
SFR_8BIT(P1IES);                              /* Port 1 Interrupt Edge Select */
380
SFR_8BIT(P1IE);                               /* Port 1 Interrupt Enable */
381
SFR_8BIT(P1SEL);                              /* Port 1 Selection */
382
SFR_8BIT(P1REN);                              /* Port 1 Resistor Enable */
383
 
384
SFR_8BIT(P2IN);                               /* Port 2 Input */
385
SFR_8BIT(P2OUT);                              /* Port 2 Output */
386
SFR_8BIT(P2DIR);                              /* Port 2 Direction */
387
SFR_8BIT(P2IFG);                              /* Port 2 Interrupt Flag */
388
SFR_8BIT(P2IES);                              /* Port 2 Interrupt Edge Select */
389
SFR_8BIT(P2IE);                               /* Port 2 Interrupt Enable */
390
SFR_8BIT(P2SEL);                              /* Port 2 Selection */
391
SFR_8BIT(P2REN);                              /* Port 2 Resistor Enable */
392
 
393
/************************************************************
394
* Timer A2
395
************************************************************/
396
#define __MSP430_HAS_TA2__                    /* Definition to show that Module is available */
397
 
398
SFR_16BIT(TAIV);                              /* Timer A Interrupt Vector Word */
399
SFR_16BIT(TACTL);                             /* Timer A Control */
400
SFR_16BIT(TACCTL0);                           /* Timer A Capture/Compare Control 0 */
401
SFR_16BIT(TACCTL1);                           /* Timer A Capture/Compare Control 1 */
402
SFR_16BIT(TAR);                               /* Timer A Counter Register */
403
SFR_16BIT(TACCR0);                            /* Timer A Capture/Compare 0 */
404
SFR_16BIT(TACCR1);                            /* Timer A Capture/Compare 1 */
405
 
406
/* Alternate register names */
407
#define CCTL0                  TACCTL0        /* Timer A Capture/Compare Control 0 */
408
#define CCTL1                  TACCTL1        /* Timer A Capture/Compare Control 1 */
409
#define CCR0                   TACCR0         /* Timer A Capture/Compare 0 */
410
#define CCR1                   TACCR1         /* Timer A Capture/Compare 1 */
411
#define CCTL0_                 TACCTL0_       /* Timer A Capture/Compare Control 0 */
412
#define CCTL1_                 TACCTL1_       /* Timer A Capture/Compare Control 1 */
413
#define CCR0_                  TACCR0_        /* Timer A Capture/Compare 0 */
414
#define CCR1_                  TACCR1_        /* Timer A Capture/Compare 1 */
415
/* Alternate register names - 5xx style */
416
#define TA0IV                  TAIV           /* Timer A Interrupt Vector Word */
417
#define TA0CTL                 TACTL          /* Timer A Control */
418
#define TA0CCTL0               TACCTL0        /* Timer A Capture/Compare Control 0 */
419
#define TA0CCTL1               TACCTL1        /* Timer A Capture/Compare Control 1 */
420
#define TA0R                   TAR            /* Timer A Counter Register */
421
#define TA0CCR0                TACCR0         /* Timer A Capture/Compare 0 */
422
#define TA0CCR1                TACCR1         /* Timer A Capture/Compare 1 */
423
#define TA0IV_                 TAIV_          /* Timer A Interrupt Vector Word */
424
#define TA0CTL_                TACTL_         /* Timer A Control */
425
#define TA0CCTL0_              TACCTL0_       /* Timer A Capture/Compare Control 0 */
426
#define TA0CCTL1_              TACCTL1_       /* Timer A Capture/Compare Control 1 */
427
#define TA0R_                  TAR_           /* Timer A Counter Register */
428
#define TA0CCR0_               TACCR0_        /* Timer A Capture/Compare 0 */
429
#define TA0CCR1_               TACCR1_        /* Timer A Capture/Compare 1 */
430
 
431
#define TASSEL1                (0x0200)       /* Timer A clock source select 0 */
432
#define TASSEL0                (0x0100)       /* Timer A clock source select 1 */
433
#define ID1                    (0x0080)       /* Timer A clock input divider 1 */
434
#define ID0                    (0x0040)       /* Timer A clock input divider 0 */
435
#define MC1                    (0x0020)       /* Timer A mode control 1 */
436
#define MC0                    (0x0010)       /* Timer A mode control 0 */
437
#define TACLR                  (0x0004)       /* Timer A counter clear */
438
#define TAIE                   (0x0002)       /* Timer A counter interrupt enable */
439
#define TAIFG                  (0x0001)       /* Timer A counter interrupt flag */
440
 
441
#define MC_0                   (0*0x10u)      /* Timer A mode control: 0 - Stop */
442
#define MC_1                   (1*0x10u)      /* Timer A mode control: 1 - Up to CCR0 */
443
#define MC_2                   (2*0x10u)      /* Timer A mode control: 2 - Continous up */
444
#define MC_3                   (3*0x10u)      /* Timer A mode control: 3 - Up/Down */
445
#define ID_0                   (0*0x40u)      /* Timer A input divider: 0 - /1 */
446
#define ID_1                   (1*0x40u)      /* Timer A input divider: 1 - /2 */
447
#define ID_2                   (2*0x40u)      /* Timer A input divider: 2 - /4 */
448
#define ID_3                   (3*0x40u)      /* Timer A input divider: 3 - /8 */
449
#define TASSEL_0               (0*0x100u)     /* Timer A clock source select: 0 - TACLK */
450
#define TASSEL_1               (1*0x100u)     /* Timer A clock source select: 1 - ACLK  */
451
#define TASSEL_2               (2*0x100u)     /* Timer A clock source select: 2 - SMCLK */
452
#define TASSEL_3               (3*0x100u)     /* Timer A clock source select: 3 - INCLK */
453
 
454
#define CM1                    (0x8000)       /* Capture mode 1 */
455
#define CM0                    (0x4000)       /* Capture mode 0 */
456
#define CCIS1                  (0x2000)       /* Capture input select 1 */
457
#define CCIS0                  (0x1000)       /* Capture input select 0 */
458
#define SCS                    (0x0800)       /* Capture sychronize */
459
#define SCCI                   (0x0400)       /* Latched capture signal (read) */
460
#define CAP                    (0x0100)       /* Capture mode: 1 /Compare mode : 0 */
461
#define OUTMOD2                (0x0080)       /* Output mode 2 */
462
#define OUTMOD1                (0x0040)       /* Output mode 1 */
463
#define OUTMOD0                (0x0020)       /* Output mode 0 */
464
#define CCIE                   (0x0010)       /* Capture/compare interrupt enable */
465
#define CCI                    (0x0008)       /* Capture input signal (read) */
466
#define OUT                    (0x0004)       /* PWM Output signal if output mode 0 */
467
#define COV                    (0x0002)       /* Capture/compare overflow flag */
468
#define CCIFG                  (0x0001)       /* Capture/compare interrupt flag */
469
 
470
#define OUTMOD_0               (0*0x20u)      /* PWM output mode: 0 - output only */
471
#define OUTMOD_1               (1*0x20u)      /* PWM output mode: 1 - set */
472
#define OUTMOD_2               (2*0x20u)      /* PWM output mode: 2 - PWM toggle/reset */
473
#define OUTMOD_3               (3*0x20u)      /* PWM output mode: 3 - PWM set/reset */
474
#define OUTMOD_4               (4*0x20u)      /* PWM output mode: 4 - toggle */
475
#define OUTMOD_5               (5*0x20u)      /* PWM output mode: 5 - Reset */
476
#define OUTMOD_6               (6*0x20u)      /* PWM output mode: 6 - PWM toggle/set */
477
#define OUTMOD_7               (7*0x20u)      /* PWM output mode: 7 - PWM reset/set */
478
#define CCIS_0                 (0*0x1000u)    /* Capture input select: 0 - CCIxA */
479
#define CCIS_1                 (1*0x1000u)    /* Capture input select: 1 - CCIxB */
480
#define CCIS_2                 (2*0x1000u)    /* Capture input select: 2 - GND */
481
#define CCIS_3                 (3*0x1000u)    /* Capture input select: 3 - Vcc */
482
#define CM_0                   (0*0x4000u)    /* Capture mode: 0 - disabled */
483
#define CM_1                   (1*0x4000u)    /* Capture mode: 1 - pos. edge */
484
#define CM_2                   (2*0x4000u)    /* Capture mode: 1 - neg. edge */
485
#define CM_3                   (3*0x4000u)    /* Capture mode: 1 - both edges */
486
 
487
/* TA2IV Definitions */
488
#define TAIV_NONE              (0x0000)       /* No Interrupt pending */
489
#define TAIV_TACCR1            (0x0002)       /* TACCR1_CCIFG */
490
#define TAIV_2                 (0x0004)       /* Reserved */
491
#define TAIV_6                 (0x0006)       /* Reserved */
492
#define TAIV_8                 (0x0008)       /* Reserved */
493
#define TAIV_TAIFG             (0x000A)       /* TAIFG */
494
 
495
/************************************************************
496
* USI
497
************************************************************/
498
#define __MSP430_HAS_USI__                    /* Definition to show that Module is available */
499
 
500
SFR_8BIT(USICTL0);                            /* USI  Control Register 0 */
501
SFR_8BIT(USICTL1);                            /* USI  Control Register 1 */
502
SFR_8BIT(USICKCTL);                           /* USI  Clock Control Register */
503
SFR_8BIT(USICNT);                             /* USI  Bit Counter Register */
504
SFR_8BIT(USISRL);                             /* USI  Low Byte Shift Register */
505
SFR_8BIT(USISRH);                             /* USI  High Byte Shift Register */
506
SFR_16BIT(USICTL);                            /* USI  Control Register */
507
SFR_16BIT(USICCTL);                           /* USI  Clock and Counter Control Register */
508
SFR_16BIT(USISR);                             /* USI  Shift Register */
509
 
510
#define USIPE7                 (0x80)         /* USI  Port Enable Px.7 */
511
#define USIPE6                 (0x40)         /* USI  Port Enable Px.6 */
512
#define USIPE5                 (0x20)         /* USI  Port Enable Px.5 */
513
#define USILSB                 (0x10)         /* USI  LSB first  1:LSB / 0:MSB */
514
#define USIMST                 (0x08)         /* USI  Master Select  0:Slave / 1:Master */
515
#define USIGE                  (0x04)         /* USI  General Output Enable Latch */
516
#define USIOE                  (0x02)         /* USI  Output Enable */
517
#define USISWRST               (0x01)         /* USI  Software Reset */
518
 
519
#define USICKPH                (0x80)         /* USI  Sync. Mode: Clock Phase */
520
#define USII2C                 (0x40)         /* USI  I2C Mode */
521
#define USISTTIE               (0x20)         /* USI  START Condition interrupt enable */
522
#define USIIE                  (0x10)         /* USI  Counter Interrupt enable */
523
#define USIAL                  (0x08)         /* USI  Arbitration Lost */
524
#define USISTP                 (0x04)         /* USI  STOP Condition received */
525
#define USISTTIFG              (0x02)         /* USI  START Condition interrupt Flag */
526
#define USIIFG                 (0x01)         /* USI  Counter Interrupt Flag */
527
 
528
#define USIDIV2                (0x80)         /* USI  Clock Divider 2 */
529
#define USIDIV1                (0x40)         /* USI  Clock Divider 1 */
530
#define USIDIV0                (0x20)         /* USI  Clock Divider 0 */
531
#define USISSEL2               (0x10)         /* USI  Clock Source Select 2 */
532
#define USISSEL1               (0x08)         /* USI  Clock Source Select 1 */
533
#define USISSEL0               (0x04)         /* USI  Clock Source Select 0 */
534
#define USICKPL                (0x02)         /* USI  Clock Polarity 0:Inactive=Low / 1:Inactive=High */
535
#define USISWCLK               (0x01)         /* USI  Software Clock */
536
 
537
#define USIDIV_0               (0x00)         /* USI  Clock Divider: 0 */
538
#define USIDIV_1               (0x20)         /* USI  Clock Divider: 1 */
539
#define USIDIV_2               (0x40)         /* USI  Clock Divider: 2 */
540
#define USIDIV_3               (0x60)         /* USI  Clock Divider: 3 */
541
#define USIDIV_4               (0x80)         /* USI  Clock Divider: 4 */
542
#define USIDIV_5               (0xA0)         /* USI  Clock Divider: 5 */
543
#define USIDIV_6               (0xC0)         /* USI  Clock Divider: 6 */
544
#define USIDIV_7               (0xE0)         /* USI  Clock Divider: 7 */
545
 
546
#define USISSEL_0              (0x00)         /* USI  Clock Source: 0 */
547
#define USISSEL_1              (0x04)         /* USI  Clock Source: 1 */
548
#define USISSEL_2              (0x08)         /* USI  Clock Source: 2 */
549
#define USISSEL_3              (0x0C)         /* USI  Clock Source: 3 */
550
#define USISSEL_4              (0x10)         /* USI  Clock Source: 4 */
551
#define USISSEL_5              (0x14)         /* USI  Clock Source: 5 */
552
#define USISSEL_6              (0x18)         /* USI  Clock Source: 6 */
553
#define USISSEL_7              (0x1C)         /* USI  Clock Source: 7 */
554
 
555
#define USISCLREL              (0x80)         /* USI  SCL Released */
556
#define USI16B                 (0x40)         /* USI  16 Bit Shift Register Enable */
557
#define USIIFGCC               (0x20)         /* USI  Interrupt Flag Clear Control */
558
#define USICNT4                (0x10)         /* USI  Bit Count 4 */
559
#define USICNT3                (0x08)         /* USI  Bit Count 3 */
560
#define USICNT2                (0x04)         /* USI  Bit Count 2 */
561
#define USICNT1                (0x02)         /* USI  Bit Count 1 */
562
#define USICNT0                (0x01)         /* USI  Bit Count 0 */
563
/************************************************************
564
* WATCHDOG TIMER
565
************************************************************/
566
#define __MSP430_HAS_WDT__                    /* Definition to show that Module is available */
567
 
568
SFR_16BIT(WDTCTL);                            /* Watchdog Timer Control */
569
/* The bit names have been prefixed with "WDT" */
570
#define WDTIS0                 (0x0001)
571
#define WDTIS1                 (0x0002)
572
#define WDTSSEL                (0x0004)
573
#define WDTCNTCL               (0x0008)
574
#define WDTTMSEL               (0x0010)
575
#define WDTNMI                 (0x0020)
576
#define WDTNMIES               (0x0040)
577
#define WDTHOLD                (0x0080)
578
 
579
#define WDTPW                  (0x5A00)
580
 
581
/* WDT-interval times [1ms] coded with Bits 0-2 */
582
/* WDT is clocked by fSMCLK (assumed 1MHz) */
583
#define WDT_MDLY_32         (WDTPW+WDTTMSEL+WDTCNTCL)                         /* 32ms interval (default) */
584
#define WDT_MDLY_8          (WDTPW+WDTTMSEL+WDTCNTCL+WDTIS0)                  /* 8ms     " */
585
#define WDT_MDLY_0_5        (WDTPW+WDTTMSEL+WDTCNTCL+WDTIS1)                  /* 0.5ms   " */
586
#define WDT_MDLY_0_064      (WDTPW+WDTTMSEL+WDTCNTCL+WDTIS1+WDTIS0)           /* 0.064ms " */
587
/* WDT is clocked by fACLK (assumed 32KHz) */
588
#define WDT_ADLY_1000       (WDTPW+WDTTMSEL+WDTCNTCL+WDTSSEL)                 /* 1000ms  " */
589
#define WDT_ADLY_250        (WDTPW+WDTTMSEL+WDTCNTCL+WDTSSEL+WDTIS0)          /* 250ms   " */
590
#define WDT_ADLY_16         (WDTPW+WDTTMSEL+WDTCNTCL+WDTSSEL+WDTIS1)          /* 16ms    " */
591
#define WDT_ADLY_1_9        (WDTPW+WDTTMSEL+WDTCNTCL+WDTSSEL+WDTIS1+WDTIS0)   /* 1.9ms   " */
592
/* Watchdog mode -> reset after expired time */
593
/* WDT is clocked by fSMCLK (assumed 1MHz) */
594
#define WDT_MRST_32         (WDTPW+WDTCNTCL)                                  /* 32ms interval (default) */
595
#define WDT_MRST_8          (WDTPW+WDTCNTCL+WDTIS0)                           /* 8ms     " */
596
#define WDT_MRST_0_5        (WDTPW+WDTCNTCL+WDTIS1)                           /* 0.5ms   " */
597
#define WDT_MRST_0_064      (WDTPW+WDTCNTCL+WDTIS1+WDTIS0)                    /* 0.064ms " */
598
/* WDT is clocked by fACLK (assumed 32KHz) */
599
#define WDT_ARST_1000       (WDTPW+WDTCNTCL+WDTSSEL)                          /* 1000ms  " */
600
#define WDT_ARST_250        (WDTPW+WDTCNTCL+WDTSSEL+WDTIS0)                   /* 250ms   " */
601
#define WDT_ARST_16         (WDTPW+WDTCNTCL+WDTSSEL+WDTIS1)                   /* 16ms    " */
602
#define WDT_ARST_1_9        (WDTPW+WDTCNTCL+WDTSSEL+WDTIS1+WDTIS0)            /* 1.9ms   " */
603
 
604
/* INTERRUPT CONTROL */
605
/* These two bits are defined in the Special Function Registers */
606
/* #define WDTIE               0x01 */
607
/* #define WDTIFG              0x01 */
608
 
609
/************************************************************
610
* Calibration Data in Info Mem
611
************************************************************/
612
 
613
#ifndef __DisableCalData
614
 
615
SFR_8BIT(CALDCO_16MHZ);                       /* DCOCTL  Calibration Data for 16MHz */
616
SFR_8BIT(CALBC1_16MHZ);                       /* BCSCTL1 Calibration Data for 16MHz */
617
SFR_8BIT(CALDCO_12MHZ);                       /* DCOCTL  Calibration Data for 12MHz */
618
SFR_8BIT(CALBC1_12MHZ);                       /* BCSCTL1 Calibration Data for 12MHz */
619
SFR_8BIT(CALDCO_8MHZ);                        /* DCOCTL  Calibration Data for 8MHz */
620
SFR_8BIT(CALBC1_8MHZ);                        /* BCSCTL1 Calibration Data for 8MHz */
621
SFR_8BIT(CALDCO_1MHZ);                        /* DCOCTL  Calibration Data for 1MHz */
622
SFR_8BIT(CALBC1_1MHZ);                        /* BCSCTL1 Calibration Data for 1MHz */
623
 
624
#endif /* #ifndef __DisableCalData */
625
 
626
/************************************************************
627
* Interrupt Vectors (offset from 0xFFE0)
628
************************************************************/
629
 
630
#define VECTOR_NAME(name)       name##_ptr
631
#define EMIT_PRAGMA(x)          _Pragma(#x)
632
#define CREATE_VECTOR(name)     void (* const VECTOR_NAME(name))(void) = &name
633
#define PLACE_VECTOR(vector,section) EMIT_PRAGMA(DATA_SECTION(vector,section))
634
#define ISR_VECTOR(func,offset) CREATE_VECTOR(func); \
635
                                PLACE_VECTOR(VECTOR_NAME(func), offset)
636
 
637
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
638
#define PORT1_VECTOR            ".int02"                    /* 0xFFE4 Port 1 */
639
#else
640
#define PORT1_VECTOR            (2 * 1u)                     /* 0xFFE4 Port 1 */
641
/*#define PORT1_ISR(func)         ISR_VECTOR(func, ".int02")  */ /* 0xFFE4 Port 1 */ /* CCE V2 Style */
642
#endif
643
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
644
#define PORT2_VECTOR            ".int03"                    /* 0xFFE6 Port 2 */
645
#else
646
#define PORT2_VECTOR            (3 * 1u)                     /* 0xFFE6 Port 2 */
647
/*#define PORT2_ISR(func)         ISR_VECTOR(func, ".int03")  */ /* 0xFFE6 Port 2 */ /* CCE V2 Style */
648
#endif
649
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
650
#define USI_VECTOR              ".int04"                    /* 0xFFE8 USI */
651
#else
652
#define USI_VECTOR              (4 * 1u)                     /* 0xFFE8 USI */
653
/*#define USI_ISR(func)           ISR_VECTOR(func, ".int04")  */ /* 0xFFE8 USI */ /* CCE V2 Style */
654
#endif
655
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
656
#define ADC10_VECTOR            ".int05"                    /* 0xFFEA ADC10 */
657
#else
658
#define ADC10_VECTOR            (5 * 1u)                     /* 0xFFEA ADC10 */
659
/*#define ADC10_ISR(func)         ISR_VECTOR(func, ".int05")  */ /* 0xFFEA ADC10 */ /* CCE V2 Style */
660
#endif
661
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
662
#define TIMERA1_VECTOR          ".int08"                    /* 0xFFF0 Timer A CC1, TA */
663
#else
664
#define TIMERA1_VECTOR          (8 * 1u)                     /* 0xFFF0 Timer A CC1, TA */
665
/*#define TIMERA1_ISR(func)       ISR_VECTOR(func, ".int08")  */ /* 0xFFF0 Timer A CC1, TA */ /* CCE V2 Style */
666
#endif
667
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
668
#define TIMERA0_VECTOR          ".int09"                    /* 0xFFF2 Timer A CC0 */
669
#else
670
#define TIMERA0_VECTOR          (9 * 1u)                     /* 0xFFF2 Timer A CC0 */
671
/*#define TIMERA0_ISR(func)       ISR_VECTOR(func, ".int09")  */ /* 0xFFF2 Timer A CC0 */ /* CCE V2 Style */
672
#endif
673
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
674
#define WDT_VECTOR              ".int10"                    /* 0xFFF4 Watchdog Timer */
675
#else
676
#define WDT_VECTOR              (10 * 1u)                    /* 0xFFF4 Watchdog Timer */
677
/*#define WDT_ISR(func)           ISR_VECTOR(func, ".int10")  */ /* 0xFFF4 Watchdog Timer */ /* CCE V2 Style */
678
#endif
679
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
680
#define NMI_VECTOR              ".int14"                    /* 0xFFFC Non-maskable */
681
#else
682
#define NMI_VECTOR              (14 * 1u)                    /* 0xFFFC Non-maskable */
683
/*#define NMI_ISR(func)           ISR_VECTOR(func, ".int14")  */ /* 0xFFFC Non-maskable */ /* CCE V2 Style */
684
#endif
685
#ifdef __ASM_HEADER__ /* Begin #defines for assembler */
686
#define RESET_VECTOR            ".reset"                    /* 0xFFFE Reset [Highest Priority] */
687
#else
688
#define RESET_VECTOR            (15 * 1u)                    /* 0xFFFE Reset [Highest Priority] */
689
/*#define RESET_ISR(func)         ISR_VECTOR(func, ".int15")  */ /* 0xFFFE Reset [Highest Priority] */ /* CCE V2 Style */
690
#endif
691
 
692
/************************************************************
693
* End of Modules
694
************************************************************/
695
 
696
#ifdef __cplusplus
697
}
698
#endif /* extern "C" */
699
 
700
#endif /* #ifndef __msp430x20x2 */
701