source: rtems/cpukit/score/cpu/avr/avr/iotn167.h @ 04a62dce

4.104.115
Last change on this file since 04a62dce was 04a62dce, checked in by Joel Sherrill <joel.sherrill@…>, on 08/06/09 at 14:52:07

2009-08-05 Josh Switnicki <josh.switnicki@…>

  • Makefile.am: added AVR specific Header files to score/cpu/avr/avr. These are from avr-libc 1.6 and assumed to exist by AVR applications.
  • preinstall.am: Regenerated.
  • Property mode set to 100644
File size: 16.3 KB
RevLine 
[04a62dce]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$ */
33
34/* avr/iotn167.h - definitions for ATtiny167. */
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_ "iotn167.h"
44#else
45#  error "Attempt to include more than one <avr/ioXXX.h> file."
46#endif
47
48
49#ifndef _AVR_IOTN167_H_
50#define _AVR_IOTN167_H_ 1
51
52
53/* Registers and associated bit numbers */
54
55#define PINA _SFR_IO8(0x00)
56#define PINA0 0
57#define PINA1 1
58#define PINA2 2
59#define PINA3 3
60#define PINA4 4
61#define PINA5 5
62#define PINA6 6
63#define PINA7 7
64
65#define DDRA _SFR_IO8(0x01)
66#define DDA0 0
67#define DDA1 1
68#define DDA2 2
69#define DDA3 3
70#define DDA4 4
71#define DDA5 5
72#define DDA6 6
73#define DDA7 7
74
75#define PORTA _SFR_IO8(0x02)
76#define PORTA0 0
77#define PORTA1 1
78#define PORTA2 2
79#define PORTA3 3
80#define PORTA4 4
81#define PORTA5 5
82#define PORTA6 6
83#define PORTA7 7
84
85#define PINB _SFR_IO8(0x03)
86#define PINB0 0
87#define PINB1 1
88#define PINB2 2
89#define PINB3 3
90#define PINB4 4
91#define PINB5 5
92#define PINB6 6
93#define PINB7 7
94
95#define DDRB _SFR_IO8(0x04)
96#define DDB0 0
97#define DDB1 1
98#define DDB2 2
99#define DDB3 3
100#define DDB4 4
101#define DDB5 5
102#define DDB6 6
103#define DDB7 7
104
105#define PORTB _SFR_IO8(0x05)
106#define PORTB0 0
107#define PORTB1 1
108#define PORTB2 2
109#define PORTB3 3
110#define PORTB4 4
111#define PORTB5 5
112#define PORTB6 6
113#define PORTB7 7
114
115#define PORTCR _SFR_IO8(0x12)
116#define PUDA 0
117#define PUDB 2
118#define BBMA 4
119#define BBMB 5
120
121#define TIFR0 _SFR_IO8(0x15)
122#define TOV0 0
123#define OCF0A 1
124
125#define TIFR1 _SFR_IO8(0x16)
126#define TOV1 0
127#define OCF1A 1
128#define OCF1B 2
129#define ICF1 5
130
131#define PCIFR _SFR_IO8(0x1B)
132#define PCIF0 0
133#define PCIF1 1
134
135#define EIFR _SFR_IO8(0x1C)
136#define INTF0 0
137#define INTF1 1
138
139#define EIMSK _SFR_IO8(0x1D)
140#define INT0 0
141#define INT1 1
142
143#define GPIOR0 _SFR_IO8(0x1E)
144#define GPIOR00 0
145#define GPIOR01 1
146#define GPIOR02 2
147#define GPIOR03 3
148#define GPIOR04 4
149#define GPIOR05 5
150#define GPIOR06 6
151#define GPIOR07 7
152
153#define EECR _SFR_IO8(0x1F)
154#define EERE 0
155#define EEPE 1
156#define EEMPE 2
157#define EERIE 3
158#define EEPM0 4
159#define EEPM1 5
160
161#define EEDR _SFR_IO8(0x20)
162#define EEDR0 0
163#define EEDR1 1
164#define EEDR2 2
165#define EEDR3 3
166#define EEDR4 4
167#define EEDR5 5
168#define EEDR6 6
169#define EEDR7 7
170
171#define EEAR _SFR_IO16(0x21)
172
173#define EEARL _SFR_IO8(0x21)
174#define EEAR0 0
175#define EEAR1 1
176#define EEAR2 2
177#define EEAR3 3
178#define EEAR4 4
179#define EEAR5 5
180#define EEAR6 6
181#define EEAR7 7
182
183#define EEARH _SFR_IO8(0x22)
184#define EEAR8 0
185
186#define GTCCR _SFR_IO8(0x23)
187#define PSR1 0
188#define PSR0 1
189#define TSM 7
190
191#define TCCR0A _SFR_IO8(0x25)
192#define WGM00 0
193#define WGM01 1
194#define COM0A0 6
195#define COM0A1 7
196
197#define TCCR0B _SFR_IO8(0x26)
198#define CS00 0
199#define CS01 1
200#define CS02 2
201#define FOC0A 7
202
203#define TCNT0 _SFR_IO8(0x27)
204#define TCNT00 0
205#define TCNT01 1
206#define TCNT02 2
207#define TCNT03 3
208#define TCNT04 4
209#define TCNT05 5
210#define TCNT06 6
211#define TCNT07 7
212
213#define OCR0A _SFR_IO8(0x28)
214#define OCR00 0
215#define OCR01 1
216#define OCR02 2
217#define OCR03 3
218#define OCR04 4
219#define OCR05 5
220#define OCR06 6
221#define OCR07 7
222
223#define GPIOR1 _SFR_IO8(0x2A)
224#define GPIOR10 0
225#define GPIOR11 1
226#define GPIOR12 2
227#define GPIOR13 3
228#define GPIOR14 4
229#define GPIOR15 5
230#define GPIOR16 6
231#define GPIOR17 7
232
233#define GPIOR2 _SFR_IO8(0x2B)
234#define GPIOR20 0
235#define GPIOR21 1
236#define GPIOR22 2
237#define GPIOR23 3
238#define GPIOR24 4
239#define GPIOR25 5
240#define GPIOR26 6
241#define GPIOR27 7
242
243#define SPCR _SFR_IO8(0x2C)
244#define SPR0 0
245#define SPR1 1
246#define CPHA 2
247#define CPOL 3
248#define MSTR 4
249#define DORD 5
250#define SPE 6
251#define SPIE 7
252
253#define SPSR _SFR_IO8(0x2D)
254#define SPI2X 0
255#define WCOL 6
256#define SPIF 7
257
258#define SPDR _SFR_IO8(0x2E)
259#define SPDR0 0
260#define SPDR1 1
261#define SPDR2 2
262#define SPDR3 3
263#define SPDR4 4
264#define SPDR5 5
265#define SPDR6 6
266#define SPDR7 7
267
268#define ACSR _SFR_IO8(0x30)
269#define ACIS0 0
270#define ACIS1 1
271#define ACIC 2
272#define ACIE 3
273#define ACI 4
274#define ACO 5
275#define ACIRS 6
276#define ACD 7
277
278#define DWDR _SFR_IO8(0x31)
279#define DWDR0 0
280#define DWDR1 1
281#define DWDR2 2
282#define DWDR3 3
283#define DWDR4 4
284#define DWDR5 5
285#define DWDR6 6
286#define DWDR7 7
287
288#define SMCR _SFR_IO8(0x33)
289#define SE 0
290#define SM0 1
291#define SM1 2
292
293#define MCUSR _SFR_IO8(0x34)
294#define PORF 0
295#define EXTRF 1
296#define BORF 2
297#define WDRF 3
298
299#define MCUCR _SFR_IO8(0x35)
300#define PUD 4
301#define BODS 5
302#define BODSE 6
303
304#define SPMCSR _SFR_IO8(0x37)
305#define SPMEN 0
306#define PGERS 1
307#define PGWRT 2
308#define RFLB 3
309#define CTPB 4
310#define SIGRD 5
311#define RWWSB 6
312
313#define WDTCR _SFR_MEM8(0x60)
314#define WDP0 0
315#define WDP1 1
316#define WDP2 2
317#define WDE 3
318#define WDCE 4
319#define WDP3 5
320#define WDIE 6
321#define WDIF 7
322
323#define CLKPR _SFR_MEM8(0x61)
324#define CLKPS0 0
325#define CLKPS1 1
326#define CLKPS2 2
327#define CLKPS3 3
328#define CLKPCE 7
329
330#define CLKCSR _SFR_MEM8(0x62)
331#define CLKC0 0
332#define CLKC1 1
333#define CLKC2 2
334#define CLKC3 3
335#define CLKRDY 4
336#define CLKCCE 7
337
338#define CLKSELR _SFR_MEM8(0x63)
339#define CSEL0 0
340#define CSEL1 1
341#define CSEL2 2
342#define CSEL3 3
343#define CSUT0 4
344#define CSUT1 5
345#define COUT 6
346
347#define PRR _SFR_MEM8(0x64)
348#define PRADC 0
349#define PRUSI 1
350#define PRTIM0 2
351#define PRTIM1 3
352#define PRSPI 4
353#define PRLIN 5
354
355#define OSCCAL _SFR_MEM8(0x66)
356#define CAL0 0
357#define CAL1 1
358#define CAL2 2
359#define CAL3 3
360#define CAL4 4
361#define CAL5 5
362#define CAL6 6
363#define CAL7 7
364
365#define PCICR _SFR_MEM8(0x68)
366#define PCIE0 0
367#define PCIE1 1
368
369#define EICRA _SFR_MEM8(0x69)
370#define ISC00 0
371#define ISC01 1
372#define ISC10 2
373#define ISC11 3
374
375#define PCMSK0 _SFR_MEM8(0x6B)
376#define PCINT0 0
377#define PCINT1 1
378#define PCINT2 2
379#define PCINT3 3
380#define PCINT4 4
381#define PCINT5 5
382#define PCINT6 6
383#define PCINT7 7
384
385#define PCMSK1 _SFR_MEM8(0x6C)
386#define PCINT8 0
387#define PCINT9 1
388#define PCINT10 2
389#define PCINT11 3
390#define PCINT12 4
391#define PCINT13 5
392#define PCINT14 6
393#define PCINT15 7
394
395#define TIMSK0 _SFR_MEM8(0x6E)
396#define TOIE0 0
397#define OCIE0A 1
398
399#define TIMSK1 _SFR_MEM8(0x6F)
400#define TOIE1 0
401#define OCIE1A 1
402#define OCIE1B 2
403#define ICIE1 5
404
405#define AMISCR _SFR_MEM8(0x77)
406#define ISRCEN 0
407#define XREFEN 1
408#define AREFEN 2
409
410#ifndef __ASSEMBLER__
411#define ADC     _SFR_MEM16(0x78)
412#endif
413#define ADCW    _SFR_MEM16(0x78)
414
415#define ADCL _SFR_MEM8(0x78)
416#define ADCL0 0
417#define ADCL1 1
418#define ADCL2 2
419#define ADCL3 3
420#define ADCL4 4
421#define ADCL5 5
422#define ADCL6 6
423#define ADCL7 7
424
425#define ADCH _SFR_MEM8(0x79)
426#define ADCH0 0
427#define ADCH1 1
428#define ADCH2 2
429#define ADCH3 3
430#define ADCH4 4
431#define ADCH5 5
432#define ADCH6 6
433#define ADCH7 7
434
435#define ADCSRA _SFR_MEM8(0x7A)
436#define ADPS0 0
437#define ADPS1 1
438#define ADPS2 2
439#define ADIE 3
440#define ADIF 4
441#define ADATE 5
442#define ADSC 6
443#define ADEN 7
444
445#define ADCSRB _SFR_MEM8(0x7B)
446#define ADTS0 0
447#define ADTS1 1
448#define ADTS2 2
449#define ACIR0 4
450#define ACIR1 5
451#define ACME 6
452#define BIN 7
453
454#define ADMUX _SFR_MEM8(0x7C)
455#define MUX0 0
456#define MUX1 1
457#define MUX2 2
458#define MUX3 3
459#define MUX4 4
460#define ADLAR 5
461#define REFS0 6
462#define REFS1 7
463
464#define DIDR0 _SFR_MEM8(0x7E)
465#define ADC0D 0
466#define ADC1D 1
467#define ADC2D 2
468#define ADC3D 3
469#define ADC4D 4
470#define ADC5D 5
471#define ADC6D 6
472#define ADC7D 7
473
474#define DIDR1 _SFR_MEM8(0x7F)
475#define ADC8D 0
476#define ADC9D 1
477#define ADC10D 2
478
479#define TCCR1A _SFR_MEM8(0x80)
480#define WGM10 0
481#define WGM11 1
482#define COM1B0 4
483#define COM1B1 5
484#define COM1A0 6
485#define COM1A1 7
486
487#define TCCR1B _SFR_MEM8(0x81)
488#define CS10 0
489#define CS11 1
490#define CS12 2
491#define WGM12 3
492#define WGM13 4
493#define ICES1 6
494#define ICNC1 7
495
496#define TCCR1C _SFR_MEM8(0x82)
497#define FOC1B 6
498#define FOC1A 7
499
500#define TCCR1D _SFR_MEM8(0x83)
501#define OC1AU 0
502#define OC1AV 1
503#define OC1AW 2
504#define OC1AX 3
505#define OC1BU 4
506#define OC1BV 5
507#define OC1BW 6
508#define OC1BX 7
509
510#define TCNT1 _SFR_MEM16(0x84)
511
512#define TCNT1L _SFR_MEM8(0x84)
513#define TCNT1L0 0
514#define TCNT1L1 1
515#define TCNT1L2 2
516#define TCNT1L3 3
517#define TCNT1L4 4
518#define TCNT1L5 5
519#define TCNT1L6 6
520#define TCNT1L7 7
521
522#define TCNT1H _SFR_MEM8(0x85)
523#define TCNT1H0 0
524#define TCNT1H1 1
525#define TCNT1H2 2
526#define TCNT1H3 3
527#define TCNT1H4 4
528#define TCNT1H5 5
529#define TCNT1H6 6
530#define TCNT1H7 7
531
532#define ICR1 _SFR_MEM8(0x86)
533
534#define ICR1L _SFR_MEM8(0x86)
535#define ICR1L0 0
536#define ICR1L1 1
537#define ICR1L2 2
538#define ICR1L3 3
539#define ICR1L4 4
540#define ICR1L5 5
541#define ICR1L6 6
542#define ICR1L7 7
543
544#define ICR1H _SFR_MEM8(0x87)
545#define ICR1H0 0
546#define ICR1H1 1
547#define ICR1H2 2
548#define ICR1H3 3
549#define ICR1H4 4
550#define ICR1H5 5
551#define ICR1H6 6
552#define ICR1H7 7
553
554#define OCR1A _SFR_MEM16(0x88)
555
556#define OCR1AL _SFR_MEM8(0x88)
557#define OCR1AL0 0
558#define OCR1AL1 1
559#define OCR1AL2 2
560#define OCR1AL3 3
561#define OCR1AL4 4
562#define OCR1AL5 5
563#define OCR1AL6 6
564#define OCR1AL7 7
565
566#define OCR1AH _SFR_MEM8(0x89)
567#define OCR1AH0 0
568#define OCR1AH1 1
569#define OCR1AH2 2
570#define OCR1AH3 3
571#define OCR1AH4 4
572#define OCR1AH5 5
573#define OCR1AH6 6
574#define OCR1AH7 7
575
576#define OCR1B _SFR_MEM16(0x8A)
577
578#define OCR1BL _SFR_MEM8(0x8A)
579#define OCR1AL0 0
580#define OCR1AL1 1
581#define OCR1AL2 2
582#define OCR1AL3 3
583#define OCR1AL4 4
584#define OCR1AL5 5
585#define OCR1AL6 6
586#define OCR1AL7 7
587
588#define OCR1BH _SFR_MEM8(0x8B)
589#define OCR1AH0 0
590#define OCR1AH1 1
591#define OCR1AH2 2
592#define OCR1AH3 3
593#define OCR1AH4 4
594#define OCR1AH5 5
595#define OCR1AH6 6
596#define OCR1AH7 7
597
598#define ASSR _SFR_MEM8(0xB6)
599#define TCR0BUB 0
600#define TCR0AUB 1
601#define OCR0AUB 3
602#define TCN0UB 4
603#define AS0 5
604#define EXCLK 6
605
606#define USICR _SFR_MEM8(0xB8)
607#define USITC 0
608#define USICLK 1
609#define USICS0 2
610#define USICS1 3
611#define USIWM0 4
612#define USIWM1 5
613#define USIOIE 6
614#define USISIE 7
615
616#define USISR _SFR_MEM8(0xB9)
617#define USICNT0 0
618#define USICNT1 1
619#define USICNT2 2
620#define USICNT3 3
621#define USIDC 4
622#define USIPF 5
623#define USIOIF 6
624#define USISIF 7
625
626#define USIDR _SFR_MEM8(0xBA)
627#define USIDR0 0
628#define USIDR1 1
629#define USIDR2 2
630#define USIDR3 3
631#define USIDR4 4
632#define USIDR5 5
633#define USIDR6 6
634#define USIDR7 7
635
636#define USIBR _SFR_MEM8(0xBB)
637#define USIBR0 0
638#define USIBR1 1
639#define USIBR2 2
640#define USIBR3 3
641#define USIBR4 4
642#define USIBR5 5
643#define USIBR6 6
644#define USIBR7 7
645
646#define USIPP _SFR_MEM8(0xBC)
647#define USIPOS 0
648
649#define LINCR _SFR_MEM8(0xC8)
650#define LCMD0 0
651#define LCMD1 1
652#define LCMD2 2
653#define LENA 3
654#define LCONF0 4
655#define LCONF1 5
656#define LIN13 6
657#define LSWRES 7
658
659#define LINSIR _SFR_MEM8(0xC9)
660#define LRXOK 0
661#define LTXOK 1
662#define LIDOK 2
663#define LERR 3
664#define LBUSY 4
665#define LIDST0 5
666#define LIDST1 6
667#define LIDST2 7
668
669#define LINENIR _SFR_MEM8(0xCA)
670#define LENRXOK 0
671#define LENTXOK 1
672#define LENIDOK 2
673#define LENERR 3
674
675#define LINERR _SFR_MEM8(0xCB)
676#define LBERR 0
677#define LCERR 1
678#define LPERR 2
679#define LSERR 3
680#define LFERR 4
681#define LOVERR 5
682#define LTOERR 6
683#define LABORT 7
684
685#define LINBTR _SFR_MEM8(0xCC)
686#define LBT0 0
687#define LBT1 1
688#define LBT2 2
689#define LBT3 3
690#define LBT4 4
691#define LBT5 5
692#define LDISR 7
693
694#define LINBRR _SFR_MEM16(0xCD)
695
696#define LINBRRL _SFR_MEM8(0xCD)
697#define LDIV0 0
698#define LDIV1 1
699#define LDIV2 2
700#define LDIV3 3
701#define LDIV4 4
702#define LDIV5 5
703#define LDIV6 6
704#define LDIV7 7
705
706#define LINBRRH _SFR_MEM8(0xCE)
707#define LDIV8 0
708#define LDIV9 1
709#define LDIV10 2
710#define LDIV11 3
711
712#define LINDLR _SFR_MEM8(0xCF)
713#define LRXDL0 0
714#define LRXDL1 1
715#define LRXDL2 2
716#define LRXDL3 3
717#define LTXDL0 4
718#define LTXDL1 5
719#define LTXDL2 6
720#define LTXDL3 7
721
722#define LINIDR _SFR_MEM8(0xD0)
723#define LID0 0
724#define LID1 1
725#define LID2 2
726#define LID3 3
727#define LID4 4
728#define LID5 5
729#define LP0 6
730#define LP1 7
731
732#define LINSEL _SFR_MEM8(0xD1)
733#define LINDX0 0
734#define LINDX1 1
735#define LINDX2 2
736#define LAINC 3
737
738#define LINDAT _SFR_MEM8(0xD2)
739#define LDATA0 0
740#define LDATA1 1
741#define LDATA2 2
742#define LDATA3 3
743#define LDATA4 4
744#define LDATA5 5
745#define LDATA6 6
746#define LDATA7 7
747
748
749
750/* Interrupt Vectors */
751/* Interrupt Vector 0 is the reset vector. */
752#define INT0_vect           _VECTOR(1)  /* External Interrupt Request 0 */
753#define INT1_vect           _VECTOR(2)  /* External Interrupt Request 1 */
754#define PCINT0_vect         _VECTOR(3)  /* Pin Change Interrupt Request 0 */
755#define PCINT1_vect         _VECTOR(4)  /* Pin Change Interrupt Request 1 */
756#define WDT_vect            _VECTOR(5)  /* Watchdog Time-Out Interrupt */
757#define TIMER1_CAPT_vect    _VECTOR(6)  /* Timer/Counter1 Capture Event */
758#define TIMER1_COMPA_vect   _VECTOR(7)  /* Timer/Counter1 Compare Match 1A */
759#define TIMER1_COMPB_vect   _VECTOR(8)  /* Timer/Counter1 Compare Match 1B */
760#define TIMER1_OVF_vect     _VECTOR(9)  /* Timer/Counter1 Overflow */
761#define TIMER0_COMPA_vect   _VECTOR(10)  /* Timer/Counter0 Compare Match 0A */
762#define TIMER0_OVF_vect     _VECTOR(11)  /* Timer/Counter0 Overflow */
763#define LIN_TC_vect         _VECTOR(12)  /* LIN Transfer Complete */
764#define LIN_ERR_vect        _VECTOR(13)  /* LIN Error */
765#define SPI_STC_vect        _VECTOR(14)  /* SPI Serial Transfer Complete */
766#define ADC_vect            _VECTOR(15)  /* ADC Conversion Complete */
767#define EE_RDY_vect         _VECTOR(16)  /* EEPROM Ready */
768#define ANA_COMP_vect       _VECTOR(17)  /* Analog Comparator */
769#define USI_START_vect      _VECTOR(18)  /* USI Start */
770#define USI_OVF_vect        _VECTOR(19)  /* USI Overflow */
771
772#define _VECTORS_SIZE (20 * 4)
773
774
775
776/* Constants */
777#define SPM_PAGESIZE (64)
778#define RAMSTART     (0x100)
779#define RAMSIZE      (0x1FF)
780#define RAMEND       (RAMSTART + RAMSIZE - 1)  /* Last On-Chip SRAM Location */
781#define XRAMSIZE     (0)
782#define XRAMEND      RAMEND
783#define E2END        (0x1FF)
784#define E2PAGESIZE   (4)
785#define FLASHEND     (0x3FFF)
786
787
788
789/* Fuses */
790#define FUSE_MEMORY_SIZE 3
791
792/* Low Fuse Byte */
793#define FUSE_CKSEL0 (unsigned char)~_BV(0)  /* Select Clock source */
794#define FUSE_CKSEL1 (unsigned char)~_BV(1)  /* Select Clock source */
795#define FUSE_CKSEL2 (unsigned char)~_BV(2)  /* Select Clock source */
796#define FUSE_CKSEL3 (unsigned char)~_BV(3)  /* Select Clock source */
797#define FUSE_SUT0   (unsigned char)~_BV(4)  /* Select start-up time */
798#define FUSE_SUT1   (unsigned char)~_BV(5)  /* Select start-up time */
799#define FUSE_CKOUT  (unsigned char)~_BV(6)  /* Clock Output Enable */
800#define FUSE_CKDIV8 (unsigned char)~_BV(7)  /* Divide clock by 8 */
801#define LFUSE_DEFAULT (FUSE_CKSEL0 & FUSE_CKSEL2 & FUSE_CKSEL3 & FUSE_SUT0 & FUSE_CKDIV8)
802
803/* High Fuse Byte */
804#define FUSE_BODLEVEL0 (unsigned char)~_BV(0)  /* Brown-out Detector trigger level */
805#define FUSE_BODLEVEL1 (unsigned char)~_BV(1)  /* Brown-out Detector trigger level */
806#define FUSE_BODLEVEL2 (unsigned char)~_BV(2)  /* Brown-out Detector trigger level */
807#define FUSE_EESAVE    (unsigned char)~_BV(3)  /* EEPROM memory is preserved through the Chip Erase */
808#define FUSE_WDTON     (unsigned char)~_BV(4)  /* Watchdog Timer always ON */
809#define FUSE_SPIEN     (unsigned char)~_BV(5)  /* Enable Serial Program and Data Downloading */
810#define FUSE_DWEN      (unsigned char)~_BV(6)  /* DebugWIRE Enable */
811#define FUSE_RSTDISBL  (unsigned char)~_BV(7)  /* External Reset disable */
812#define HFUSE_DEFAULT (FUSE_SPIEN)
813
814/* Extended Fuse Byte */
815#define FUSE_SELFPRGEN (unsigned char)~_BV(0)  /* Self-Programming Enable */
816#define EFUSE_DEFAULT (0xFF)
817
818
819
820/* Lock Bits */
821#define __LOCK_BITS_EXIST
822
823
824
825/* Signature */
826#define SIGNATURE_0 0x1E
827#define SIGNATURE_1 0x94
828#define SIGNATURE_2 0x87
829
830
831
832#endif  /* _AVR_IOTN167_H_ */
Note: See TracBrowser for help on using the repository browser.