Search found 97 matches
- Fri Sep 25, 2015 12:48 pm
- Forum: PicoScope for Mac
- Topic: PicoScope 6.11.6 Beta for MacOSX
- Replies: 17
- Views: 12800
Re: PicoScope 6.11.6 Beta for MacOSX
Hi Roland I’m sorry to hear you’re having problems with the new build of PicoScope for Mac. We are aware of a few customers who are experiencing sluggish behaviour with the UI. We are currently investigating potential solutions. I don’t think the spec of your system is the problem as it is similar t...
- Mon Aug 04, 2014 7:48 am
- Forum: PicoScope 6 for Windows
- Topic: log-scale?
- Replies: 26
- Views: 8927
Re: log-scale?
Our latest beta release of PicoScope, 6.10.2, is now available for download. This release has long awaited log-scale feature.
You can download our beta free of charge from: http://labs.picotech.com/. Please download it and let us know what you think.
You can download our beta free of charge from: http://labs.picotech.com/. Please download it and let us know what you think.
- Thu Jul 15, 2010 1:43 pm
- Forum: Getting Started
- Topic: Cannot uninstall as old MSI is not around anymore
- Replies: 1
- Views: 2488
Re: Cannot uninstall as old MSI is not around anymore
Hi Christian As the installation cache has been removed it is not possible to uninstall PicoScope. However, it is possible to remove the installation from the MSI database to allow you to install a later version of PicoScope. The later version should overwrite the old application, drivers, etc so th...
- Thu Jun 17, 2010 7:14 am
- Forum: PicoScope 6 for Windows
- Topic: trace.xml clobbering - 6.4.28 WinXP SP3
- Replies: 5
- Views: 2670
Re: trace.xml clobbering - 6.4.28 WinXP SP3
Hi Armino
We are already aware of the problem with the bloated trace file. This only affect PS2000 and PS3000 series scopes.
The good news is that we've already fixed it and it will be available in the next release of PicoScope 6.
We are already aware of the problem with the bloated trace file. This only affect PS2000 and PS3000 series scopes.
The good news is that we've already fixed it and it will be available in the next release of PicoScope 6.
- Thu May 06, 2010 7:05 am
- Forum: General Software Discussions
- Topic: Silent Driver Installation - TC08 USB
- Replies: 6
- Views: 4381
Re: Silent Driver Installation - TC08 USB
You are not really supposed to distribute 32 and 64 bit drivers in the same package but we do. It makes the user experience much simpler. The way I do it is to have the two separate driver package conditionally installed depending on the arch. There will always be a DPInst in the system directory an...
- Tue May 04, 2010 7:49 am
- Forum: .Net Languages (C#, VB.Net, .)
- Topic: ps5000SetEtsTimeBuffer (64-bit) and VB.net
- Replies: 4
- Views: 3851
Re: ps5000SetEtsTimeBuffer (64-bit) and VB.net
It looks like the third parameter is the culprit. bufferLth should be an Integer.
You should also be careful with the return type - this needs to be an Integer too, otherwise your return values may look odd.
Hope this helps
You should also be careful with the return type - this needs to be an Integer too, otherwise your return values may look odd.
Hope this helps
- Tue May 04, 2010 7:45 am
- Forum: General Software Discussions
- Topic: Silent Driver Installation - TC08 USB
- Replies: 6
- Views: 4381
Re: Silent Driver Installation - TC08 USB
You can perform a silent install on x64 but you will require a different driver package. If you install PicoScope onto a x64 system, you will find a folder called 'system' in the installation directory. This folder contains all the files required for the x64 driver package.
Hope this helps
Hope this helps
- Thu Apr 29, 2010 10:30 am
- Forum: .Net Languages (C#, VB.Net, .)
- Topic: ps5000SetEtsTimeBuffer (64-bit) and VB.net
- Replies: 4
- Views: 3851
Re: ps5000SetEtsTimeBuffer (64-bit) and VB.net
Hellow Jay It doesnt sound like you are doing anything wrong. It could be your function prototype causing you the problem. PicoScope 6 also calls this funtion so we know it is possible to call it from .net. Here is our prototype (C#): [DllImport(_DRIVER_FILENAME, EntryPoint = "ps5000SetEtsTimeBuffer...
- Mon Mar 29, 2010 10:56 am
- Forum: PicoScope 6 for Windows
- Topic: Installer & program enhancement request
- Replies: 1
- Views: 1364
Re: Installer & program enhancement request
Hi Brian Thanks for you comments. The installer attempts to connect to CRL.VERISIGN.NET to verify the digital signature. The signature is applied so that windows can be satisfied that the software has not changed between Pico uploading it and you downloading it. This is a good thing because it ensur...
- Thu Jan 21, 2010 2:20 pm
- Forum: .Net Languages (C#, VB.Net, .)
- Topic: PicoHRDL.dll and .Net 2.0
- Replies: 1
- Views: 2204
Re: PicoHRDL.dll and .Net 2.0
We have no .net examples specific to the HRDL but our other examples should point you in the right direction when it comes to interop. A useful reference for interop can also be found here: http://msdn.microsoft.com/en-us/library/ms235282.aspx If you are having any particular problems, please post t...
- Thu Dec 24, 2009 9:54 am
- Forum: .Net Languages (C#, VB.Net, .)
- Topic: TC-08 with visual basic 2008
- Replies: 3
- Views: 3815
Re: TC-08 with visual basic 2008
VB can call into DLLs so the tc0832.dll should be no problem. We have no .net examples specific to the tc08 but our other examples should point you in the right direction when it comes to interop. A useful reference for interop can also be found here: http://msdn.microsoft.com/en-us/library/ms235282...
- Thu Dec 17, 2009 9:40 am
- Forum: .Net Languages (C#, VB.Net, .)
- Topic: UsbAdc11SetInterval...... problems and UsbAdc11GetTimesAndV
- Replies: 1
- Views: 2163
Re: UsbAdc11SetInterval...... problems and UsbAdc11GetTimesAndV
1) Yes. You would definetley use the out keyword. 2) The error about the parameter signature being incorrect would suggest a problems with your declarations. I've only taken a quick look but it looks like you have used longs where you should have used ints (a managed long is 64s bit whereas a native...
- Thu Dec 10, 2009 12:13 pm
- Forum: .Net Languages (C#, VB.Net, .)
- Topic: UsbAdc11OpenUnit(); wrong value was give
- Replies: 1
- Views: 2162
Re: UsbAdc11OpenUnit(); wrong value was give
[DllImport("usbadc11.dll")] public static extern Boolean UsbAdc11OpenUnit(); why should this code always return true even if the Usb adc11 is not connected. Firstly, the UsbAdc11OpenUnit() function returns a handle not a boolean. The handle will be zero if nothing is connected. Secondly, there is s...
- Mon Dec 07, 2009 9:43 am
- Forum: PicoLog
- Topic: picopp.sys still trying to be started after uninstall
- Replies: 1
- Views: 1556
Re: picopp.sys still trying to be started after uninstall
The system shouldnt try to load PicoPP.sys unless a Pico USB device is plugged in. You can stop it from being loaded by deleting all keys that start Vid_0ce9&Pid_fffa in: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB\ Note that if there is a Pico USB device on the system, this will not stop t...
- Wed Feb 18, 2009 2:13 pm
- Forum: PicoScope 6 for Windows
- Topic: Drivers wil not install with PS 6.2.1
- Replies: 1
- Views: 1497
I've reported this as a bug in the installer but in the mean time you can get going by doing the following: Find the directory that the program was installed to, normally C:\Program Files (x86)\Pico Technology\PicoScope6. There should be a sub folder named system. In this directory there is an appli...