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

« back to all changes in this revision

Viewing changes to include/avr/iotn11.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: iotn11.h,v 1.8 2005/11/10 22:19:07 joerg_wunsch Exp $ */
 
31
/* $Id: iotn11.h,v 1.9.2.2 2008/01/06 20:10:46 arcanum Exp $ */
32
32
 
33
33
/* avr/iotn11.h - definitions for ATtiny10/11 */
34
34
 
206
206
#define E2END           0x0
207
207
#define FLASHEND        0x3FF
208
208
 
 
209
 
 
210
/* Fuses */
 
211
 
 
212
#define FUSE_MEMORY_SIZE 1
 
213
 
 
214
/* Low Fuse Byte */
 
215
#define FUSE_CKSEL0      ~_BV(0)
 
216
#define FUSE_CKSEL1      ~_BV(1)
 
217
#define FUSE_CKSEL2      ~_BV(2)
 
218
#define FUSE_RSTDISBL    ~_BV(3)
 
219
#define FUSE_FSTRT       ~_BV(4)
 
220
#define FUSE_DEFAULT (FUSE_CKSEL0 & FUSE_CKSEL1)
 
221
 
 
222
 
 
223
/* Lock Bits */
 
224
#define __LOCK_BITS_EXIST
 
225
 
 
226
 
209
227
#endif /* _AVR_IOTN11_H_ */