Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CYBERSTARx1000
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Tango devices
MeasureInstruments
CYBERSTARx1000
Commits
b7107d01
Commit
b7107d01
authored
Jan 23, 2009
by
Jean Coquet
Browse files
Options
Downloads
Patches
Plain Diff
support X2000 : le peaking time peut maintenant adopter les valeurs 50 et 100
parent
e2e5253c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/CYBERSTARx1000.cpp
+15
-4
15 additions, 4 deletions
src/CYBERSTARx1000.cpp
with
15 additions
and
4 deletions
src/CYBERSTARx1000.cpp
+
15
−
4
View file @
b7107d01
static
const
char
*
RcsId
=
"$Header: /users/chaize/newsvn/cvsroot/Instrumentation/CYBERSTAR/src/CYBERSTARx1000.cpp,v 1.2
3
200
8-11-17 15:27:13 buteau
Exp $"
;
static
const
char
*
RcsId
=
"$Header: /users/chaize/newsvn/cvsroot/Instrumentation/CYBERSTAR/src/CYBERSTARx1000.cpp,v 1.2
4
200
9-01-23 08:58:52 jean_coquet
Exp $"
;
//+=============================================================================
//
// file : CYBERSTARx1000.cpp
...
...
@@ -11,11 +11,15 @@ static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/Instrumentatio
//
// project : TANGO Device Server
//
// $Author:
buteau
$
// $Author:
jean_coquet
$
//
// $Revision: 1.2
3
$
// $Revision: 1.2
4
$
//
// $Log: not supported by cvs2svn $
// Revision 1.23 2008/11/17 15:27:13 buteau
// - tests DIFFABS 17/11
// supression caractres dans trame de reponse
//
// Revision 1.22 2008/07/29 17:13:39 buteau
// Pb MANTIS 9936
//
...
...
@@ -121,6 +125,8 @@ const double PEAKING_TIME_VALUE1= 300.0; //possible values for peaking time are
const
double
PEAKING_TIME_VALUE2
=
500.0
;
const
double
PEAKING_TIME_VALUE3
=
1000.0
;
const
double
PEAKING_TIME_VALUE4
=
3000.0
;
const
double
PEAKING_TIME_VALUE5
=
50.0
;
const
double
PEAKING_TIME_VALUE6
=
100.0
;
const
double
MAX_THRESHOLD_SIZE
=
10.0
;
//dont move threshold by more than x Volts otherwise instrument doesnt apply voltages
const
double
SLEEPING_TIME_BETWEEN_THRESHOLD_INCREMENTS
=
00000000
;
// After last tests it seems that it is useless to wait
...
...
@@ -561,7 +567,12 @@ namespace CYBERSTARx1000_ns
double
pkt
=
attr_peakingTime_write
;
if
(
pkt
==
PEAKING_TIME_VALUE1
||
pkt
==
PEAKING_TIME_VALUE2
||
pkt
==
PEAKING_TIME_VALUE3
||
pkt
==
PEAKING_TIME_VALUE4
)
if
(
pkt
==
PEAKING_TIME_VALUE1
||
pkt
==
PEAKING_TIME_VALUE2
||
pkt
==
PEAKING_TIME_VALUE3
||
pkt
==
PEAKING_TIME_VALUE4
||
pkt
==
PEAKING_TIME_VALUE5
||
pkt
==
PEAKING_TIME_VALUE6
)
{
string
preset
=
XString
<
double
>::
convertToString
(
pkt
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment