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

« back to all changes in this revision

Viewing changes to include/avr/io2343.h

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2009-10-31 11:52:10 UTC
  • mfrom: (1.1.8 upstream) (4.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091031115210-x0mlijnegkce86fk
Tags: 1:1.6.7-1
* 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: io2343.h,v 1.9 2007/03/30 17:56:14 arcanum Exp $ */
 
31
/* $Id: io2343.h,v 1.9.2.4 2009/02/11 18:05:22 arcanum Exp $ */
32
32
 
33
33
/* avr/io2343.h - definitions for AT90S2343 */
34
34
 
180
180
#define    EERE    0
181
181
 
182
182
/* Constants */
183
 
#define    RAMEND    0xDF
184
 
#define    XRAMEND   0xDF
185
 
#define    E2END     0x7F
186
 
#define    FLASHEND  0x07FF
 
183
#define RAMEND     0xDF
 
184
#define XRAMEND    RAMEND
 
185
#define E2END      0x7F
 
186
#define E2PAGESIZE 0
 
187
#define FLASHEND   0x07FF
 
188
 
 
189
 
 
190
/* Fuses */
 
191
#define FUSE_MEMORY_SIZE 1
 
192
 
 
193
/* Low Fuse Byte */
 
194
#define FUSE_RCEN (unsigned char)~_BV(0)
 
195
#define FUSE_SPIEN (unsigned char)~_BV(5)
 
196
#define LFUSE_DEFAULT (0xFF)
 
197
 
 
198
 
 
199
/* Lock Bits */
 
200
#define __LOCK_BITS_EXIST
 
201
 
 
202
 
 
203
/* Signature */
 
204
#define SIGNATURE_0 0x1E
 
205
#define SIGNATURE_1 0x91
 
206
#define SIGNATURE_2 0x03
 
207
 
187
208
 
188
209
#endif /* _AVR_IO2343_H_ */