~ubuntu-branches/ubuntu/maverick/avr-libc/maverick

« back to all changes in this revision

Viewing changes to include/avr/io1200.h

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2009-10-31 11:52:10 UTC
  • mfrom: (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20091031115210-crjd42sn6ezrj52c
* New upstream relese (closes: #544030)
* Added lintian overrides (closes: #553265)

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: io1200.h,v 1.8 2005/10/30 22:11:23 joerg_wunsch Exp $ */
 
31
/* $Id: io1200.h,v 1.8.4.3 2008/08/14 00:07:59 arcanum Exp $ */
32
32
 
33
33
/* avr/io1200.h - definitions for AT90S1200 */
34
34
 
244
244
#define RAMEND          0x1F
245
245
#define XRAMEND         0x0
246
246
#define E2END           0x3F
 
247
#define E2PAGESIZE  0
247
248
#define FLASHEND        0x3FF
248
249
 
 
250
 
 
251
/* Fuses */
 
252
#define FUSE_MEMORY_SIZE 1
 
253
 
 
254
/* Low Fuse Byte */
 
255
#define FUSE_RCEN  (unsigned char)~_BV(0)
 
256
#define FUSE_SPIEN (unsigned char)~_BV(5)
 
257
#define LFUSE_DEFAULT (0xFF)
 
258
 
 
259
 
 
260
/* Lock Bits */
 
261
#define __LOCK_BITS_EXIST
 
262
 
 
263
 
 
264
/* Signature */
 
265
#define SIGNATURE_0 0x1E
 
266
#define SIGNATURE_1 0x90
 
267
#define SIGNATURE_2 0x01
 
268
 
 
269
 
249
270
#endif  /* _AVR_IO1200_H_ */