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

« back to all changes in this revision

Viewing changes to include/avr/iotn26.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:
28
28
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
29
  POSSIBILITY OF SUCH DAMAGE. */
30
30
 
31
 
/* $Id: iotn26.h,v 1.14 2005/11/10 22:19:07 joerg_wunsch Exp $ */
 
31
/* $Id: iotn26.h,v 1.15.2.2 2008/01/06 20:10:47 arcanum Exp $ */
32
32
 
33
33
/* avr/iotn26.h - definitions for ATtiny26 */
34
34
 
346
346
#define E2END       0x7F
347
347
#define FLASHEND    0x07FF
348
348
 
 
349
 
 
350
/* Fuses */
 
351
 
 
352
#define FUSE_MEMORY_SIZE 2
 
353
 
 
354
/* Low Fuse Byte */
 
355
#define FUSE_CKSEL0      ~_BV(0)
 
356
#define FUSE_CKSEL1      ~_BV(1)
 
357
#define FUSE_CKSEL2      ~_BV(2)
 
358
#define FUSE_CKSEL3      ~_BV(3)
 
359
#define FUSE_SUT0        ~_BV(4)
 
360
#define FUSE_SUT1        ~_BV(5)
 
361
#define FUSE_CKOPT       ~_BV(6)
 
362
#define FUSE_PLLCK       ~_BV(7)
 
363
#define LFUSE_DEFAULT (FUSE_CKSEL1 & FUSE_CKSEL2)
 
364
 
 
365
/* High Fuse Byte */
 
366
#define FUSE_BODEN       ~_BV(0)
 
367
#define FUSE_BODLEVEL    ~_BV(1)
 
368
#define FUSE_EESAVE      ~_BV(2)
 
369
#define FUSE_SPIEN       ~_BV(3)
 
370
#define FUSE_RSTDISBL    ~_BV(4)
 
371
#define HFUSE_DEFAULT (FUSE_SPIEN)
 
372
 
 
373
 
 
374
/* Lock Bits */
 
375
#define __LOCK_BITS_EXIST
 
376
 
 
377
 
349
378
#endif  /* _AVR_IOTN26_H_ */