PCS Software Scaling

Can you update the pcs software to include the ability to scale one of the inputs(or both). I’d like to visually compare the two inputs but the scales are a bit off(basically comparing the signal and an amplified version and would like to visually see the difference. Something that just lets you type in a number and it prescales the data(so all the information about the signal is scaled too).

This suggested modification is quite specific.

At the moment I can suggest you a workaround:
You can import the data from the oscilloscope to an Excel spreadsheet via the WinDSO.DLL.
There you can then scale the data and do some calculations too…
Only this simple VBA macro is needed to use:

[code]Option Explicit
Dim DataBuffer1(0 To 5000) As Long
Dim DataBuffer2(0 To 5000) As Long
Private Declare Sub ReadCh1 Lib “DSOLink.dll” (Buffer As Long)
Private Declare Sub ReadCh2 Lib “DSOLink.dll” (Buffer As Long)
Private Declare Function DataReady Lib “DSOLink.dll” () As Boolean

Sub Read_Data()
Dim i As Long
ReadCh1 DataBuffer1(0)
ReadCh2 DataBuffer2(0)
With ActiveSheet
For i = 0 To 4100
.Cells(i + 2, 2) = DataBuffer1(i)
.Cells(i + 2, 3) = DataBuffer2(i)
Next i
End With
End Sub[/code]
Here’s an Excel screenshot as an example:


Here’s the link to download the Excel workbook including the macro:
box.net/shared/aim4bt5uce