~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to include/avr/iom32c1.h

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2008-08-10 09:59:16 UTC
  • mfrom: (1.2.1 upstream) (8 intrepid)
  • mto: (4.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20080810095916-7ku06pjsfia3hz16
Added build-depends on texlive-extra-utils (closes: #493454)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2008 Atmel Corporation
 
2
   All rights reserved.
 
3
 
 
4
   Redistribution and use in source and binary forms, with or without
 
5
   modification, are permitted provided that the following conditions are met:
 
6
 
 
7
   * Redistributions of source code must retain the above copyright
 
8
     notice, this list of conditions and the following disclaimer.
 
9
 
 
10
   * Redistributions in binary form must reproduce the above copyright
 
11
     notice, this list of conditions and the following disclaimer in
 
12
     the documentation and/or other materials provided with the
 
13
     distribution.
 
14
 
 
15
   * Neither the name of the copyright holders nor the names of
 
16
     contributors may be used to endorse or promote products derived
 
17
     from this software without specific prior written permission.
 
18
 
 
19
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
20
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
21
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
22
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
23
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
24
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
25
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
26
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
27
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
28
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
29
  POSSIBILITY OF SUCH DAMAGE. 
 
30
*/
 
31
 
 
32
/* $Id: iom32c1.h,v 1.1.2.3 2008/04/28 17:06:22 arcanum Exp $ */
 
33
 
 
34
/* avr/iom32c1.h - definitions for ATmega32C1. */
 
35
 
 
36
/* This file should only be included from <avr/io.h>, never directly. */
 
37
 
 
38
#ifndef _AVR_IO_H_
 
39
#  error "Include <avr/io.h> instead of this file."
 
40
#endif
 
41
 
 
42
#ifndef _AVR_IOXXX_H_
 
43
#  define _AVR_IOXXX_H_ "iom32c1.h"
 
44
#else
 
45
#  error "Attempt to include more than one <avr/ioXXX.h> file."
 
46
#endif 
 
47
 
 
48
 
 
49
#ifndef _AVR_IOM32C1_H_
 
50
#define _AVR_IOM32C1_H_ 1
 
51
 
 
52
/* Registers and associated bit numbers */
 
53
 
 
54
#define PINB _SFR_IO8(0x03)
 
55
#define PINB0 0
 
56
#define PINB1 1
 
57
#define PINB2 2
 
58
#define PINB3 3
 
59
#define PINB4 4
 
60
#define PINB5 5
 
61
#define PINB6 6
 
62
#define PINB7 7
 
63
 
 
64
#define DDRB _SFR_IO8(0x04)
 
65
#define DDB0 0
 
66
#define DDB1 1
 
67
#define DDB2 2
 
68
#define DDB3 3
 
69
#define DDB4 4
 
70
#define DDB5 5
 
71
#define DDB6 6
 
72
#define DDB7 7
 
73
 
 
74
#define PORTB _SFR_IO8(0x05)
 
75
#define PORTB0 0
 
76
#define PORTB1 1
 
77
#define PORTB2 2
 
78
#define PORTB3 3
 
79
#define PORTB4 4
 
80
#define PORTB5 5
 
81
#define PORTB6 6
 
82
#define PORTB7 7
 
83
 
 
84
#define PINC _SFR_IO8(0x06)
 
85
#define PINC0 0
 
86
#define PINC1 1
 
87
#define PINC2 2
 
88
#define PINC3 3
 
89
#define PINC4 4
 
90
#define PINC5 5
 
91
#define PINC6 6
 
92
#define PINC7 7
 
93
 
 
94
#define DDRC _SFR_IO8(0x07)
 
95
#define DDC0 0
 
96
#define DDC1 1
 
97
#define DDC2 2
 
98
#define DDC3 3
 
99
#define DDC4 4
 
100
#define DDC5 5
 
101
#define DDC6 6
 
102
#define DDC7 7
 
103
 
 
104
#define PORTC _SFR_IO8(0x08)
 
105
#define PORTC0 0
 
106
#define PORTC1 1
 
107
#define PORTC2 2
 
108
#define PORTC3 3
 
109
#define PORTC4 4
 
110
#define PORTC5 5
 
111
#define PORTC6 6
 
112
#define PORTC7 7
 
113
 
 
114
#define PIND _SFR_IO8(0x09)
 
115
#define PIND0 0
 
116
#define PIND1 1
 
117
#define PIND2 2
 
118
#define PIND3 3
 
119
#define PIND4 4
 
120
#define PIND5 5
 
121
#define PIND6 6
 
122
#define PIND7 7
 
123
 
 
124
#define DDRD _SFR_IO8(0x0A)
 
125
#define DDD0 0
 
126
#define DDD1 1
 
127
#define DDD2 2
 
128
#define DDD3 3
 
129
#define DDD4 4
 
130
#define DDD5 5
 
131
#define DDD6 6
 
132
#define DDD7 7
 
133
 
 
134
#define PORTD _SFR_IO8(0x0B)
 
135
#define PORTD0 0
 
136
#define PORTD1 1
 
137
#define PORTD2 2
 
138
#define PORTD3 3
 
139
#define PORTD4 4
 
140
#define PORTD5 5
 
141
#define PORTD6 6
 
142
#define PORTD7 7
 
143
 
 
144
#define PINE _SFR_IO8(0x0C)
 
145
#define PINE0 0
 
146
#define PINE1 1
 
147
#define PINE2 2
 
148
 
 
149
#define DDRE _SFR_IO8(0x0D)
 
150
#define DDE0 0
 
151
#define DDE1 1
 
152
#define DDE2 2
 
153
 
 
154
#define PORTE _SFR_IO8(0x0E)
 
155
#define PORTE0 0
 
156
#define PORTE1 1
 
157
#define PORTE2 2
 
158
 
 
159
#define TIFR0 _SFR_IO8(0x15)
 
160
#define TOV0 0
 
161
#define OCF0A 1
 
162
#define OCF0B 2
 
163
 
 
164
#define TIFR1 _SFR_IO8(0x16)
 
165
#define TOV1 0
 
166
#define OCF1A 1
 
167
#define OCF1B 2
 
168
#define ICF1 5
 
169
 
 
170
#define GPIOR1 _SFR_IO8(0x19)
 
171
#define GPIOR10 0
 
172
#define GPIOR11 1
 
173
#define GPIOR12 2
 
174
#define GPIOR13 3
 
175
#define GPIOR14 4
 
176
#define GPIOR15 5
 
177
#define GPIOR16 6
 
178
#define GPIOR17 7
 
179
 
 
180
#define GPIOR2 _SFR_IO8(0x1A)
 
181
#define GPIOR20 0
 
182
#define GPIOR21 1
 
183
#define GPIOR22 2
 
184
#define GPIOR23 3
 
185
#define GPIOR24 4
 
186
#define GPIOR25 5
 
187
#define GPIOR26 6
 
188
#define GPIOR27 7
 
189
 
 
190
#define PCIFR _SFR_IO8(0x1B)
 
191
 
 
192
#define EIFR _SFR_IO8(0x1C)
 
193
#define INTF0 0
 
194
#define INTF1 1
 
195
#define INTF2 2
 
196
#define INTF3 3
 
197
 
 
198
#define EIMSK _SFR_IO8(0x1D)
 
199
#define INT0 0
 
200
#define INT1 1
 
201
#define INT2 2
 
202
#define INT3 3
 
203
 
 
204
#define GPIOR0 _SFR_IO8(0x1E)
 
205
#define GPIOR00 0
 
206
#define GPIOR01 1
 
207
#define GPIOR02 2
 
208
#define GPIOR03 3
 
209
#define GPIOR04 4
 
210
#define GPIOR05 5
 
211
#define GPIOR06 6
 
212
#define GPIOR07 7
 
213
 
 
214
#define EECR _SFR_IO8(0x1F)
 
215
#define EERE 0
 
216
#define EEPE 1
 
217
#define EEMPE 2
 
218
#define EERIE 3
 
219
#define EEPM0 4
 
220
#define EEPM1 5
 
221
 
 
222
#define EEDR _SFR_IO8(0x20)
 
223
#define EEDR0 0
 
224
#define EEDR1 1
 
225
#define EEDR2 2
 
226
#define EEDR3 3
 
227
#define EEDR4 4
 
228
#define EEDR5 5
 
229
#define EEDR6 6
 
230
#define EEDR7 7
 
231
 
 
232
#define EEAR _SFR_IO16(0x21)
 
233
 
 
234
#define EEARL _SFR_IO8(0x21)
 
235
#define EEAR0 0
 
236
#define EEAR1 1
 
237
#define EEAR2 2
 
238
#define EEAR3 3
 
239
#define EEAR4 4
 
240
#define EEAR5 5
 
241
#define EEAR6 6
 
242
#define EEAR7 7
 
243
 
 
244
#define EEARH _SFR_IO8(0x22)
 
245
#define EEAR8 0
 
246
#define EEAR9 1
 
247
 
 
248
#define GTCCR _SFR_IO8(0x23)
 
249
#define PSR10 0
 
250
#define PSRSYNC 0
 
251
#define ICPSEL1 6
 
252
#define TSM 7
 
253
 
 
254
#define TCCR0A _SFR_IO8(0x24)
 
255
#define WGM00 0
 
256
#define WGM01 1
 
257
#define COM0B0 4
 
258
#define COM0B1 5
 
259
#define COM0A0 6
 
260
#define COM0A1 7
 
261
 
 
262
#define TCCR0B _SFR_IO8(0x25)
 
263
#define CS00 0
 
264
#define CS01 1
 
265
#define CS02 2
 
266
#define WGM02 3
 
267
#define FOC0B 6
 
268
#define FOC0A 7
 
269
 
 
270
#define TCNT0 _SFR_IO8(0x26)
 
271
#define TCNT0_0 0
 
272
#define TCNT0_1 1
 
273
#define TCNT0_2 2
 
274
#define TCNT0_3 3
 
275
#define TCNT0_4 4
 
276
#define TCNT0_5 5
 
277
#define TCNT0_6 6
 
278
#define TCNT0_7 7
 
279
 
 
280
#define OCR0A _SFR_IO8(0x27)
 
281
#define OCR0A_0 0
 
282
#define OCR0A_1 1
 
283
#define OCR0A_2 2
 
284
#define OCR0A_3 3
 
285
#define OCR0A_4 4
 
286
#define OCR0A_5 5
 
287
#define OCR0A_6 6
 
288
#define OCR0A_7 7
 
289
 
 
290
#define OCR0B _SFR_IO8(0x28)
 
291
#define OCR0B_0 0
 
292
#define OCR0B_1 1
 
293
#define OCR0B_2 2
 
294
#define OCR0B_3 3
 
295
#define OCR0B_4 4
 
296
#define OCR0B_5 5
 
297
#define OCR0B_6 6
 
298
#define OCR0B_7 7
 
299
 
 
300
#define PLLCSR _SFR_IO8(0x29)
 
301
#define PLOCK 0
 
302
#define PLLE 1
 
303
#define PLLF 2
 
304
 
 
305
#define SPCR _SFR_IO8(0x2C)
 
306
#define SPR0 0
 
307
#define SPR1 1
 
308
#define CPHA 2
 
309
#define CPOL 3
 
310
#define MSTR 4
 
311
#define DORD 5
 
312
#define SPE 6
 
313
#define SPIE 7
 
314
 
 
315
#define SPSR _SFR_IO8(0x2D)
 
316
#define SPI2X 0
 
317
#define WCOL 6
 
318
#define SPIF 7
 
319
 
 
320
#define SPDR _SFR_IO8(0x2E)
 
321
#define SPDR0 0
 
322
#define SPDR1 1
 
323
#define SPDR2 2
 
324
#define SPDR3 3
 
325
#define SPDR4 4
 
326
#define SPDR5 5
 
327
#define SPDR6 6
 
328
#define SPDR7 7
 
329
 
 
330
#define ACSR _SFR_IO8(0x30)
 
331
#define AC0O 0
 
332
#define AC1O 1
 
333
#define AC2O 2
 
334
#define AC3O 3
 
335
#define AC0IF 4
 
336
#define AC1IF 5
 
337
#define AC2IF 6
 
338
#define AC3IF 7
 
339
 
 
340
#define DWDR _SFR_IO8(0x31)
 
341
 
 
342
#define SMCR _SFR_IO8(0x33)
 
343
#define SE 0
 
344
#define SM0 1
 
345
#define SM1 2
 
346
#define SM2 3
 
347
 
 
348
#define MCUSR _SFR_IO8(0x34)
 
349
#define PORF 0
 
350
#define EXTRF 1
 
351
#define BORF 2
 
352
#define WDRF 3
 
353
 
 
354
#define MCUCR _SFR_IO8(0x35)
 
355
#define IVCE 0
 
356
#define IVSEL 1
 
357
#define PUD 4
 
358
#define SPIPS 7
 
359
 
 
360
#define SPMCSR _SFR_IO8(0x37)
 
361
#define SPMEN 0
 
362
#define PGERS 1
 
363
#define PGWRT 2
 
364
#define BLBSET 3
 
365
#define RWWSRE 4
 
366
#define RWWSB 6
 
367
#define SPMIE 7
 
368
 
 
369
#define WDTCSR _SFR_MEM8(0x60)
 
370
#define WDP0 0
 
371
#define WDP1 1
 
372
#define WDP2 2
 
373
#define WDE 3
 
374
#define WDCE 4
 
375
#define WDP3 5
 
376
#define WDIE 6
 
377
#define WDIF 7
 
378
 
 
379
#define CLKPR _SFR_MEM8(0x61)
 
380
#define CLKPS0 0
 
381
#define CLKPS1 1
 
382
#define CLKPS2 2
 
383
#define CLKPS3 3
 
384
#define CLKPCE 7
 
385
 
 
386
#define PRR _SFR_MEM8(0x64)
 
387
#define PRADC 0
 
388
#define PRLIN 1
 
389
#define PRSPI 2
 
390
#define PRTIM0 3
 
391
#define PRTIM1 4
 
392
#define PRPSC 5
 
393
#define PRCAN 6
 
394
 
 
395
#define OSCCAL _SFR_MEM8(0x66)
 
396
#define CAL0 0
 
397
#define CAL1 1
 
398
#define CAL2 2
 
399
#define CAL3 3
 
400
#define CAL4 4
 
401
#define CAL5 5
 
402
#define CAL6 6
 
403
 
 
404
#define EICRA _SFR_MEM8(0x69)
 
405
#define ISC00 0
 
406
#define ISC01 1
 
407
#define ISC10 2
 
408
#define ISC11 3
 
409
#define ISC20 4
 
410
#define ISC21 5
 
411
#define ISC30 6
 
412
#define ISC31 7
 
413
 
 
414
#define PCMSK0 _SFR_MEM8(0x6A)
 
415
 
 
416
#define PCMSK1 _SFR_MEM8(0x6B)
 
417
 
 
418
#define PCMSK2 _SFR_MEM8(0x6C)
 
419
 
 
420
#define PCMSK3 _SFR_MEM8(0x6D)
 
421
 
 
422
#define TIMSK0 _SFR_MEM8(0x6E)
 
423
#define TOIE0 0
 
424
#define OCIE0A 1
 
425
#define OCIE0B 2
 
426
 
 
427
#define TIMSK1 _SFR_MEM8(0x6F)
 
428
#define TOIE1 0
 
429
#define OCIE1A 1
 
430
#define OCIE1B 2
 
431
#define ICIE1 5
 
432
 
 
433
#define AMP0CSR _SFR_MEM8(0x75)
 
434
#define AMP0TS0 0
 
435
#define AMP0TS1 1
 
436
#define AMP0TS2 2
 
437
#define AMPCMP0 3
 
438
#define AMP0G0 4
 
439
#define AMP0G1 5
 
440
#define AMP0IS 6
 
441
#define AMP0EN 7
 
442
 
 
443
#define AMP1CSR _SFR_MEM8(0x76)
 
444
#define AMP1TS0 0
 
445
#define AMP1TS1 1
 
446
#define AMP1TS2 2
 
447
#define AMPCMP1 3
 
448
#define AMP1G0 4
 
449
#define AMP1G1 5
 
450
#define AMP1IS 6
 
451
#define AMP1EN 7
 
452
 
 
453
#define AMP2CSR _SFR_MEM8(0x77)
 
454
#define AMP2TS0 0
 
455
#define AMP2TS1 1
 
456
#define AMP2TS2 2
 
457
#define AMPCMP2 3
 
458
#define AMP2G0 4
 
459
#define AMP2G1 5
 
460
#define AMP2IS 6
 
461
#define AMP2EN 7
 
462
 
 
463
#ifndef __ASSEMBLER__
 
464
#define ADC     _SFR_MEM16(0x78)
 
465
#endif
 
466
#define ADCW    _SFR_MEM16(0x78)
 
467
 
 
468
#define ADCL _SFR_MEM8(0x78)
 
469
#define ADCL0 0
 
470
#define ADCL1 1
 
471
#define ADCL2 2
 
472
#define ADCL3 3
 
473
#define ADCL4 4
 
474
#define ADCL5 5
 
475
#define ADCL6 6
 
476
#define ADCL7 7
 
477
 
 
478
#define ADCH _SFR_MEM8(0x79)
 
479
#define ADCH0 0
 
480
#define ADCH1 1
 
481
#define ADCH2 2
 
482
#define ADCH3 3
 
483
#define ADCH4 4
 
484
#define ADCH5 5
 
485
#define ADCH6 6
 
486
#define ADCH7 7
 
487
 
 
488
#define ADCSRA _SFR_MEM8(0x7A)
 
489
#define ADPS0 0
 
490
#define ADPS1 1
 
491
#define ADPS2 2
 
492
#define ADIE 3
 
493
#define ADIF 4
 
494
#define ADATE 5
 
495
#define ADSC 6
 
496
#define ADEN 7
 
497
 
 
498
#define ADCSRB _SFR_MEM8(0x7B)
 
499
#define ADTS0 0
 
500
#define ADTS1 1
 
501
#define ADTS2 2
 
502
#define ADTS3 3
 
503
#define AREFEN 5
 
504
#define ISRCEN 6
 
505
#define ADHSM 7
 
506
 
 
507
#define ADMUX _SFR_MEM8(0x7C)
 
508
#define MUX0 0
 
509
#define MUX1 1
 
510
#define MUX2 2
 
511
#define MUX3 3
 
512
#define ADLAR 5
 
513
#define REFS0 6
 
514
#define REFS1 7
 
515
 
 
516
#define DIDR0 _SFR_MEM8(0x7E)
 
517
#define ADC0D 0
 
518
#define ADC1D 1
 
519
#define ADC2D 2
 
520
#define ADC3D 3
 
521
#define ADC4D 4
 
522
#define ADC5D 5
 
523
#define ADC6D 6
 
524
#define ADC7D 7
 
525
 
 
526
#define DIDR1 _SFR_MEM8(0x7F)
 
527
#define ADC8D 0
 
528
#define ADC9D 1
 
529
#define ADC10D 2
 
530
#define AMP0ND 3
 
531
#define AMP0PD 4
 
532
#define ACMP0D 5
 
533
#define AMP2PD 6
 
534
 
 
535
#define TCCR1A _SFR_MEM8(0x80)
 
536
#define WGM10 0
 
537
#define WGM11 1
 
538
#define COM1B0 4
 
539
#define COM1B1 5
 
540
#define COM1A0 6
 
541
#define COM1A1 7
 
542
 
 
543
#define TCCR1B _SFR_MEM8(0x81)
 
544
#define CS10 0
 
545
#define CS11 1
 
546
#define CS12 2
 
547
#define WGM12 3
 
548
#define WGM13 4
 
549
#define ICES1 6
 
550
#define ICNC1 7
 
551
 
 
552
#define TCCR1C _SFR_MEM8(0x82)
 
553
#define FOC1B 6
 
554
#define FOC1A 7
 
555
 
 
556
#define TCNT1 _SFR_MEM16(0x84)
 
557
 
 
558
#define TCNT1L _SFR_MEM8(0x84)
 
559
#define TCNT1L0 0
 
560
#define TCNT1L1 1
 
561
#define TCNT1L2 2
 
562
#define TCNT1L3 3
 
563
#define TCNT1L4 4
 
564
#define TCNT1L5 5
 
565
#define TCNT1L6 6
 
566
#define TCNT1L7 7
 
567
 
 
568
#define TCNT1H _SFR_MEM8(0x85)
 
569
#define TCNT1H0 0
 
570
#define TCNT1H1 1
 
571
#define TCNT1H2 2
 
572
#define TCNT1H3 3
 
573
#define TCNT1H4 4
 
574
#define TCNT1H5 5
 
575
#define TCNT1H6 6
 
576
#define TCNT1H7 7
 
577
 
 
578
#define ICR1 _SFR_MEM16(0x86)
 
579
 
 
580
#define ICR1L _SFR_MEM8(0x86)
 
581
#define ICR1L0 0
 
582
#define ICR1L1 1
 
583
#define ICR1L2 2
 
584
#define ICR1L3 3
 
585
#define ICR1L4 4
 
586
#define ICR1L5 5
 
587
#define ICR1L6 6
 
588
#define ICR1L7 7
 
589
 
 
590
#define ICR1H _SFR_MEM8(0x87)
 
591
#define ICR1H0 0
 
592
#define ICR1H1 1
 
593
#define ICR1H2 2
 
594
#define ICR1H3 3
 
595
#define ICR1H4 4
 
596
#define ICR1H5 5
 
597
#define ICR1H6 6
 
598
#define ICR1H7 7
 
599
 
 
600
#define OCR1A _SFR_MEM16(0x89)
 
601
 
 
602
#define OCR1AL _SFR_MEM8(0x88)
 
603
#define OCR1AL0 0
 
604
#define OCR1AL1 1
 
605
#define OCR1AL2 2
 
606
#define OCR1AL3 3
 
607
#define OCR1AL4 4
 
608
#define OCR1AL5 5
 
609
#define OCR1AL6 6
 
610
#define OCR1AL7 7
 
611
 
 
612
#define OCR1AH _SFR_MEM8(0x89)
 
613
#define OCR1AH0 0
 
614
#define OCR1AH1 1
 
615
#define OCR1AH2 2
 
616
#define OCR1AH3 3
 
617
#define OCR1AH4 4
 
618
#define OCR1AH5 5
 
619
#define OCR1AH6 6
 
620
#define OCR1AH7 7
 
621
 
 
622
#define OCR1B _SFR_MEM16(0x8A)
 
623
 
 
624
#define OCR1BL _SFR_MEM8(0x8A)
 
625
#define OCR1BL0 0
 
626
#define OCR1BL1 1
 
627
#define OCR1BL2 2
 
628
#define OCR1BL3 3
 
629
#define OCR1BL4 4
 
630
#define OCR1BL5 5
 
631
#define OCR1BL6 6
 
632
#define OCR1BL7 7
 
633
 
 
634
#define OCR1BH _SFR_MEM8(0x8B)
 
635
#define OCR1BH0 0
 
636
#define OCR1BH1 1
 
637
#define OCR1BH2 2
 
638
#define OCR1BH3 3
 
639
#define OCR1BH4 4
 
640
#define OCR1BH5 5
 
641
#define OCR1BH6 6
 
642
#define OCR1BH7 7
 
643
 
 
644
#define DACON _SFR_MEM8(0x90)
 
645
#define DAEN 0
 
646
#define DAOE 1
 
647
#define DALA 2
 
648
#define DATS0 4
 
649
#define DATS1 5
 
650
#define DATS2 6
 
651
#define DAATE 7
 
652
 
 
653
#define DAC _SFR_MEM16(0x91)
 
654
 
 
655
#define DACL _SFR_MEM8(0x91)
 
656
#define DACL0 0
 
657
#define DACL1 1
 
658
#define DACL2 2
 
659
#define DACL3 3
 
660
#define DACL4 4
 
661
#define DACL5 5
 
662
#define DACL6 6
 
663
#define DACL7 7
 
664
 
 
665
#define DACH _SFR_MEM8(0x92)
 
666
#define DACH0 0
 
667
#define DACH1 1
 
668
#define DACH2 2
 
669
#define DACH3 3
 
670
#define DACH4 4
 
671
#define DACH5 5
 
672
#define DACH6 6
 
673
#define DACH7 7
 
674
 
 
675
#define AC0CON _SFR_MEM8(0x94)
 
676
#define AC0M0 0
 
677
#define AC0M1 1
 
678
#define AC0M2 2
 
679
#define ACCKSEL 3
 
680
#define AC0IS0 4
 
681
#define AC0IS1 5
 
682
#define AC0IE 6
 
683
#define AC0EN 7
 
684
 
 
685
#define AC1CON _SFR_MEM8(0x95)
 
686
#define AC1M0 0
 
687
#define AC1M1 1
 
688
#define AC1M2 2
 
689
#define AC1ICE 3
 
690
#define AC1IS0 4
 
691
#define AC1IS1 5
 
692
#define AC1IE 6
 
693
#define AC1EN 7
 
694
 
 
695
#define AC2CON _SFR_MEM8(0x96)
 
696
#define AC2M0 0
 
697
#define AC2M1 1
 
698
#define AC2M2 2
 
699
#define AC2IS0 4
 
700
#define AC2IS1 5
 
701
#define AC2IE 6
 
702
#define AC2EN 7
 
703
 
 
704
#define AC3CON _SFR_MEM8(0x97)
 
705
#define AC3M0 0
 
706
#define AC3M1 1
 
707
#define AC3M2 2
 
708
#define AC3IS0 4
 
709
#define AC3IS1 5
 
710
#define AC3IE 6
 
711
#define AC3EN 7
 
712
 
 
713
#define LINCR _SFR_MEM8(0xC8)
 
714
#define LCMD0 0
 
715
#define LCMD1 1
 
716
#define LCMD2 2
 
717
#define LENA 3
 
718
#define LCONF0 4
 
719
#define LCONF1 5
 
720
#define LIN13 6
 
721
#define LSWRES 7
 
722
 
 
723
#define LINSIR _SFR_MEM8(0xC9)
 
724
#define LRXOK 0
 
725
#define LTXOK 1
 
726
#define LIDOK 2
 
727
#define LERR 3
 
728
#define LBUSY 4
 
729
#define LIDST0 5
 
730
#define LIDST1 6
 
731
#define LIDST2 7
 
732
 
 
733
#define LINENIR _SFR_MEM8(0xCA)
 
734
#define LENRXOK 0
 
735
#define LENTXOK 1
 
736
#define LENIDOK 2
 
737
#define LENERR 3
 
738
 
 
739
#define LINERR _SFR_MEM8(0xCB)
 
740
#define LBERR 0
 
741
#define LCERR 1
 
742
#define LPERR 2
 
743
#define LSERR 3
 
744
#define LFERR 4
 
745
#define LOVERR 5
 
746
#define LTOERR 6
 
747
#define LABORT 7
 
748
 
 
749
#define LINBTR _SFR_MEM8(0xCC)
 
750
#define LBT0 0
 
751
#define LBT1 1
 
752
#define LBT2 2
 
753
#define LBT3 3
 
754
#define LBT4 4
 
755
#define LBT5 5
 
756
#define LDISR 7
 
757
 
 
758
#define LINBRR _SFR_MEM16(0xCD)
 
759
 
 
760
#define LINBRRL _SFR_MEM8(0xCD)
 
761
#define LDIV0 0
 
762
#define LDIV1 1
 
763
#define LDIV2 2
 
764
#define LDIV3 3
 
765
#define LDIV4 4
 
766
#define LDIV5 5
 
767
#define LDIV6 6
 
768
#define LDIV7 7
 
769
 
 
770
#define LINBRRH _SFR_MEM8(0xCE)
 
771
#define LDIV8 0
 
772
#define LDIV9 1
 
773
#define LDIV10 2
 
774
#define LDIV11 3
 
775
 
 
776
#define LINDLR _SFR_MEM8(0xCF)
 
777
#define LRXDL0 0
 
778
#define LRXDL1 1
 
779
#define LRXDL2 2
 
780
#define LRXDL3 3
 
781
#define LTXDL0 4
 
782
#define LTXDL1 5
 
783
#define LTXDL2 6
 
784
#define LTXDL3 7
 
785
 
 
786
#define LINIDR _SFR_MEM8(0xD0)
 
787
#define LID0 0
 
788
#define LID1 1
 
789
#define LID2 2
 
790
#define LID3 3
 
791
#define LID4 4
 
792
#define LID5 5
 
793
#define LP0 6
 
794
#define LP1 7
 
795
 
 
796
#define LINSEL _SFR_MEM8(0xD1)
 
797
#define LINDX0 0
 
798
#define LINDX1 1
 
799
#define LINDX2 2
 
800
#define LAINC 3
 
801
 
 
802
#define LINDAT _SFR_MEM8(0xD2)
 
803
#define LDATA0 0
 
804
#define LDATA1 1
 
805
#define LDATA2 2
 
806
#define LDATA3 3
 
807
#define LDATA4 4
 
808
#define LDATA5 5
 
809
#define LDATA6 6
 
810
#define LDATA7 7
 
811
 
 
812
#define CANGCON _SFR_MEM8(0xD8)
 
813
#define SWRES 0
 
814
#define ENASTB 1
 
815
#define TEST 2
 
816
#define LISTEN 3
 
817
#define SYNTTC 4
 
818
#define TTC 5
 
819
#define OVRQ 6
 
820
#define ABRQ 7
 
821
 
 
822
#define CANGSTA _SFR_MEM8(0xD9)
 
823
#define ERRP 0
 
824
#define BOFF 1
 
825
#define ENFG 2
 
826
#define RXBSY 3
 
827
#define TXBSY 4
 
828
#define OVFG 6
 
829
 
 
830
#define CANGIT _SFR_MEM8(0xDA)
 
831
#define AERG 0
 
832
#define FERG 1
 
833
#define CERG 2
 
834
#define SERG 3
 
835
#define BXOK 4
 
836
#define OVRTIM 5
 
837
#define BOFFIT 6
 
838
#define CANIT 7
 
839
 
 
840
#define CANGIE _SFR_MEM8(0xDB)
 
841
#define ENOVRT 0
 
842
#define ENERG 1
 
843
#define ENBX 2
 
844
#define ENERR 3
 
845
#define ENTX 4
 
846
#define ENRX 5
 
847
#define ENBOFF 6
 
848
#define ENIT 7
 
849
 
 
850
#define CANEN2 _SFR_MEM8(0xDC)
 
851
#define ENMOB0 0
 
852
#define ENMOB1 1
 
853
#define ENMOB2 2
 
854
#define ENMOB3 3
 
855
#define ENMOB4 4
 
856
#define ENMOB5 5
 
857
 
 
858
#define CANEN1 _SFR_MEM8(0xDD)
 
859
 
 
860
#define CANIE2 _SFR_MEM8(0xDE)
 
861
#define IEMOB0 0
 
862
#define IEMOB1 1
 
863
#define IEMOB2 2
 
864
#define IEMOB3 3
 
865
#define IEMOB4 4
 
866
#define IEMOB5 5
 
867
 
 
868
#define CANIE1 _SFR_MEM8(0xDF)
 
869
 
 
870
#define CANSIT2 _SFR_MEM8(0xE0)
 
871
#define SIT0 0
 
872
#define SIT1 1
 
873
#define SIT2 2
 
874
#define SIT3 3
 
875
#define SIT4 4
 
876
#define SIT5 5
 
877
 
 
878
#define CANSIT1 _SFR_MEM8(0xE1)
 
879
 
 
880
#define CANBT1 _SFR_MEM8(0xE2)
 
881
#define BRP0 0
 
882
#define BRP1 1
 
883
#define BRP2 2
 
884
#define BRP3 3
 
885
#define BRP4 4
 
886
#define BRP5 5
 
887
 
 
888
#define CANBT2 _SFR_MEM8(0xE3)
 
889
#define PRS0 1
 
890
#define PRS1 2
 
891
#define PRS2 3
 
892
#define SJW0 5
 
893
#define SJW1 6
 
894
 
 
895
#define CANBT3 _SFR_MEM8(0xE4)
 
896
#define SMP 0
 
897
#define PHS10 1
 
898
#define PHS11 2
 
899
#define PHS12 3
 
900
#define PHS20 4
 
901
#define PHS21 5
 
902
#define PHS22 6
 
903
 
 
904
#define CANTCON _SFR_MEM8(0xE5)
 
905
 
 
906
#define CANTIM _SFR_MEM16(0xE6)
 
907
 
 
908
#define CANTIML _SFR_MEM8(0xE6)
 
909
 
 
910
#define CANTIMH _SFR_MEM8(0xE7)
 
911
 
 
912
#define CANTTC _SFR_MEM16(0xE8)
 
913
 
 
914
#define CANTTCL _SFR_MEM8(0xE8)
 
915
 
 
916
#define CANTTCH _SFR_MEM8(0xE9)
 
917
 
 
918
#define CANTEC _SFR_MEM8(0xEA)
 
919
 
 
920
#define CANREC _SFR_MEM8(0xEB)
 
921
 
 
922
#define CANHPMOB _SFR_MEM8(0xEC)
 
923
#define CGP0 0
 
924
#define CGP1 1
 
925
#define CGP2 2
 
926
#define CGP3 3
 
927
#define HPMOB0 4
 
928
#define HPMOB1 5
 
929
#define HPMOB2 6
 
930
#define HPMOB3 7
 
931
 
 
932
#define CANPAGE _SFR_MEM8(0xED)
 
933
#define INDX0 0
 
934
#define INDX1 1
 
935
#define INDX2 2
 
936
#define AINC 3
 
937
#define MOBNB0 4
 
938
#define MOBNB1 5
 
939
#define MOBNB2 6
 
940
#define MOBNB3 7
 
941
 
 
942
#define CANSTMOB _SFR_MEM8(0xEE)
 
943
#define AERR 0
 
944
#define FERR 1
 
945
#define CERR 2
 
946
#define SERR 3
 
947
#define BERR 4
 
948
#define RXOK 5
 
949
#define TXOK 6
 
950
#define DLCW 7
 
951
 
 
952
#define CANCDMOB _SFR_MEM8(0xEF)
 
953
#define DLC0 0
 
954
#define DLC1 1
 
955
#define DLC2 2
 
956
#define DLC3 3
 
957
#define IDE 4
 
958
#define RPLV 5
 
959
#define CONMOB0 6
 
960
#define CONMOB1 7
 
961
 
 
962
#define CANIDT4 _SFR_MEM8(0xF0)
 
963
#define RB0TAG 0
 
964
#define RB1TAG 1
 
965
#define RTRTAG 2
 
966
#define IDT0 3
 
967
#define IDT1 4
 
968
#define IDT2 5
 
969
#define IDT3 6
 
970
#define IDT4 7
 
971
 
 
972
#define CANIDT3 _SFR_MEM8(0xF1)
 
973
#define IDT5 0
 
974
#define IDT6 1
 
975
#define IDT7 2
 
976
#define IDT8 3
 
977
#define IDT9 4
 
978
#define IDT10 5
 
979
#define IDT11 6
 
980
#define IDT12 7
 
981
 
 
982
#define CANIDT2 _SFR_MEM8(0xF2)
 
983
#define IDT13 0
 
984
#define IDT14 1
 
985
#define IDT15 2
 
986
#define IDT16 3
 
987
#define IDT17 4
 
988
#define IDT18 5
 
989
#define IDT19 6
 
990
#define IDT20 7
 
991
 
 
992
#define CANIDT1 _SFR_MEM8(0xF3)
 
993
#define IDT21 0
 
994
#define IDT22 1
 
995
#define IDT23 2
 
996
#define IDT24 3
 
997
#define IDT25 4
 
998
#define IDT26 5
 
999
#define IDT27 6
 
1000
#define IDT28 7
 
1001
 
 
1002
#define CANIDM4 _SFR_MEM8(0xF4)
 
1003
#define IDEMSK 0
 
1004
#define RTRMSK 2
 
1005
#define IDMSK0 3
 
1006
#define IDMSK1 4
 
1007
#define IDMSK2 5
 
1008
#define IDMSK3 6
 
1009
#define IDMSK4 7
 
1010
 
 
1011
#define CANIDM3 _SFR_MEM8(0xF5)
 
1012
#define IDMSK5 0
 
1013
#define IDMSK6 1
 
1014
#define IDMSK7 2
 
1015
#define IDMSK8 3
 
1016
#define IDMSK9 4
 
1017
#define IDMSK10 5
 
1018
#define IDMSK11 6
 
1019
#define IDMSK12 7
 
1020
 
 
1021
#define CANIDM2 _SFR_MEM8(0xF6)
 
1022
#define IDMSK13 0
 
1023
#define IDMSK14 1
 
1024
#define IDMSK15 2
 
1025
#define IDMSK16 3
 
1026
#define IDMSK17 4
 
1027
#define IDMSK18 5
 
1028
#define IDMSK19 6
 
1029
#define IDMSK20 7
 
1030
 
 
1031
#define CANIDM1 _SFR_MEM8(0xF7)
 
1032
#define IDMSK21 0
 
1033
#define IDMSK22 1
 
1034
#define IDMSK23 2
 
1035
#define IDMSK24 3
 
1036
#define IDMSK25 4
 
1037
#define IDMSK26 5
 
1038
#define IDMSK27 6
 
1039
#define IDMSK28 7
 
1040
 
 
1041
#define CANSTM _SFR_MEM16(0xF8)
 
1042
 
 
1043
#define CANSTML _SFR_MEM8(0xF8)
 
1044
 
 
1045
#define CANSTMH _SFR_MEM8(0xF9)
 
1046
 
 
1047
#define CANMSG _SFR_MEM8(0xFA)
 
1048
 
 
1049
 
 
1050
 
 
1051
/* Interrupt Vectors */
 
1052
/* Interrupt Vector 0 is the reset vector. */
 
1053
#define ANACOMP0_vect       _VECTOR(1)  /* Analog Comparator 0 */
 
1054
#define ANACOMP1_vect       _VECTOR(2)  /* Analog Comparator 1 */
 
1055
#define ANACOMP2_vect       _VECTOR(3)  /* Analog Comparator 2 */
 
1056
#define ANACOMP3_vect       _VECTOR(4)  /* Analog Comparator 3 */
 
1057
#define PSC_FAULT_vect      _VECTOR(5)  /* PSC Fault */
 
1058
#define PSC_EC_vect         _VECTOR(6)  /* PSC End of Cycle */
 
1059
#define INT0_vect           _VECTOR(7)  /* External Interrupt Request 0 */
 
1060
#define INT1_vect           _VECTOR(8)  /* External Interrupt Request 1 */
 
1061
#define INT2_vect           _VECTOR(9)  /* External Interrupt Request 2 */
 
1062
#define INT3_vect           _VECTOR(10)  /* External Interrupt Request 3 */
 
1063
#define TIMER1_CAPT_vect    _VECTOR(11)  /* Timer/Counter1 Capture Event */
 
1064
#define TIMER1_COMPA_vect   _VECTOR(12)  /* Timer/Counter1 Compare Match A */
 
1065
#define TIMER1_COMPB_vect   _VECTOR(13)  /* Timer/Counter1 Compare Match B */
 
1066
#define TIMER1_OVF_vect     _VECTOR(14)  /* Timer1/Counter1 Overflow */
 
1067
#define TIMER0_COMPA_vect   _VECTOR(15)  /* Timer/Counter0 Compare Match A */
 
1068
#define TIMER0_COMPB_vect   _VECTOR(16)  /* Timer/Counter0 Compare Match B */
 
1069
#define TIMER0_OVF_vect     _VECTOR(17)  /* Timer/Counter0 Overflow */
 
1070
#define CAN_INT_vect        _VECTOR(18)  /* CAN MOB, Burst, General Errors */
 
1071
#define CAN_TOVF_vect       _VECTOR(19)  /* CAN Timer Overflow */
 
1072
#define LIN_TC_vect         _VECTOR(20)  /* LIN Transfer Complete */
 
1073
#define LIN_ERR_vect        _VECTOR(21)  /* LIN Error */
 
1074
#define PCINT0_vect         _VECTOR(22)  /* Pin Change Interrupt Request 0 */
 
1075
#define PCINT1_vect         _VECTOR(23)  /* Pin Change Interrupt Request 1 */
 
1076
#define PCINT2_vect         _VECTOR(24)  /* Pin Change Interrupt Request 2 */
 
1077
#define PCINT3_vect         _VECTOR(25)  /* Pin Change Interrupt Request 3 */
 
1078
#define SPI_STC_vect        _VECTOR(26)  /* SPI Serial Transfer Complete */
 
1079
#define ADC_vect            _VECTOR(27)  /* ADC Conversion Complete */
 
1080
#define WDT_vect            _VECTOR(28)  /* Watchdog Time-Out Interrupt */
 
1081
#define EE_READY_vect       _VECTOR(29)  /* EEPROM Ready */
 
1082
#define SPM_READY_vect      _VECTOR(30)  /* Store Program Memory Read */
 
1083
 
 
1084
#define _VECTORS_SIZE (31 * 4)
 
1085
 
 
1086
 
 
1087
/* Constants */
 
1088
#define SPM_PAGESIZE (64) 
 
1089
#define RAMSTART     (0x100)
 
1090
#define RAMSIZE      (0x800)
 
1091
#define RAMEND       (RAMSTART + RAMSIZE - 1)  /* Last On-Chip SRAM Location */
 
1092
#define XRAMSIZE     (0x800)
 
1093
#define XRAMEND      (RAMEND + XRAMSIZE)
 
1094
#define E2END        (0x3FF)
 
1095
#define FLASHEND     (0x7FFF)
 
1096
 
 
1097
 
 
1098
/* Fuses */
 
1099
#define FUSE_MEMORY_SIZE 3
 
1100
 
 
1101
/* Low Fuse Byte */
 
1102
#define FUSE_CKSEL0 ~_BV(0)  /* Select Clock Source */
 
1103
#define FUSE_CKSEL1 ~_BV(1)  /* Select Clock Source */
 
1104
#define FUSE_CKSEL2 ~_BV(2)  /* Select Clock Source */
 
1105
#define FUSE_CKSEL3 ~_BV(3)  /* Select Clock Source */
 
1106
#define FUSE_SUT0   ~_BV(4)  /* Select start-up time */
 
1107
#define FUSE_SUT1   ~_BV(5)  /* Select start-up time */
 
1108
#define FUSE_CKOUT  ~_BV(6)  /* Oscillator output option */
 
1109
#define FUSE_CKDIV8 ~_BV(7)  /* Divide clock by 8 */
 
1110
#define LFUSE_DEFAULT (FUSE_CKSEL1 & FUSE_CKSEL2 & FUSE_CKSEL3 & FUSE_SUT0 & FUSE_SUT1 & FUSE_CKDIV8)
 
1111
 
 
1112
/* High Fuse Byte */
 
1113
#define FUSE_BOOTRST  ~_BV(0)  /* Select Reset Vector */
 
1114
#define FUSE_BOOTSZ0  ~_BV(1)  /* Select Boot Size */
 
1115
#define FUSE_BOOTSZ1  ~_BV(2)  /* Select Boot Size */
 
1116
#define FUSE_EESAVE   ~_BV(3)  /* EEPROM memory is preserved through chip erase */
 
1117
#define FUSE_WDTON    ~_BV(4)  /* Watchdog timer always on */
 
1118
#define FUSE_SPIEN    ~_BV(5)  /* Enable Serial programming and Data Downloading */
 
1119
#define FUSE_DWEN     ~_BV(6)  /* debugWIRE Enable */
 
1120
#define FUSE_RSTDISBL ~_BV(7)  /* External Reset Disable */
 
1121
#define HFUSE_DEFAULT (FUSE_BOOTSZ0 & FUSE_BOOTSZ1 & FUSE_SPIEN)
 
1122
 
 
1123
/* Extended Fuse Byte */
 
1124
#define FUSE_BODLEVEL0 ~_BV(0)  /* Brown-out Detector Trigger Level */
 
1125
#define FUSE_BODLEVEL1 ~_BV(1)  /* Brown-out Detector Trigger Level */
 
1126
#define FUSE_BODLEVEL2 ~_BV(2)  /* Brown-out Detector Trigger Level */
 
1127
#define FUSE_PSCRVB    ~_BV(3)  /* PSC Outputs xB Reset Value */
 
1128
#define FUSE_PSCRVA    ~_BV(4)  /* PSC Outputs xA Reset Value */
 
1129
#define FUSE_PSCRB     ~_BV(5)  /* PSC Reset Behavior */
 
1130
#define EFUSE_DEFAULT (FUSE_BODLEVEL1 & FUSE_BODLEVEL2)
 
1131
 
 
1132
 
 
1133
/* Lock Bits */
 
1134
#define __LOCK_BITS_EXIST
 
1135
#define __BOOT_LOCK_BITS_0_EXIST
 
1136
#define __BOOT_LOCK_BITS_1_EXIST 
 
1137
 
 
1138
 
 
1139
#endif  /* _AVR_IOM32C1_H_ */