Keithley 2000 and 7002 with trigger link

Hello!
I am writing an application for the 2000 DMM and a 7002 switch system. The instruments are set up with trigger link. What I want to do is simply to load a scan list to the 7002, scan and read back the results from the 2000. Here is what I have so far in terms of SCPI (I have looked at the Keithley LV drivers but I think they complicate stuff + there are no high level functions for trigger link setup included):
DMM *RST
SW *RST
SW Open
SW Scan (@2!1:2!40)
SW :TRIGgerOURce TLINk
SW :TRIGger:TCONfigureROTocol ASYNchronous
SW :TRIGger:COUNt 40
SW :ARM:LAYer2:COUNt 1
DMM :TRIGger:COUNt 40
DMM :TRIGgerOURce EXTernal
DMM :INIT:CONT ON
SW :ARM:LAY1OUR IMM;COUN 1
SW :ARM:LAY2OUR IMM
SW :INIT
DMM :TRACEATA?
Please advise,
Stefan

hi morgue!
I am doing a program like your, but with Keitlehy 2001.
To make the syncronization you wrote just these lines? I am doig this in labview, with the programs found in the drivers given by keithley but is not working properly. When I put the triger link, it scans and show just the first measure.
Do you still have this programm?
thank you 

Similar Messages

  • Hi! I've been using Goldmine contact management software for many years and syncing with Companion Link successfully, then ITunes to the IPhone. Suddenly, my IPhone is not recognized and won't sync. I see a message telling me to dock the phone? Any ideas?

    Hi! I've been using Goldmine contact management software for many years and syncing with Companion Link successfully, then ITunes to the IPhone. Suddenly, my IPhone is not recognized and won't sync. I see a message telling me to dock the phone? Any ideas? Thanks for any assist!

    Hi Ken,
    Dennis here from westport. I too am a goldmine user for many years and would love to know how you sync.
    I am looking at a product called wmobile, but may be problematic on my current system.
    thanks for any help...

  • Keithley 2701 and _KE2700_in​itwithopti​ons LINK error

    Hi
    My labwindows compiler does not like to compile my programme which used the KE2700_Init or INit with options
    it comes up with Project Link Error for the fuction?
    any ideas?
    Thanks

    I think I had the package
    looking at the two CWS files I noticed the addresses were different, the address to the DLL missing.
    I had to add the .fp fpr Keithley to the CVI. I thought the thing adds itself when it comes up.
    I had the same problem with INI routines and I had to add those too.
    thanks

  • I want to eliminate or control popup windows that have no relevance and start with "open link in new window" . How do I control or eliminate. It is a nuisance.

    When I am searching the web and click on an item, I get a pop up window that contains 6 choices beginning with "open link in new window". Most of the time this a nuisance and I want to get rid of it, but it follows me all over the page and keeps popping up when I click on the same item again. If I don't want to use it, how can I make sure it doesn't reappear?
    Also, another question. Firefox keeps asking me to upgrade to Firefox 3.6.19, but when I try, it will download. What gives? I have a Mac Pro with OSX version 10.6.7.
    Thanks,
    Lloyd Frohreich
    [email protected]

    It sounds that you are opening the right-click context menu, maybe by pressing the mouse button for too long.
    See:
    * http://kb.mozillazine.org/ui.click_hold_context_menus

  • Help Importing objects from 1 user to another user and problem with trigger

    Hello community, i am having a little difficulty with the exporting objects from one user to another specifically the exporting of the trigger.
    Here is the situation, because of SOX purpose whenever a update is sent to the client the dba have to execute the script as himself (priviliged user) and is not allowed to log into the schema to make changes. Therefore we perpend the object definitions with &user_schema.. and they define user_schema in sqlplus and execute the update script.
    Here is a small example which requires two users (user1 and user2) with the following grants (connect, create table, create trigger, create view, create sequence). Please forgive the naming of the objects, just trying to be as simple as possible.
    I start out by logging in as system user via sqlplus and execute the following.
    ------------------Begin sqlplus----------------------
    define user_schema=user1;
    create table &user_schema..abc01 (
      col1 number,
      col2 varchar2(20),
      col3 number,
      constraint pk_abc01_col1 primary key (col1)
    create table &user_schema..xyz01 (
      col1 number,
      col2 varchar2(20),
      col3 number,
      constraint pk_xyz01_col1 primary key (col1)
    create or replace view &user_schema..view1 as
    select x.col1, x.col2, x.col3, a.col1 as acol1, a.col2 as acol2, a.col3 as acol3
    from xyz01 x
    inner join abc01 a on a.col1 = x.col1;
    create sequence &user_schema..seq_xyz01 start with 1 increment by 1;
    create or replace trigger &user_schema..trig01
    before insert on &user_schema..xyz01 for each row
    begin
      if (nvl(:new.col1, -1) = -1) then
        select seq_xyz01.nextval into :new.col1 from dual;
      end if;
    end;
    /--------------------End sqlplus----------------------
    I would then proceed to export using the exp utility via the command line
    exp system/systempassword file=user1.dmp owner=user1
    Then import user1 objects into user2
    imp system/systempassword file=user1.dmp fromuser=user1 touser=user2
    Now the problem:
    When i take a look at the sql for user2 trigger (trig01) i see the following (viewed via sqldeveloper)
    create or replace TRIGGER "USER2".trig01
    before insert on user1.xyz01 for each row
    begin
      if (nvl(:new.col1, -1) = -1) then
        select seq_xyz01.nextval into :new.col1 from dual;
      end if;
    end;its referring to user1.xyz01 table, however i want it to point to is user2.xyz01 table. Can someone please help me out or offer another solution to go about this because i need the ability to import the objects into a different user without the import failing and having to recompile the object.
    I've also tried executing this while connected as system user via sqlplus:
    define user_schema=user1
    create or replace trigger &user_schema..trig01
    before insert on xyz01 for each row
    begin
      if (nvl(:new.col1, -1) = -1) then
        select seq_xyz01.nextval into :new.col1 from dual;
      end if;
    end;
    /but that fails stating that table or view does not exist, please help
    however that fails because i
    Edited by: user3868150 on Nov 6, 2009 6:05 PM

    When performing an update in their system, the same script will be run with different values, thats not the problem.
    The client currently have just that one schema in their environment, however they want to have another instance of the application set up in their environment (same database) and have that go off on its own track separate from the original application.
    Now when we do an exp of the schema and the imp it into another user it get imported, however its incorrect. As stated before the trigger will be acting on the table in the original schema when it should be acting on the table in the newly imported schema.
    I suppose there is no other way around this when a trigger is created the way in which i outlined above. I guess after the data gets imported into a different user the trigger would have to be recompiled to point to the correct table.
    If you have an alternate solution to go about this i am open to suggestions. However like i mentioned in the original post because of SOX purpose the dba is not allowed to log in and execute update scripts as the schema user. The scripts should only be executed as that privileged user (dba).
    Also if i hard code the user when the trigger is created
    create or replace trigger user1.trig01
    before insert on user1.xyz01 for each row
    begin
    if (nvl(:new.col1, -1) = -1) then
    select seq_xyz01.nextval into :new.col1 from dual;
    end if;
    end;
    /it still doesn't get imported the way that i want it to be imported in user2
    create or replace TRIGGER "USER2".trig01
    before insert on user1.xyz01 for each row
    begin
      if (nvl(:new.col1, -1) = -1) then
        select seq_xyz01.nextval into :new.col1 from dual;
      end if;
    end;now when i do an insert to test
    insert into user1.xyz01 (col2, col3) values ('abc', 123); -- Works fine, no problems here
    insert into user2.xyz01 (col2, col3) values ('abc', 123);Results in an error ORA-01400: cannot insert NULL into ("USER2".XYZ01"."COL1") because the trigger doesn't exist on user2.xyz01 table.
    Just try and create the schema like how i outlined above in your environment to see what i'm talking about. It seems that the only way to get the trigger to be imported the way i want it to is to actually log in as that user and create the trigger.
    sqlplus user1/user1
    {code}
    create or replace trigger trig01
    before insert on xyz01 for each row
    begin
    if (nvl(:new.col1, -1) = -1) then
    select seq_xyz01.nextval into :new.col1 from dual;
    end if;
    end;
    {code}
    Edited by: user3868150 on Nov 6, 2009 6:10 PM

  • Express and eMac with D-Link USB Adapter

    I went down to my local Apple Centre to get an Airport Card for my eMac (700mhz). He said they didn't have any but recommended I buy a D-Link USB Adapter (802.11g/2.4ghz wireless) to connect to the Internet via Airport Express. But I can't get the Mac to recognise it - when I use the Airport Assistant it says I have to connect via Ethernet as there is no Airport card Installed. Any ideas where I can find a step-by-step installation guide? Or any help here would be great!
    Thanks
    Ben

    BenCollison, Welcome to the discussion area!
    Unfortunately the drivers required for these USB wireless adapters frequently don't work well with Mac OS X. Many people never get them to work properly. Some people find the magical combination and get them to work.
    The best solution is the correct AirPort card.
    The next best solution is an Ethernet wireless adapter. These require no drivers and therefore work with any Ethernet device. Examples of Ethernet wireless adapters are the Linksys WET11, Linksys WET54G, and the Buffalo Technology WLI-TX4-G54HP bridge.

  • Cfimage and crop with direct links

    Hello,
    I need some advice..
    I want to have users reference images from my site but only certain sections (IE: http://somedomain.com/getimg.cfm?ID=123&section=1).  Below is the code I have but it only outputs a variable like coldfusion.image.Image@174e3a9 rather than the actual image.  I understand cfimage has a writeToBrowser action but that outputs html source which wont allow my users to have a direct link.
    <cfprocessingdirective suppresswhitespace="yes">
    <cfimage source="d:\test.jpg" name="myImage">
    <cfset ImageCrop(myImage,0,0,534,474)>
    <cfcontent type="image/jpeg" >
    <cfoutput>#myImage#</cfoutput><!--- does not output actual image --->
    </cfprocessingdirective>

    You can also prevent direct links (although not fool-proof) by checking the HTTP_REFERER at http server level, using mod_write or isapi_rewrite (or similar). You can easily find examples for this by searching the internet.
    About cfcontent then... the correct usage would be <cfcontent variable="#myImage#" type="image/jpeg"> , but since cfcontent does not support a ColdFusion image object, but rather variables or binary objects read by cffile, save the cropped image to a disk with the cfimage tag, then read it using cffile.
    Better yet, if you are using ColdFusion 9, use the ram://-drive instead of physical disk for less I/O load.
    - Fernis - fernis.net - ColdFusion Developer For Hire

  • Set AOI and Binning with Camera Link

    Hello together,
    I trying to set the AOI and the Binning.
    Please see the attached VIs. If I choose Binning 2x or 4x, the following error occured:
    Error -1074397150 occurred at IMAQ Snap.vi
    Possible reason(s):
    NI-IMAQ:  A timeout error occurred while waiting for the specified event.  If waiting for an image, verify that all video data is acquired within the timeout period.  If waiting for a signal, verify that the signal assertion occurs within the timeout period.
    Does anybody has a idea, how I can set the AOI and the Binning?
    Thank you very much in advance.
    greetings zaepfle 
    LV2012
    Attachments:
    VieWorks_SetCameraAttribute_AOI.vi ‏50 KB
    VieWorks_SetCameraAttribute_AOI1.vi ‏50 KB

    Hi,
    thanks for your answer.
    The attribute Binning is in the MAX, because I edited the camera file (*.icd] with the NI Camera File generator (see MAX_Binning.png). If I chosse the correct imagesize (MAX -  tab Acquisition Parameters) and set the Binning (MAX - Camera Attributes), it works. I can switch between 0x, 2x, 4x Binning without an error message. But unfortunately I can do it with the LabVIEW VI (see attached VI). I will try to describe the process with the attached LV program:
    - run program
    - default resolution 6576x4384, 0xBinning: all OK
    - set resolution 3288x2192, 2xbinning: all OK
    - set resolution 1644x1096, 4xbinning: all OK
    - set resolution 3288x2192, 2xbinning: the resolution (1644x1096) remains
    or
    - set resolution 6576x4384, 0xbinning: the resolution (1644x1096) remains
    Why the resolution doesn't go back?
    How can I get the frames per second?
    " Please run the VI and see if an error occur when you try to set Binning in your camera."
    It doesn't appear a error message.
    I hope we can find a solution.
    greetings zaepfle
    Attachments:
    VieWorks_SetCameraAttribute_AOI_inside_Errorhandling.vi ‏50 KB
    MAX_Binning.png ‏101 KB

  • When I click on a link in another application, Firefox opens up two windows, one with my home page and one with my link. How do I turn this off so that I only get one window

    Mac OS10.6.4

    That is this bug:<br />
    https://bugzilla.mozilla.org/show_bug.cgi?id=531552 - Firefox 3.6b opens two windows when opening external links
    (please do not comment in bug reports)

  • Why does the integratio​n time setting of Keithley 2000 (number of PLC) changes to medium (1PLC) from fast (10 PLC) and slow (0.1 PLC) settings, when I tried to read from Keithley?

    Dear All,
    I am trying to change the NPLC (the integration time) of Keithley 2000 and take voltage readings. Whenever I change the settings to fast or slow and then run the VI, the NPLC changes to medium. Could you kindly tell me what is causing this? Thank you and I look forward to receiving your replies.
    Regards

    For the NPLC setting, the higher the number, the longer it takes to get a reading.  So 10 PLC is much slower than 0.1 PLC. 
    See if you can set the NPLC setting from the front panel.  Then try changing the vi to set NPLC only, then read it back to see if it matches your setting.  Sometimes changing ranges will automatically set the NPLC depending on the range chosen.  So you have to send the range command before sending the NPLC command.  This may be what is happening.
    - tbob
    Inventor of the WORM Global

  • SQL Server 2000\2005 compatibility with Active Directory 2012

    Hi All,
    We are currently using Active Directory 2003 and will be upgrading to AD 2012.  I'm trying to determine if there is any known compatibility issues when running older versions of SQL Server (2000 and 2005) when upgrading to AD 2012.   I've
    read forums from when others went from AD 2003 to AD 2008 and didn't experience any issues.  We have the newer versions of SQL but I'm not too concerned about these.  Any advice would be greatly appreciated?   Has anyone been through
    this process. 
    Thanks,

    Hi CraftsmanRobert,
    Based on my understanding, you used Active Directory 2003, then it would be upgraded to Active Directory 2012. You wanted to run older versions of SQL Server (2000 and 2005) with Active Directory 2012.
    Firstly, there can be a compatibility problem when run older version with Active Directory 2012. SQL Server 2005 (the release version and service packs) and earlier versions of SQL Server are not supported on Windows Server 2012 R2, Windows Server 2012,
    Windows 8.1, or Windows 8. For more information, please refer to this article: How to use SQL Server in Windows and Windows Server environments (http://support.microsoft.com/kb/2681562/en-us).
    Besides, Microsoft doesn’t provide assisted support for SQL Server 2000 and SQL Server 2005 already. Please upgrade the existing instance of SQL Server 2000 and SQL Server 2005 to a new version like SQL Server 2012. You can download SQL Server 2012 Express
    from this link:
    http://www.microsoft.com/en-us/download/details.aspx?id=29062.
    Best regards,
    Qiuyun Yu

  • Keithley 2000 serial driver

    Hi !
    I'm looking for LabView instrument driver for Keithley 2000 digital
    multimeter with scanner card, using serial interface ?
    Does anyone know how to get it ?
    M.B.

    In article ,
    "Mr Bogus" wrote:
    > Hi !
    > I'm looking for LabView instrument driver for Keithley 2000 digital
    > multimeter with scanner card, using serial interface ?
    > Does anyone know how to get it ?
    >
    > M.B.
    contact Dale Cigoy at keithly
    [email protected]
    he was pretty helpful when I needed help with VI's for the 2700
    aleal
    Sent via Deja.com http://www.deja.com/
    Before you buy.

  • How do SQL server 2000 and Oracle linked?

    Hi,
    How do SQL server 2000 and Oracle linked?
    Thanks in Advance
    Baloch.

    use the like to setup ODBC and datasource
    http://www.databasejournal.com/features/oracle/article.php/3442661/Making-a-Connection-from-Oracle-to-SQL-Server.htm
    and then create link server in sql server after you test conenction with oracle

  • Communication Failing with Corrupted Chars . Sql Server 2000 and AS400

    Hi Experts,
    I am facing this below error after 9 yrs. sql server 2000 and As400 on prod server. while on dev and stage it's running properly. Here username is ABCD, while it's showing BCD
    The OLE DB provider "MSDASQL" for linked server "" reported an error. Authentication failed. [SQLSTATE 42000] (Error 7399) Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "xxxxx".
    [SQLSTATE 42000] (Error 7303)  OLE DB provider "MSDASQL" for linked server "" returned message "[Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed".
    [SQLSTATE 01000] (Error 7412)  OLE DB provider "MSDASQL" for linked server returned message "[IBM][iSeries Access ODBC Driver]Communication link failure. comm rc=8001 - CWBSY0001 -
    User  BCD on server does not exist, Password length = 8, Prompt Mode = Never, System IP Address = "xxxxx". [SQLSTATE 01000] (Error 7412).  The step failed.
    Here ABCD user is also disabling/locking the profile on AS400 server.
    When we tried on Dev server, linked server through DSN working properly. Last time when it appeared 2 yrs ago, it resolved automatically. but now more than 10 days passed and still Failing.
    Please Guide Me.
    Regards,
    Manish

    So this setup has worked for nine years, and all of a sudden stopped working with this error message? Does not look trivial...
    What does Here ABCD user is also disabling/locking the profile on AS400 server mean? Is ABCD able to log in directly on the AS400 box?
    One possibility is that the user ABCD has been dropped or disabled, and then there is a bug in the ODBC driver where the first character of the username is distorted in the error message. I note that there are two spaces between "User" and "BCD".
    The other possibility is that the AS400 is receiving a login attempt from BCD (or something that ends in BCD with an invisible leading character). This sounds very difficult to troubleshoot...
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Measure with Keithley 2000 over RS232

    Hey,
    ich have a problem with my Keithley 2000 by measurements over RS232.
    My programm is running, its a simple serial read and write VI. I send him an command to measure and nothing is happening. I got nothing back....
    I add the VI and the commands, maybe somebody knows whats wrong with my VI!
    Thanks a lot
    Greetings
    Ralf
    Attachments:
    RS232 Serial Write and Read.vi ‏22 KB
    Unbenannt.JPG ‏7 KB

    I have no time to look into your code, but most likley you miss the termination char. On a string constant you can switch to \-display and then use \n or \n\r depending on the settings. You can also look into the LV drivers for the keithley 2000, they are available on ni.com and/or on keithley.com
    Felix 
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

Maybe you are looking for

  • After Effects won't start Media Encoder

    I'm trying to render from After Effects through Adobe Media Encoder, but the link will not work. I tried using Ctrl+Alt+M, and I tried opening it from the drop down menu. AE simply won't work with AME. It worked before I upgraded to CC 2014, and I ca

  • Poor webcam image quality (HP Touchsmart Notebook

     I recieved a HP touchsmart Notebook as a Christmas gift and the image quality is  horrible! Even in a well lit environment, the image is still not clear. I have adjusted the settings to try to improve the image quality, but there is still not much o

  • Safari History Corrupted

    Here's the problem: I've already loaded Safari with bookmarks, so I've been using my browser history as a substitute to keep track of sites. Now, the history is gone. Specifically, the "History.plist" file in ~/Library/Safari is corrupted and crashes

  • How to schedule a mapping?

    Hi .... how can I schedule a mapping ???? Can external tools be used to schedule a mappin ?.....like tibco,autosys etc ? thnx s

  • Solution Manager 4.0 Presentation

    I need to give a presentation on Solman 4.0. Does anybody have any sort of multimedia presentation handy...or PDFs etc. Please reply or point me to a link...preferrably a Powerpoint presentation. Thanks Pree