~arcachofo/simulide/1.1.0

« back to all changes in this revision

Viewing changes to src/gui/circuitwidget/components/mcu/piccomponentpin.cpp

  • Committer: arcachofo
  • Date: 2021-01-01 14:23:42 UTC
  • Revision ID: arcachofo@simulide.com-20210101142342-ozfljnll44g5lbl3
Initial Commit 0.5.15-RC3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2012 by santiago González                               *
 
3
 *   santigoro@gmail.com                                                   *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 3 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, see <http://www.gnu.org/licenses/>.  *
 
17
 *                                                                         *
 
18
 ***************************************************************************/
 
19
 
 
20
#include <qstring.h>
 
21
#include <stdint.h>
 
22
 
 
23
#include "piccomponentpin.h"
 
24
#include "piccomponent.h"
 
25
#include "simulator.h"
 
26
#include "pic-processor.h"
 
27
 
 
28
PICComponentPin::PICComponentPin( McuComponent* mcu, QString id, QString type, QString label, int pos, int xpos, int ypos, int angle )
 
29
               : McuComponentPin( mcu, id, type, label, pos, xpos, ypos, angle )
 
30
{
 
31
    m_PicProcessor  = 0l;
 
32
    m_pIOPIN        = 0l;
 
33
}
 
34
PICComponentPin::~PICComponentPin(){}
 
35
 
 
36
void PICComponentPin::attachPin( pic_processor* PicProcessor )
 
37
{
 
38
    if( m_PicProcessor ) return;
 
39
    
 
40
    m_PicProcessor = PicProcessor;
 
41
    
 
42
    IOPIN* iopin = m_PicProcessor->get_pin( m_pos );
 
43
 
 
44
    if( m_id.startsWith("R") || m_id.startsWith("GP") )
 
45
    {
 
46
        m_pinType = 1;
 
47
        
 
48
        m_port = m_id.at(1).toLatin1();
 
49
        m_pinN = m_id.mid(2,1).toInt();
 
50
 
 
51
        if( !iopin )
 
52
        {
 
53
            qDebug() << "PICComponentPin::attach : iopin is NULL: "<< m_id << endl;
 
54
            return;
 
55
        }
 
56
        if( m_pIOPIN )
 
57
        {
 
58
            qDebug() << "PICComponentPin::attach :Already have an iopin" << endl;
 
59
            return;
 
60
        }
 
61
        m_pIOPIN = iopin;
 
62
        m_pIOPIN->setPicPin( this );
 
63
 
 
64
        if( m_pIOPIN->getType() == OPEN_COLLECTOR )
 
65
        {
 
66
            m_openColl = true;
 
67
            //eSource::setVoltHigh( 0 );
 
68
        }
 
69
    }
 
70
    else if( m_id.startsWith("MCLR") )
 
71
    {
 
72
        m_pinType = 21;
 
73
    }
 
74
    m_attached = true;
 
75
}
 
76
 
 
77
void PICComponentPin::voltChanged()
 
78
{
 
79
    if( !m_isInput ) return;      // Nothing to do if pin is output
 
80
 
 
81
    double volt = m_ePin[0]->getVolt();
 
82
    //qDebug() << "PICComponentPin::setVChanged "<< m_id <<volt;
 
83
    
 
84
    if( m_pinType == 1 )                       // Is an IO Pin
 
85
    {
 
86
        m_pIOPIN->set_nodeVoltage(volt);
 
87
    }
 
88
    else if( m_pinType == 21 )                // reset
 
89
    {
 
90
        if( volt < 3 )  m_processor->hardReset( true );
 
91
        else            m_processor->hardReset( false );
 
92
    }
 
93
}
 
94
 
 
95
void PICComponentPin::pullupNotConnected( bool up )
 
96
{
 
97
    m_pIOPIN->set_nodeVoltage( up? 5:0);
 
98
}
 
99
 
 
100
 
 
101
#include "moc_piccomponentpin.cpp"