File: attiny2313.h

package info (click to toggle)
simulavr 1.0.0%2Bgit20160221.e53413b-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 5,748 kB
  • sloc: cpp: 35,491; python: 6,991; ansic: 3,567; makefile: 1,072; sh: 653; asm: 414; tcl: 320
file content (74 lines) | stat: -rw-r--r-- 2,921 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
 /*
 ****************************************************************************
 *
 * simulavr - A simulator for the Atmel AVR family of microcontrollers.
 * Copyright (C) 2001, 2002, 2003   Klaus Rudolph       
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 ****************************************************************************
 *
 *  $Id$
 */

#ifndef ATTINY2313
#define ATTINY2313

#include "avrdevice.h"
#include "hardware.h"
#include "rwmem.h"
#include "hwtimer/timerprescaler.h"
#include "hwtimer/timerirq.h"
#include "hwtimer/hwtimer.h"
#include "externalirq.h"
#include "hwuart.h"
#include "hwacomp.h"
#include "hwusi.h"

//! AVRDevice class for ATTiny2313
class AvrDevice_attiny2313: public AvrDevice {
    
    public:
        HWPort *porta;                  //!< port A (only 3 bit)
        HWPort *portb;                  //!< port B
        HWPort *portd;                  //!< port D (only 7 bit)

        IOSpecialReg *gtccr_reg;        //!< GTCCR IO register
        GPIORegister *gpior0_reg;       //!< GPIOR0 Register
        GPIORegister *gpior1_reg;       //!< GPIOR1 Register
        GPIORegister *gpior2_reg;       //!< GPIOR2 Register
        CLKPRRegister *clkpr_reg;       //!< CLKPR IO register
        OSCCALRegister *osccal_reg;     //!< OSCCAL IO register
        
        ExternalIRQHandler *extirq;     //!< external interrupt support
        IOSpecialReg *gimsk_reg;        //!< GIMSK IO register
        IOSpecialReg *eifr_reg;         //!< EIFR IO register
        IOSpecialReg *mcucr_reg;        //!< MCUCR IO register
        IOSpecialReg *pcmsk_reg;        //!< PCMSK IO register
        
        HWPrescaler *prescaler01;       //!< prescaler unit for timer 0 and 1
        ICaptureSource *inputCapture1;  //!< input capture source for timer1
        HWTimer8_2C*   timer0;          //!< timer 0 unit
        HWTimer16_2C3* timer1;          //!< timer 1 unit
        TimerIRQRegister* timer01irq;   //!< timer interrupt unit for timer 0 and 1
        HWUsart *usart;                 //!< usart unit
        HWAcomp *acomp;                 //!< analog compare unit
        HWUSI *usi;                     //!< usi unit

        AvrDevice_attiny2313();
        ~AvrDevice_attiny2313(); 
};

#endif