How do I set my 6534 board to read in at port B, line 2?

Hi All,
After many trials, I still could not
get my 6534 board to read in data
at port B, line 2, or any other port or line.
I thought I pick port 1 and line b'10, or port
1 line 2, but I still cannot do this.
Could you guys help me out?
I am using the Buffered Pattern Input.vi.
I just couldn't understand how to use
the port list control.
Thank you in advance.

Hello Van626,
Check the manual below for control lines connections and configurations. It is important to know which protocol you will be using to communicate with your external device. i.e. Handshaking, pattern I/O...
Chapters 2 and 3 will give you a lot of information on how to configure your board.
http://www.ni.com/pdf/manuals/371464d.pdf

Similar Messages

  • How Can I configure the 6024E board for reading the voltage from a source?

    Hi, I have a little problem, I want to use the 6024E board for reading voltage from a source and then display this on the monitor, and also I want to change the voltage from the output using the computer. I read the manual but I don't understand how to connect and configure the board. It is to proof that the board receive and send information.
    Thanks, sorry for my english, I'm from Mexico, if you don't understand something about my explanation tell me.

    Thank you, now I'm trying to do my project and I have another question, there are differents ways to connect the source and I choose the NRSE configuration because I'm going to use a grounded signal source... well in the manual says "The signal is then connected to the positive input of the PGIA, and the signal local ground reference is conenected to the negative input ot the PGIA. The ground point of the signal should, therefore, be connected to the AISENSE pin." I don't understand this because I only have two wires and here is talking about three connections, please help me, how do I connect the source to the board? I have the positive wire and the negative wire.... maybe is because I don't have a perfect english and I don't understand the sentence...

  • How do I set a password for adobe reader?

    how do I set a password for adobe reader

    You can set a password for your device (iPad or iPhone) in Settings. You cannot set a password on the Adobe Reader app itself.
    If you want to password protect a PDF document you cannot do it in Reader. It must be done in Acrobat on Macintosh or Windows.

  • How do I set Acrobat as default over Reader?

    I use Acrobat Professional but recently installed Reader to check my PDF forms.
    Can someone tell me how to set Acrobat as the default program in favor of Reader?
    Thanks

    Hi Steve,
    Thanks for the answer.
    This was one of those questions that one asks yet feels really dumb doing so. I've been using the Macintosh as a graphic designer for about 25 years now, but have never had a reason to do this! I recall now seeing the default notation in the Get Info boxes.
    This is what happenes from long days at the keyboard. Oh well, I'm not complaining. I love my work!
    Thanks again,
    Bill

  • How do I set up my Belkin router to forward ftp port to macMini?

    I am trying to set up my spare macMini (non-intel) as an ftp server, but I am not able to connect to the ftp server (office) from a remote location with my MacBook Pro (home). I have tried to make the right settings as below:
    1. forwarded ports 20 and 21 on my Belkin router to the private IP of my macMini (192.168.2.15)
    2. set up a dynamic dns account xxx.dyndns.org so that this domain is updated with the current public IP
    3. set Sharing Preferences to allow ftp access and turned off the Firewall
    I think the port forwarding info is not correct because it does connect if I use the DMZ setting and hard code the public IP to the private IP.
    Any help appreciated,
    Cynthia

    Are you sure that your Internet Service Provider (ISP) doesn't block the ftp ports?
    Is is fairly common these days for ISPs not to allow any kind of file server on ordinary household contracts.
    Anyway, I'd suggest you rule that out before you get further into the intricacies of port forwarding.
    I also hope that you only have the firewall turned off for the ftp ports -- or if not, that your router has firewall protection.

  • How do I set up a Apple TC with a Verizon FIOS wireless modem model  Actiontec 424wi F series.  Does the wifi in the modem have to be shut off and will it effect the FIOS tv?

    How do I set up an Apple TC with a Verizon FIOS wireless modem model MI424wr F.  Does the wifi have to be turned off in the modem and then bridge it to the TC?  Will FIOS tv be effected?

    Your first call should be to Verizon support to ask them if you turn off the wireless on the Actiontec router....will it affect any of the features/functions of the FIOS system?
    If yes, then it would be best to leave the Actiontec router "as is" and connect the Time Capsule using Ethernet in Bridge Mode as a back up device only (wireless is turned off on the Time Capsule).
    If you want to use the dual band (and likely much faster) wireless capability of the Time Capsule, then you should turn off the wireless on the Actiontec device to help prevent wireless interference effects that will likely occur when two wireless routers are in close proximity to each other.
    Again, the Time Capsule would be connected to the Actiontec router using an Ethernet connection from one of the LAN <-> ports on the Actiontec router to the WAN port (circle icon) on the Time Capsule. Configure the Time Capsule in Bridge Mode as well in this type of configuration.
    Bottom line....what Verizon says will pretty much dictate how you can set up the TIme Capsule.

  • How do I set the initial servlet pool size in WL 5.1

              In WL 4.5, I can set the initial servlet pool size using the
              weblogic.httpd.servlet.SingleThreadedModelPoolSize. I tried to set this property in WL 5.1, and get an "Found undeclared property..." message when booting WL. Is this feature still supported in WL 5.1? If so, how do I set it?
              Thankx
              

    It appears that pool size of 5 is hardcoded somewhere - no matter where you specify
              weblogic.httpd.servlet.SingleThreadedModelPoolSize, the following test servlet:
              import javax.servlet.*;
              import javax.servlet.http.*;
              public class SingleT extends HttpServlet implements SingleThreadModel {
              static int instanceCount = 0;
              public SingleT() {
              super();
              System.out.println("Instance " + (++instanceCount) + " created");
              always produces:
              Instance 1 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Instance 2 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Instance 3 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Instance 4 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Instance 5 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Joe Trung <[email protected]> wrote:
              > Hi Huy,
              > There are lot of 'undeclared' stuffes if you move from 451 to 51.
              > However, if you run WLS with
              > '-Dweblogic.httpd.servlet.SingleThreadedModelPoolSize=10'
              > You will get what you want. I think BEA has moved this option to the <System props>, no more in its <config>
              > Joe
              > "Huy Pham" <[email protected]> wrote:
              >>
              >>In WL 4.5, I can set the initial servlet pool size using the
              >>weblogic.httpd.servlet.SingleThreadedModelPoolSize. I tried to set this property in WL 5.1, and get an "Found undeclared property..." message when booting WL. Is this feature still supported in WL 5.1? If so, how do I set it?
              >>
              >>Thankx
              Dimitri
              

  • I have 4S, I Pad 3, Mac Book Pro, how to I set up I-Cloud?

    I have an apple 4s phone, I Pad 3, Mac Book Pro purchased 9 months ago.
    How do I set up I-Cloud?

    I have an apple 4s phone, I Pad 3, Mac Book Pro purchased 9 months ago.
    How do I set up I-Cloud?

  • How do I set a PFI to High on a 6602 Board with DAQ Traditional

    Dear All,
    I am using LabVIEW 8.5 on 32-bit Windows XP with an NI 6602 DAQ board. In the past I've used DAQmx but for compatability with older software I need to do a few simple things using Traditional DAQ, which I have never used. Specifically I would like to make a simple VI that sets PFI 5 to high when the user presses a button and then low when they press the button a second time. How do I set PFI 5 for output and then write true to it?
    Thanks,
    Ed
    Solved!
    Go to Solution.

    Dear All,
    Apparently its as simple as using the Write to Digital Line VI. However, the non obvious thing is the port width of the 6602 board is 32 not the default 8. Buried in the LabVIEW help files is a list of physical port widths that one must stumble upon. Like the bat cave. In the attached image of the super simple VI I've made the 16 refers to PFI 16. Good to know.
    Best,
    Ed
    Attachments:
    write_low.JPG ‏5 KB

  • I need to create 4 A2 boards that print adjacent to one another with a photo image running across all 4 boards.How do I set up the pages so I can see the whole composition together , then print the seperate A2 boards.Do I use illustrator (C3) or Indesign?

    I need to create 4 @ A2 boards that print adjacent to one another (all landscape format) with a photo image running across all 4 boards.How do I set up the pages so I can see the whole composition together , then print the seperate A2 boards? Is it best to use Illustrator(CS3) or Indesign?
    Thanks.

    Re: I need to create 4 A2 boards that print adjacent to one another with a photo image running across all 4 boards.How do I set up the pages so I can see the whole composition together , then print the seperate A2 boards.Do I use illustrator (C3) or Indesign
    If possible, please try Indesign CS 4.

  • How to import 6602's counter output to PFI3 of the 6534 board?

    Dear friends,
    I have the following problem:
    I am trying to import the output of one of the counters of the 6602 board (counter 4) to
    the REQ2 (PFI3) line of the 6543 board (please see the VI attached). But I do
    not see any signal on the PFI3 line though the VI runs without errors.
    The situation is the same if I connect output of the counter to the PFI3 directly in the "Connect Terminals" VI instead of connecting it via PXI_Trig4 line.
    I need your help to understand why is it so and how can I accomplish the
    "import" task.
    Thanks in advance!
    Attachments:
    counterImport.vi ‏28 KB

    Hi Andrew,
    You are absolutely right - there should be PFI20 instead of PFI26.
    It works now. Thank you!
    .....I hope you can give some ideas with regard to the following problem:
    In a program I used four 6602's counters (counters 0-3) to generate single trigger
    pulses on the backplane of the PXI.
    It worked fine.
    Now I want to incorporate the fifth counter into the program (counter 4) to
    generate a finite pulse sequence on the PFI3 line of the 6534 board.
    And I can not do this.
    Code example is in the VI attached.
    When I try to run this VI it gives error:
    Error -89137 occurred at DAQmx Connect Terminals.vi:4
    Possible reason(s):
    Specified route cannot be satisfied, because it requires resources that are
    currently in use by another route.
    Source Device: TimingIO
    Source Terminal: PFI36
    Destination Device: TimingIO
    Destination Terminal: PXI_Trig0
    Required Resources in Use by
    Source Device: TimingIO
    Source Terminal: PFI20
    Destination Device: TimingIO
    Destination Terminal: PXI_Trig4
    I do not understand why it happens and how to correct this....
    Thanks!
    Attachments:
    counterImport 2.vi ‏79 KB

  • With 10.2 I can only use system speaker output for audio, NOT my RME FF400 I used previously. The FF400 works fine with other apps. How can I set this device in FCP 10.2? (it is set in both system preferences and midi)

    With 10.2 I can only use a system (e.g. speaker) output for audio, NOT my RME FF400 I used without any problems previously. The FF400 works fine with other apps (some like TwistedWave) setup in the program, and others (like Spotify) using system preferences & audio midi setup. How can I set the FF400 to be the sound output device in FCP 10.2? N.B. The FF400 is set as sound output device in both system preferences and audio midi setup.

    From the fcp.co forum. See if this does anything for you.
    simon_hutchings
    OFFLINE
    Junior Boarder
    Posts: 24
    Thank you received: 5
    Karma: 1
    I have the solution! Well it at least worked for me. This is the response I got from Apple, Can you please try the following steps towards fixing your audio issue, and report back with your results?
    1. Open the application Audio Midi Setup (located in Applications : Utilities)
    2. Select the Output Tab for the current output device
    3. Select the Configure Speakers option
    4. Select the Multichannel tab
    5. Change the setting to Stereo Now mine was set to stereo but the left channel wasn't showing left. re-clicking on stereo reloaded the settings and after clicking apply it worked. 

  • How do I set up HP LaserJet 1022nw in wireless mode?

    I just purchased this printer and I am trying to set it up so that it will be accessible by any of our home computers via our home airport extreme base station, regardless of whether any other computer is on.
    Following the insructions, I can get all the way to setting it up as part of a computer-to-computer network (what they call adhoc mode). The c2c network shows up on my airport drop down menu, and the little blue light lights up when I set my computer to join it, so I can tell the printer 802.11 board is talking to my computer.
    Alas,
    1) the next instructions say to use a browser to access the embedded Web server (EWS), but I get a message (from Safari) saying I'm not connected to the internet (because I'm connected to the c2c network) or it can't find the printer (if I'm connected to my airport base station network).
    2) I can't see the printer with any utilities I have (Network, Printer Utility).
    3) I tried setting Sharing to share web site and found documentation for an Apache web server instead of what the instruction book says!
    Any suggestions? Or should I just give up and get the non-wireless printer, that people seem to like.

    Well, I've made some progress, but am still stuck a bit further down the road.
    I'm using 2 computers, my 12 in. Power Book G4 and my desktop dual G4.
    1) Connect printer to laptop via USB; works fine.
    2) Connect printer to laptop via provided Ethernet cable and obtain printer address. Now I can access embedded web server via Safari. Set up in Infrastructure mode, enter my airport network name and password (WPA-PSK), keep encription disabled, set TCP/IP to be automatic (manual doesn't work because IP Address changes). Disconnect Ethernet cable.
    3) Now I set up a new location on my laptop, as advised in printer instructions, but use DHCP instead of Manual setting for TSP/IP (instructions advise setting Manual -- tried it but doesn't work); disable ethernet, internal modem.
    4) Use Printer setup utility: printer appears via Bonjour, I add it to the printer list. Printer location, hpsetup, appears in airport drop down menu, I can print fine.
    5) Set up new location on desktop; printer also appears on Printer setup browse via Bonjour, but when I try to add it to my printer list, Printer setup utility hangs up with beachball.
    6) I can connect my laptop and desktop the same new network I created according to the HP instructions, and set my laptop to share printer. At this point the 1022nw appears as both a Bonjour printer and a shared printer when I try to add a printer using Printer Setup utility. I was able to add the shared version and print out on it from my desktop.
    Trying to add the Bonjour version leads to the utility beachball, hanging up.
    Now I need to figure out how to add the printer to my desktop printer sets using the Bonjour version.

  • How do I create a message board/forum using forms in Dreamweaver?

    I want to create a forum or messageboard using the form in Dreamweaver but I don't know how to do it. Is there any guidance on how I could create a message board or forum on Dreamweaver?

    I don't think it can be done with just dreamweaver,
    You will have to download something like PHPBB,
    If you have a host with fantastico deluxe you can easily set up a forum
    with it.
    Daniel

  • X-Fi card possibly damaged, how do I revert to on-board sound?

    I can't figure out how to revert back to on-board sound on my PC.
    What's actually happened is I've been using X-Fi happily for nearly two years. I bought it with my system, and apart from some minor troubles right at the start (I bought a Vista system right when Vista was released, and the X-Fi drivers for Vista weren't quite ready) I've been happy with it. I'm not a sounds guru or anything, I got X-Fi mainly because I'd heard it was the only card that could play DVD-Audio discs, and I have several albums on DVD-A that I wanted to hear in surround sound.
    Anyway, at Christmas I was given a new LG blu-ray reader, and some more RAM for my PC. So last night I opened the box up, swapped out my old IDE DVD writer for the SATA blu-ray dri've, and swapped 2GB of RAM for 4GB. I also gave the inside a vacuum while I was at it. I've only got a big, unwieldy vacuum cleaner, but I was careful, and I'm 90% certain I didn't scratch or even bump anything while I was doing this.
    But when I booted my PC back up, the sound that came out of the speakers was a horrible high pitched screech. I've taken the X-Fi card out, checked it and plugged it back in a couple of times. I've rebooted the PC several times, and I either get no sound at all, or the horrendous noise (interestingly, when there is no sound at all, I can load up WinAmp and play an mp3, and watch the little bars jumping up and down as a song I can't hear plays - however, if there is horrible screeching, WinAmp locks up).
    I can only assume that I've damaged my X-Fi card somehow. Or there was an internal cable plugged into it that I've knocked out (although the X-Fi manual doesn't mention anything other that plugging it into the mainboard), or that somehow more RAM or a second SATA device is interferring with it. But that all seems unlikely.
    So, if my X-Fi card is damaged, I would like to, for the time being, start using my on-board sound. I removed the X-Fi card and plugged the speakers into the mainboard outputs, but got no sound. Then I noticed some power pins on the mainboard labelled AUDIO, and plugged one of the loose power cables that matched the pins into it, but still got nothing. According to the Device Manager, all my hardware is working just fine (including the X-Fi card).
    Sorry if the post is long.

    B? Most likely onboard sound is disabled in BIOS
    You know how to enable it's just enter the BIOS, press Del, F2 or F0(depends on you motherboard) at boot and search for Integrated peripherals set onboard sound to enabled or auto
    When Windows starts it should detect the audio device and asks for drivers
    Also just to be sure test the X-fi in another system if you can?

Maybe you are looking for