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
74514f9c
Commit
74514f9c
authored
Sep 18, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
f17ecf59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
110 additions
and
1 deletion
+110
-1
src/changelog.txt
src/changelog.txt
+10
-1
src/wbl/pwrb/src/pwrb_td_sevhistoptionsmask.wb_load
src/wbl/pwrb/src/pwrb_td_sevhistoptionsmask.wb_load
+100
-0
No files found.
src/changelog.txt
View file @
74514f9c
...
@@ -90,4 +90,13 @@
...
@@ -90,4 +90,13 @@
080623 cs co New user database format and password encryption changed.
080623 cs co New user database format and password encryption changed.
080623 cs rtt Login with Proview username and password required. Commands 'login' and 'logout' added.
080623 cs rtt Login with Proview username and password required. Commands 'login' and 'logout' added.
080624 cs co pwr_user: command 'login' added. Write access disabled without administrator privilege.
080624 cs co pwr_user: command 'login' added. Write access disabled without administrator privilege.
080624 cs pwrb In class User, attribute UserName set constant, and Password removed.
080624 cs pwrb In class NodeConfig, attribute RemoteAccessType added.
080626 cs pwrb Bit AuthorizedKeysFile added to type DistrComponentMask.
080626 cs pwrb Functionobject GetDataInput added. This makes it possible to define data inputs in a function object class with template plc code.
080826 cs plc Code for CStoExtXxx was missing, except for Float32.
080903 cs gdh Error status for subscription caused other subscription to be ignored.
080905 cs qcom Qcom link without nethandler connection implemented. Configuration attribute in FriendNodeConfig object, Connection.
080905 cs qcom Argument -n added to rt_qmon for start without the presence of rt_neth.
080905 cs pkg New package pwrsev for Storage Environment.
080915 cs trend Zero Multiple attribute in DsTrend object caused termination of rt_trend.
src/wbl/pwrb/src/pwrb_td_sevhistoptionsmask.wb_load
0 → 100644
View file @
74514f9c
!
! Proview $Id: pwrb_td_sevhistoptionsmask.wb_load,v 1.1 2008-09-18 15:09:24 claes Exp $
! Copyright (C) 2005 SSAB Oxelösund 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_sevhistoptionsmask.wb_load -- Defines the mask type SevHistOptionsMask
!
SObject pwrb:Type
!/**
! @Version 1.0
! @Group Types
! Options attribute type in SevHist objects.
!
! @b See also
! @classlink SevHist pwrb_sevhist.html
!*/
Object SevHistOptionsMask $TypeDef 46
Body SysBody
Attr TypeRef = "pwrs:Type-$Mask"
Attr PgmName = "SevOptionsMask"
EndBody
!/**
! Time storage format is Posix Time.
! If this bit in not set, the storage format is Sql time.
! The sql time is displayed by sql as a readable time, while the posix time is
! displayed as the elapsed time since 1970-01-01 in seconds.
! In Mysql the size for Posix time is 4 bytes and the size for sql time 8 bytes.
! The resolution is 1 second. If higher resulution in needed, use the
! HighTimeResoution bit.
!*/
Object PosixTime $Bit
Body SysBody
Attr PgmName = "PosixTime"
Attr Text = "PosixTime"
Attr Value = 1
EndBody
EndObject
!/**
! HighTimeResolution increases the time resolution from seconds to nanoseconds.
! An additional nono second variable is stored with the size 4 bytes.
!*/
Object HighTimeResolution $Bit
Body SysBody
Attr PgmName = "HighTimeResolution"
Attr Text = "HighTimeResolution"
Attr Value = 2
EndBody
EndObject
!/**
! The ReadOptimized bit will store an additional id value for each value
! which decreases the time to read data. The size of the id variable is
! 4 bytes, if the HighTimeResolution bit is set the size is 8 bytes.
!*/
Object ReadOptimized $Bit
Body SysBody
Attr PgmName = "ReadOptimized"
Attr Text = "ReadOptimized"
Attr Value = 4
EndBody
EndObject
!/**
! The deadband is a range around the last stored value, where no new values
! will be stored, i.e a value has to differ more than the deadband/2 from
! the last stored value to be stored.
! Set the UseDeadBand bit to activate the deadband function. Note that the value
! of the deadband also has to be set in the DeadBand Attribute of the SevHist object.
!
! UseDeadBand will increase the storage size with 1 byte. The ReadOptimized bit
! also has to be set.
!*/
Object UseDeadBand $Bit
Body SysBody
Attr PgmName = "UseDeadBand"
Attr Text = "UseDeadBand"
Attr Value = 8
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