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
49eea652
Commit
49eea652
authored
Sep 11, 2009
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New enumeration type for OpMode in PID mode objects
parent
1d3cdc79
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
2 deletions
+71
-2
bcomp/wbl/bcomp/src/basecomponent.wb_load
bcomp/wbl/bcomp/src/basecomponent.wb_load
+1
-1
src/wbl/pwrb/src/pwrb_c_mode.wb_load
src/wbl/pwrb/src/pwrb_c_mode.wb_load
+1
-1
src/wbl/pwrb/src/pwrb_td_pidopmodeenum.wb_load
src/wbl/pwrb/src/pwrb_td_pidopmodeenum.wb_load
+69
-0
No files found.
bcomp/wbl/bcomp/src/basecomponent.wb_load
View file @
49eea652
...
@@ -51348,7 +51348,7 @@ and no Auto/Man button."
...
@@ -51348,7 +51348,7 @@ and no Auto/Man button."
Object OpMod $Attribute 13 18-MAY-2006 14:35:03.24
Object OpMod $Attribute 13 18-MAY-2006 14:35:03.24
Body SysBody 18-MAY-2006 14:38:30.03
Body SysBody 18-MAY-2006 14:38:30.03
Attr PgmName = "OpMod"
Attr PgmName = "OpMod"
Attr TypeRef = "pwrb:Type-Pid
ModeMask
"
Attr TypeRef = "pwrb:Type-Pid
OpModeEnum
"
EndBody
EndBody
EndObject
EndObject
!/**
!/**
src/wbl/pwrb/src/pwrb_c_mode.wb_load
View file @
49eea652
...
@@ -275,7 +275,7 @@ SObject pwrb:Class
...
@@ -275,7 +275,7 @@ SObject pwrb:Class
!*/
!*/
Object OpMod $Intern 12
Object OpMod $Intern 12
Body SysBody
Body SysBody
Attr TypeRef = "pwrb:Type-Pid
ModeMask
"
Attr TypeRef = "pwrb:Type-Pid
OpModeEnum
"
Attr GraphName = "OpMod"
Attr GraphName = "OpMod"
EndBody
EndBody
EndObject
EndObject
...
...
src/wbl/pwrb/src/pwrb_td_pidopmodeenum.wb_load
0 → 100644
View file @
49eea652
!
! Proview $Id$
! Copyright (C) 2005 SSAB Oxelsund AB.
!
! 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 the program, if not, write to the Free Software
! Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
!
! pwrb_pidopmodeenum.wb_load -- Defines the enum type PidOpModeEnum
!
SObject pwrb:Type
!/**
! @Version 1.0
! @Group Types
! Enumeration for Manual/Auto/Cascade mode in a PID Mode object.
!
! @b See also
! @classlink Mode pwrb_mode.html
!*/
Object PidOpModeEnum $TypeDef 47
Body SysBody
Attr TypeRef = "pwrs:Type-$Enum"
EndBody
!/**
! Manual mode.
!*/
Object Manual $Value
Body SysBody
Attr PgmName = "Manual"
Attr Text = "Manual"
Attr Value = 1
EndBody
EndObject
!/**
! Auto mode.
!*/
Object Auto $Value
Body SysBody
Attr PgmName = "Auto"
Attr Text = "Auto"
Attr Value = 2
EndBody
EndObject
!/**
! Cascade.
!*/
Object Cascade $Value
Body SysBody
Attr PgmName = "Cascade"
Attr Text = "Cascade"
Attr Value = 4
EndBody
EndObject
EndObject
EndSObject
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