Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
8d796eb4
Commit
8d796eb4
authored
8 years ago
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ssab card methods PostCreate and SetAddress added to calculate addres for cards
parent
3df84517
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
864 additions
and
59 deletions
+864
-59
ssabox/lib/wb/src/wb_c_ssab_baseacard.cpp
ssabox/lib/wb/src/wb_c_ssab_baseacard.cpp
+32
-0
ssabox/lib/wb/src/wb_c_ssab_basedicard.cpp
ssabox/lib/wb/src/wb_c_ssab_basedicard.cpp
+29
-0
ssabox/lib/wb/src/wb_c_ssab_basedocard.cpp
ssabox/lib/wb/src/wb_c_ssab_basedocard.cpp
+29
-0
ssabox/lib/wb/src/wb_c_ssab_co4up.cpp
ssabox/lib/wb/src/wb_c_ssab_co4up.cpp
+103
-0
ssabox/lib/wb/src/wb_ssab_card_address.cpp
ssabox/lib/wb/src/wb_ssab_card_address.cpp
+200
-0
ssabox/lib/wb/src/wb_ssab_card_address.h
ssabox/lib/wb/src/wb_ssab_card_address.h
+44
-0
ssabox/lib/wb/src/wb_ssabox.meth
ssabox/lib/wb/src/wb_ssabox.meth
+1
-0
ssabox/wbl/mcomp/src/ssabox.wb_load
ssabox/wbl/mcomp/src/ssabox.wb_load
+425
-58
wb/exp/wb/src/pwr_wb_palette.cnf
wb/exp/wb/src/pwr_wb_palette.cnf
+1
-1
No files found.
ssabox/lib/wb/src/wb_c_ssab_baseacard.cpp
View file @
8d796eb4
...
@@ -38,6 +38,7 @@
...
@@ -38,6 +38,7 @@
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
#include <math.h>
#include "wb_pwrs.h"
#include "wb_pwrs.h"
#include "wb_ldh_msg.h"
#include "wb_ldh_msg.h"
#include "wb_pwrb_msg.h"
#include "wb_pwrb_msg.h"
...
@@ -47,6 +48,9 @@
...
@@ -47,6 +48,9 @@
#include "wb_ldh.h"
#include "wb_ldh.h"
#include "wb_wsx.h"
#include "wb_wsx.h"
#include "wb_session.h"
#include "wb_session.h"
#include "wb_dbcb.h"
#include "wb_ssab_card_address.h"
//
//
// Syntax check.
// Syntax check.
...
@@ -61,11 +65,39 @@ static pwr_tStatus SyntaxCheck (
...
@@ -61,11 +65,39 @@ static pwr_tStatus SyntaxCheck (
return
wsx_CheckIoDevice
(
Session
,
Object
,
ErrorCount
,
WarningCount
,
wsx_mCardOption_ErrorLimits
);
return
wsx_CheckIoDevice
(
Session
,
Object
,
ErrorCount
,
WarningCount
,
wsx_mCardOption_ErrorLimits
);
}
}
static
pwr_tStatus
PostCreate
(
ldh_tSesContext
Session
,
pwr_tOid
Object
,
pwr_tOid
Father
,
pwr_tCid
Class
)
{
pwr_tStatus
sts
;
sts
=
dbcb_InsertPlcThreadObject
(
Session
,
Object
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
ssab_SetAddress
(
(
wb_session
*
)
Session
,
Object
);
return
sts
;
}
static
pwr_tStatus
SetAddress
(
ldh_sMenuCall
*
ip
)
{
pwr_tStatus
sts
;
sts
=
ssab_SetAddress
(
(
wb_session
*
)
ip
->
PointedSession
,
ip
->
Pointed
.
Objid
);
return
sts
;
}
//
//
// Every method to be exported to the workbench should be registred here.
// Every method to be exported to the workbench should be registred here.
//
//
pwr_dExport
pwr_BindMethods
(
Ssab_BaseACard
)
=
{
pwr_dExport
pwr_BindMethods
(
Ssab_BaseACard
)
=
{
pwr_BindMethod
(
SyntaxCheck
),
pwr_BindMethod
(
SyntaxCheck
),
pwr_BindMethod
(
PostCreate
),
pwr_BindMethod
(
SetAddress
),
pwr_NullMethod
pwr_NullMethod
};
};
This diff is collapsed.
Click to expand it.
ssabox/lib/wb/src/wb_c_ssab_basedicard.cpp
View file @
8d796eb4
...
@@ -47,6 +47,8 @@
...
@@ -47,6 +47,8 @@
#include "wb_ldh.h"
#include "wb_ldh.h"
#include "wb_wsx.h"
#include "wb_wsx.h"
#include "wb_session.h"
#include "wb_session.h"
#include "wb_dbcb.h"
#include "wb_ssab_card_address.h"
//
//
// Syntax check.
// Syntax check.
...
@@ -62,11 +64,38 @@ static pwr_tStatus SyntaxCheck (
...
@@ -62,11 +64,38 @@ static pwr_tStatus SyntaxCheck (
return
wsx_CheckIoDevice
(
Session
,
Object
,
ErrorCount
,
WarningCount
,
wsx_mCardOption_ErrorLimits
);
return
wsx_CheckIoDevice
(
Session
,
Object
,
ErrorCount
,
WarningCount
,
wsx_mCardOption_ErrorLimits
);
}
}
static
pwr_tStatus
PostCreate
(
ldh_tSesContext
Session
,
pwr_tOid
Object
,
pwr_tOid
Father
,
pwr_tCid
Class
)
{
pwr_tStatus
sts
;
sts
=
dbcb_InsertPlcThreadObject
(
Session
,
Object
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
ssab_SetAddress
(
(
wb_session
*
)
Session
,
Object
);
return
sts
;
}
static
pwr_tStatus
SetAddress
(
ldh_sMenuCall
*
ip
)
{
pwr_tStatus
sts
;
sts
=
ssab_SetAddress
(
(
wb_session
*
)
ip
->
PointedSession
,
ip
->
Pointed
.
Objid
);
return
sts
;
}
//
//
// Every method to be exported to the workbench should be registred here.
// Every method to be exported to the workbench should be registred here.
//
//
pwr_dExport
pwr_BindMethods
(
Ssab_BaseDiCard
)
=
{
pwr_dExport
pwr_BindMethods
(
Ssab_BaseDiCard
)
=
{
pwr_BindMethod
(
SyntaxCheck
),
pwr_BindMethod
(
SyntaxCheck
),
pwr_BindMethod
(
PostCreate
),
pwr_BindMethod
(
SetAddress
),
pwr_NullMethod
pwr_NullMethod
};
};
This diff is collapsed.
Click to expand it.
ssabox/lib/wb/src/wb_c_ssab_basedocard.cpp
View file @
8d796eb4
...
@@ -47,6 +47,8 @@
...
@@ -47,6 +47,8 @@
#include "wb_ldh.h"
#include "wb_ldh.h"
#include "wb_wsx.h"
#include "wb_wsx.h"
#include "wb_session.h"
#include "wb_session.h"
#include "wb_dbcb.h"
#include "wb_ssab_card_address.h"
//
//
// Syntax check.
// Syntax check.
...
@@ -61,11 +63,38 @@ static pwr_tStatus SyntaxCheck (
...
@@ -61,11 +63,38 @@ static pwr_tStatus SyntaxCheck (
return
wsx_CheckIoDevice
(
Session
,
Object
,
ErrorCount
,
WarningCount
,
wsx_mCardOption_ErrorLimits
);
return
wsx_CheckIoDevice
(
Session
,
Object
,
ErrorCount
,
WarningCount
,
wsx_mCardOption_ErrorLimits
);
}
}
static
pwr_tStatus
PostCreate
(
ldh_tSesContext
Session
,
pwr_tOid
Object
,
pwr_tOid
Father
,
pwr_tCid
Class
)
{
pwr_tStatus
sts
;
sts
=
dbcb_InsertPlcThreadObject
(
Session
,
Object
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
ssab_SetAddress
(
(
wb_session
*
)
Session
,
Object
);
return
sts
;
}
static
pwr_tStatus
SetAddress
(
ldh_sMenuCall
*
ip
)
{
pwr_tStatus
sts
;
sts
=
ssab_SetAddress
(
(
wb_session
*
)
ip
->
PointedSession
,
ip
->
Pointed
.
Objid
);
return
sts
;
}
//
//
// Every method to be exported to the workbench should be registred here.
// Every method to be exported to the workbench should be registred here.
//
//
pwr_dExport
pwr_BindMethods
(
Ssab_BaseDoCard
)
=
{
pwr_dExport
pwr_BindMethods
(
Ssab_BaseDoCard
)
=
{
pwr_BindMethod
(
SyntaxCheck
),
pwr_BindMethod
(
SyntaxCheck
),
pwr_BindMethod
(
PostCreate
),
pwr_BindMethod
(
SetAddress
),
pwr_NullMethod
pwr_NullMethod
};
};
This diff is collapsed.
Click to expand it.
ssabox/lib/wb/src/wb_c_ssab_co4up.cpp
0 → 100644
View file @
8d796eb4
/*
* Proview Open Source Process Control.
* Copyright (C) 2005-2016 SSAB EMEA AB.
*
* This file is part of Proview.
*
* 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 Proview. If not, see <http://www.gnu.org/licenses/>
*
* Linking Proview statically or dynamically with other modules is
* making a combined work based on Proview. Thus, the terms and
* conditions of the GNU General Public License cover the whole
* combination.
*
* In addition, as a special exception, the copyright holders of
* Proview give you permission to, from the build function in the
* Proview Configurator, combine Proview with modules generated by the
* Proview PLC Editor to a PLC program, regardless of the license
* terms of these modules. You may copy and distribute the resulting
* combined work under the terms of your choice, provided that every
* copy of the combined work is accompanied by a complete copy of
* the source code of Proview (the version used to produce the
* combined work), being distributed under the terms of the GNU
* General Public License plus this exception.
**/
/* wb_c_ssab_co4up.cpp -- work bench methods of the Ssab_CO4uP class */
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "wb_pwrs.h"
#include "wb_ldh_msg.h"
#include "wb_pwrb_msg.h"
#include "pwr_baseclasses.h"
#include "pwr_basecomponentclasses.h"
#include "pwr_ssaboxclasses.h"
#include "wb_ldh.h"
#include "wb_wsx.h"
#include "wb_session.h"
#include "wb_dbcb.h"
#include "wb_ssab_card_address.h"
//
// Syntax check.
//
static
pwr_tStatus
SyntaxCheck
(
ldh_tSesContext
Session
,
pwr_tAttrRef
Object
,
/* current object */
int
*
ErrorCount
,
/* accumulated error count */
int
*
WarningCount
/* accumulated waring count */
)
{
return
wsx_CheckIoDevice
(
Session
,
Object
,
ErrorCount
,
WarningCount
,
wsx_mCardOption_ErrorLimits
);
}
static
pwr_tStatus
PostCreate
(
ldh_tSesContext
Session
,
pwr_tOid
Object
,
pwr_tOid
Father
,
pwr_tCid
Class
)
{
pwr_tStatus
sts
;
sts
=
dbcb_InsertPlcThreadObject
(
Session
,
Object
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
ssab_SetAddress
(
(
wb_session
*
)
Session
,
Object
);
return
sts
;
}
static
pwr_tStatus
SetAddress
(
ldh_sMenuCall
*
ip
)
{
pwr_tStatus
sts
;
sts
=
ssab_SetAddress
(
(
wb_session
*
)
ip
->
PointedSession
,
ip
->
Pointed
.
Objid
);
return
sts
;
}
//
// Every method to be exported to the workbench should be registred here.
//
pwr_dExport
pwr_BindMethods
(
Ssab_CO4uP
)
=
{
pwr_BindMethod
(
SyntaxCheck
),
pwr_BindMethod
(
PostCreate
),
pwr_BindMethod
(
SetAddress
),
pwr_NullMethod
};
This diff is collapsed.
Click to expand it.
ssabox/lib/wb/src/wb_ssab_card_address.cpp
0 → 100644
View file @
8d796eb4
/*
* Proview Open Source Process Control.
* Copyright (C) 2005-2016 SSAB EMEA AB.
*
* This file is part of Proview.
*
* 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 Proview. If not, see <http://www.gnu.org/licenses/>
*
* Linking Proview statically or dynamically with other modules is
* making a combined work based on Proview. Thus, the terms and
* conditions of the GNU General Public License cover the whole
* combination.
*
* In addition, as a special exception, the copyright holders of
* Proview give you permission to, from the build function in the
* Proview Configurator, combine Proview with modules generated by the
* Proview PLC Editor to a PLC program, regardless of the license
* terms of these modules. You may copy and distribute the resulting
* combined work under the terms of your choice, provided that every
* copy of the combined work is accompanied by a complete copy of
* the source code of Proview (the version used to produce the
* combined work), being distributed under the terms of the GNU
* General Public License plus this exception.
**/
/* wb_ssab_card_address.cpp -- Calculate address for ssab cards */
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "wb_pwrs.h"
#include "wb_ldh_msg.h"
#include "wb_pwrb_msg.h"
#include "pwr_baseclasses.h"
#include "pwr_basecomponentclasses.h"
#include "pwr_ssaboxclasses.h"
#include "wb_ldh.h"
#include "wb_session.h"
#include "wb_ssab_card_address.h"
static
bool
addressTypeIsEqual
(
pwr_tCid
cid1
,
pwr_tCid
cid2
)
{
pwr_tCid
groups
[][
5
]
=
{
{
pwr_cClass_Ssab_DO32DKS
,
pwr_cClass_Ssab_DO32DKS_Stall
,
pwr_cClass_Do_HVDO32
,
0
,
0
},
{
pwr_cClass_Ssab_DI32D
,
pwr_cClass_Di_DIX2
,
0
,
0
,
0
},
{
pwr_cClass_Ssab_CO4uP
,
pwr_cClass_Co_CO4uP
,
pwr_cClass_Co_PI24BO
,
0
,
0
},
{
pwr_cClass_Ssab_AI32uP
,
pwr_cClass_Ssab_AI16uP
,
pwr_cClass_Ssab_AI8uP
,
0
,
0
},
{
pwr_cClass_Ssab_AO8uP
,
pwr_cClass_Ssab_AO8uPL
,
0
,
0
,
0
}};
if
(
cid1
==
cid2
)
return
1
;
unsigned
int
group
;
for
(
unsigned
int
i
=
0
;
i
<
sizeof
(
groups
)
/
sizeof
(
groups
[
0
]);
i
++
)
{
// Check if cid1 is member of any group
int
found
=
0
;
for
(
unsigned
int
j
=
0
;
j
<
sizeof
(
groups
[
0
])
/
sizeof
(
groups
[
0
][
0
]);
j
++
)
{
if
(
cid1
==
groups
[
i
][
j
])
{
found
=
1
;
group
=
j
;
break
;
}
}
if
(
found
)
{
// Check if cid2 is in the same group
for
(
unsigned
int
j
=
0
;
j
<
sizeof
(
groups
[
0
])
/
sizeof
(
groups
[
0
][
0
]);
j
++
)
{
if
(
cid2
==
groups
[
i
][
j
])
return
1
;
}
return
0
;
}
}
return
0
;
}
pwr_tStatus
ssab_SetAddress
(
wb_session
*
sp
,
pwr_tOid
oid
)
{
wb_object
o
=
sp
->
object
(
oid
);
wb_object
parent
=
o
.
parent
();
pwr_tUInt32
nyno
=
0
;
pwr_tUInt32
lynxno
=
0
;
pwr_tUInt32
bitno
=
0
;
pwr_tUInt32
offset
=
0
;
int
no
=
1
;
for
(
wb_object
child
=
parent
.
first
();
child
;
child
=
child
.
after
())
{
if
(
addressTypeIsEqual
(
o
.
cid
(),
child
.
cid
()))
{
if
(
child
.
oid
().
oix
==
o
.
oid
().
oix
)
break
;
no
++
;
}
}
switch
(
o
.
cid
())
{
case
pwr_cClass_Ssab_DO32DKS
:
case
pwr_cClass_Ssab_DO32DKS_Stall
:
case
pwr_cClass_Do_HVDO32
:
nyno
=
0176000
+
04
*
(
no
-
1
);
bitno
=
(
nyno
-
0176000
)
/
2
;
lynxno
=
4193280
+
4
*
(
no
-
1
);
break
;
case
pwr_cClass_Ssab_DI32D
:
case
pwr_cClass_Di_DIX2
:
offset
=
(
no
==
17
||
no
==
18
)
?
0300
:
0000
;
nyno
=
0176100
+
04
*
(
no
-
1
)
+
offset
;
bitno
=
(
nyno
-
0176000
)
/
2
;
lynxno
=
4193344
+
4
*
(
no
-
1
)
+
offset
;
break
;
case
pwr_cClass_Ssab_CO4uP
:
case
pwr_cClass_Co_CO4uP
:
case
pwr_cClass_Co_PI24BO
:
nyno
=
0176300
+
020
*
(
no
-
1
)
+
offset
;
bitno
=
(
nyno
-
0176000
)
/
2
;
lynxno
=
4193472
+
16
*
(
no
-
1
)
+
offset
;
break
;
case
pwr_cClass_Ao_HVAO4
:
nyno
=
0176200
+
010
*
(
no
-
1
)
+
offset
;
bitno
=
(
nyno
-
0176000
)
/
2
;
lynxno
=
4193416
+
8
*
(
no
-
1
)
+
offset
;
break
;
case
pwr_cClass_Ai_HVAI32
:
nyno
=
0176400
+
02
*
(
no
-
1
)
+
offset
;
bitno
=
(
nyno
-
0176000
)
/
2
;
lynxno
=
4193536
+
2
*
(
no
-
1
)
+
offset
;
break
;
case
pwr_cClass_Ssab_AI32uP
:
case
pwr_cClass_Ssab_AI16uP
:
case
pwr_cClass_Ssab_AI8uP
:
offset
=
(
no
==
9
||
no
==
10
)
?
0000
:
02000
;
nyno
=
0165000
+
0100
*
(
no
-
1
)
+
offset
;
bitno
=
(
nyno
-
0140000
)
/
64
;
lynxno
=
4188672
+
64
*
(
no
-
1
)
+
offset
;
break
;
case
pwr_cClass_Ssab_AO8uP
:
case
pwr_cClass_Ssab_AO8uPL
:
nyno
=
0176200
+
020
*
(
no
-
1
)
+
offset
;
bitno
=
(
nyno
-
0174000
)
/
16
;
lynxno
=
4193408
+
16
*
(
no
-
1
)
+
offset
;
break
;
case
pwr_cClass_Ssab_PIDuP
:
nyno
=
0175400
+
04
*
(
no
-
1
)
+
offset
;
bitno
=
(
nyno
-
0174000
)
/
4
;
lynxno
=
4193024
+
4
*
(
no
-
1
)
+
offset
;
break
;
case
pwr_cClass_Ssab_AO16uP_Logger
:
nyno
=
0175000
+
040
*
(
no
-
1
)
+
offset
;
bitno
=
(
nyno
-
0174000
)
/
4
;
lynxno
=
4192768
+
32
*
(
no
-
1
)
+
offset
;
break
;
default:
return
0
;
}
pwr_tUInt32
bits
=
0
;
pwr_tUInt32
mask
;
for
(
int
i
=
0
;
i
<
8
;
i
++
)
{
mask
=
1
<<
i
;
if
(
bitno
&
mask
)
bits
+=
(
int
)(
pow
(
10
,
i
)
+
0.1
);
}
wb_attribute
a
=
sp
->
attribute
(
o
.
oid
(),
"RtBody"
,
"RegAddress"
);
if
(
!
a
)
return
a
.
sts
();
try
{
sp
->
writeAttribute
(
a
,
(
char
*
)
&
lynxno
,
sizeof
(
lynxno
));
if
(
EVEN
(
sp
->
sts
()))
return
sp
->
sts
();
}
catch
(
wb_error
&
e
)
{
return
e
.
sts
();
}
a
=
sp
->
attribute
(
o
.
oid
(),
"RtBody"
,
"SwitchSettings"
);
if
(
!
a
)
return
a
.
sts
();
try
{
sp
->
writeAttribute
(
a
,
(
char
*
)
&
bits
,
sizeof
(
bits
));
if
(
EVEN
(
sp
->
sts
()))
return
sp
->
sts
();
}
catch
(
wb_error
&
e
)
{
return
e
.
sts
();
}
return
1
;
}
This diff is collapsed.
Click to expand it.
ssabox/lib/wb/src/wb_ssab_card_address.h
0 → 100644
View file @
8d796eb4
/*
* Proview Open Source Process Control.
* Copyright (C) 2005-2016 SSAB EMEA AB.
*
* This file is part of Proview.
*
* 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 Proview. If not, see <http://www.gnu.org/licenses/>
*
* Linking Proview statically or dynamically with other modules is
* making a combined work based on Proview. Thus, the terms and
* conditions of the GNU General Public License cover the whole
* combination.
*
* In addition, as a special exception, the copyright holders of
* Proview give you permission to, from the build function in the
* Proview Configurator, combine Proview with modules generated by the
* Proview PLC Editor to a PLC program, regardless of the license
* terms of these modules. You may copy and distribute the resulting
* combined work under the terms of your choice, provided that every
* copy of the combined work is accompanied by a complete copy of
* the source code of Proview (the version used to produce the
* combined work), being distributed under the terms of the GNU
* General Public License plus this exception.
**/
/* wb_ssab_card_address.h -- Calculate address for ssab cards */
#ifndef wb_ssab_card_address_h
#define wb_ssab_card_address_h
pwr_tStatus
ssab_SetAddress
(
wb_session
*
sp
,
pwr_tOid
oid
);
#endif
This diff is collapsed.
Click to expand it.
ssabox/lib/wb/src/wb_ssabox.meth
View file @
8d796eb4
...
@@ -10,3 +10,4 @@ Do_HVDO32
...
@@ -10,3 +10,4 @@ Do_HVDO32
Ssab_BaseACard
Ssab_BaseACard
Ssab_BaseDiCard
Ssab_BaseDiCard
Ssab_BaseDoCard
Ssab_BaseDoCard
Ssab_CO4uP
\ No newline at end of file
This diff is collapsed.
Click to expand it.
ssabox/wbl/mcomp/src/ssabox.wb_load
View file @
8d796eb4
This diff is collapsed.
Click to expand it.
wb/exp/wb/src/pwr_wb_palette.cnf
View file @
8d796eb4
...
@@ -411,7 +411,7 @@ palette NavigatorPalette
...
@@ -411,7 +411,7 @@ palette NavigatorPalette
class Ssab_AO8uP
class Ssab_AO8uP
class Ssab_AO8uPL
class Ssab_AO8uPL
class Ssab_AO16uP_Logger
class Ssab_AO16uP_Logger
class Ssab_C
o
4uP
class Ssab_C
O
4uP
class Ssab_DI32D
class Ssab_DI32D
class Ssab_DO32DKS
class Ssab_DO32DKS
class Ssab_DO32DKS_Stall
class Ssab_DO32DKS_Stall
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment