Skip to content

Commit 5092595

Browse files
author
neil.hamilton
committed
Add timebase warning to ps6000 examples
1 parent 2193409 commit 5092595

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

ps6000Examples/ps6000BlockAdvancedTriggerExample.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2018-2020 Pico Technology Ltd. See LICENSE file for terms.
2+
# Copyright (C) 2018-2022 Pico Technology Ltd. See LICENSE file for terms.
33
#
44
# PS6000 BLOCK MODE ADVANCED TRIGGER EXAMPLE
55
# This example opens a 6000 driver device, sets up one channel and a window pulse width advanced trigger then collects a block of data.
@@ -89,6 +89,8 @@
8989
maxSamples = preTriggerSamples + postTriggerSamples
9090

9191
# Get timebase information
92+
# Warning: When using this example it may not be possible to access all Timebases as all channels are enabled by default when opening the scope.
93+
# To access these Timebases, set any unused analogue channels to off.
9294
# handle = chandle
9395
# timebase = 8 = timebase
9496
# noSamples = maxSamples

ps6000Examples/ps6000BlockExample.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2018 Pico Technology Ltd. See LICENSE file for terms.
2+
# Copyright (C) 2018-2022 Pico Technology Ltd. See LICENSE file for terms.
33
#
44
# PS6000 BLOCK MODE EXAMPLE
55
# This example opens a 6000 driver device, sets up two channels and a trigger then collects a block of data.
@@ -61,6 +61,8 @@
6161
maxSamples = preTriggerSamples + postTriggerSamples
6262

6363
# Get timebase information
64+
# Warning: When using this example it may not be possible to access all Timebases as all channels are enabled by default when opening the scope.
65+
# To access these Timebases, set any unused analogue channels to off.
6466
# handle = chandle
6567
# timebase = 8 = timebase
6668
# noSamples = maxSamples

ps6000Examples/ps6000RapidBlockExample.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2018 Pico Technology Ltd. See LICENSE file for terms.
2+
# Copyright (C) 2018-2022 Pico Technology Ltd. See LICENSE file for terms.
33
#
44
# ps6000 RAPID BLOCK MODE EXAMPLE
55
# This example opens a 6000 driver device, sets up one channel and a trigger then collects 10 block of data in rapid succession.
@@ -50,6 +50,8 @@
5050
maxsamples = preTriggerSamples + postTriggerSamples
5151

5252
# Gets timebase innfomation
53+
# Warning: When using this example it may not be possible to access all Timebases as all channels are enabled by default when opening the scope.
54+
# To access these Timebases, set any unused analogue channels to off.
5355
# Handle = chandle
5456
# Timebase = 2 = timebase
5557
# Nosample = maxsamples

ps6000Examples/ps6000RapidBlockTriggerTimestampExample.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2018 Pico Technology Ltd. See LICENSE file for terms.
2+
# Copyright (C) 2018-2022 Pico Technology Ltd. See LICENSE file for terms.
33
#
44
# ps6000 RAPID BLOCK MODE EXAMPLE
55
# This example opens a 6000 driver device, sets up one channel and a trigger then collects 10 block of data in rapid succession.
@@ -50,6 +50,8 @@
5050
maxsamples = preTriggerSamples + postTriggerSamples
5151

5252
# Gets timebase innfomation
53+
# Warning: When using this example it may not be possible to access all Timebases as all channels are enabled by default when opening the scope.
54+
# To access these Timebases, set any unused analogue channels to off.
5355
# Handle = chandle
5456
# Timebase = 2 = timebase
5557
# Nosample = maxsamples

0 commit comments

Comments
 (0)