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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/***************************************************************************
* Copyright (C) 2003 by David Saxton *
* david@bluehaze.org *
* *
* 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. *
***************************************************************************/
#include "micropackage.h"
#include <kdebug.h>
PicPin::PicPin()
{
pinID = "INVALID";
type = PicPin::type_bidir;
portName = "INVALID";
portPosition = -1;
}
PicPin::PicPin( const QString &_pinID, PicPin::pin_type _type, const QString &_portName, int _portPosition )
{
pinID = _pinID;
type = _type;
portName = _portName;
portPosition = _portPosition;
}
MicroPackage::MicroPackage( const int pinCount )
{
m_numPins = pinCount;
}
MicroPackage::~MicroPackage()
{
}
void MicroPackage::assignPin( int pinPosition, PicPin::pin_type type, const QString& pinID, const QString& portName, int portPosition )
{
if ( m_picPinMap.find(pinPosition) != m_picPinMap.end() )
{
kdError() << "PicDevice::assignBidirPin: Attempting to reset pin "<<pinPosition<<endl;
return;
}
if ( !m_portNames.contains(portName) && !portName.isEmpty() )
{
m_portNames.append(portName);
m_portNames.sort();
}
m_picPinMap[pinPosition] = PicPin( pinID, type, portName, portPosition );
}
PicPinMap MicroPackage::pins( uint pinType, const QString& portName )
{
if ( pinType == 0 ) pinType = (1<<30)-1;
PicPinMap list;
const PicPinMap::iterator picPinListEnd = m_picPinMap.end();
for ( PicPinMap::iterator it = m_picPinMap.begin(); it != picPinListEnd; ++it )
{
if ( (it.data().type & pinType) &&
(portName.isEmpty() || it.data().portName == portName) )
{
list[it.key()] = it.data();
}
}
return list;
}
QStringList MicroPackage::pinIDs( uint pinType, const QString& portName )
{
if ( pinType == 0 ) pinType = (1<<30)-1;
QStringList list;
const PicPinMap::iterator picPinListEnd = m_picPinMap.end();
for ( PicPinMap::iterator it = m_picPinMap.begin(); it != picPinListEnd; ++it )
{
if ( (it.data().type & pinType) &&
(portName.isEmpty() || it.data().portName == portName) )
{
list.append( it.data().pinID );
}
}
return list;
}
int MicroPackage::pinCount( uint pinType, const QString& portName )
{
if ( pinType == 0 ) pinType = (1<<30)-1;
int count = 0;
const PicPinMap::iterator picPinListEnd = m_picPinMap.end();
for ( PicPinMap::iterator it = m_picPinMap.begin(); it != picPinListEnd; ++it )
{
if ( (it.data().type & pinType) &&
(portName.isEmpty() || it.data().portName == portName) ) count++;
}
return count;
}
|