Reading in using hyperterminal

Hi There,
I am currently using labview and hyperterminal as part of my final fourth year project. The instrument i am communicating with is the Thurlby Thandar TSX3510P programmable psu. I have communicated with the device using hyperterminal and now i have to incorporate this into a labview program. I am very new to labview and really dont know where to start as the examples are a bit beyond me at this stage im afriad. if anybody could shed some light on this matter i would be really grateful!
Thanks in advance,
Lillian

You should first download the driver from here. There is also Chapter 16 of the LabVIEW Measurements Manual that you should read. This is part of the LabVIEW Bookshelf available from the Help menu.

Similar Messages

  • How to use HyperTerminal to send characters to the cRIO

    Hello, I built an RS232 serial cable using three wires interface of serial port (Rx, TX, GND). And I connected it between my computer and the cRIO. I would like to ask is it possible to use HyperTerminal to send characters to the cRIO? What vi. do I need to do so?
    And is my cable interface correct? Do I need to connect other pins besides Rx, TX and GND?
    Thank you very much for helping.

    So did it or did it not work when you typed words in by hand in hyperterminal?  I'm not clear on this from your response.
    What kind of things are you trying to send?  What code do you have on your SBRIO to handle the other end of the communication.
    It could mean your connection failed.  It could mean you have the wrong cable between the two (null modem vs. straight through), it could mean you aren't sending the data in the same way the code on the RIO is expecting.  Look at such things like any termination characters you send at the end of the message.
    It's kind of hard to help without know more details of what you are trying to do and whether it is working for you in Hyperterminal or not.

  • I have huge lag with Safari's Reading List using a rMBP. I have probably 80 articles saved, which is likely the cause of the lag. Is there any way to export that list of articles so as to be able to delete them from Reading List but still have a record?

    I have huge lag with Safari's Reading List using a rMBP. I have probably 80 articles saved, which is likely the cause of the lag. Is there any way to export that list of articles so as to be able to delete them from Reading List but still have a record of the articles I intend to read?

    I'm currently dealing with this issue myself, except that my rMBP has NO articles in the reading list.  It's a brand new rMBP too, purchased just this week, with the 2.6 Ghz Processor & 16GB of RAM.
    Let's see what we can find.  I may just take it back to the Apple Store.

  • Open several PDFs in the same Reader window using tabs for each document

    How do I open several PDFs in the same Reader window using tabs for each document?  I'm using Reader 11.0.03 and Windows 7.  

    That would be a nice feature!  Suggest it at https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform - hopefully it will make it into Reader XII.

  • Can't read email using my primary apple email account

    Ok, I'm new to this forum but here is my problem
    Usually I can read Email using my primary Apple E-mail account BEFORE I updated my Ipad into IOS 8.
    After I updated my Ipad into IOS 8 (non-jailbreak and from IOS 5 jailbreak), My Ipad says that I need to sign up an Icloud email to use the Mail App.
    Then I can't use my Primary Apple Account as an E-mail anymore. When people send a mail to my primary apple account, I cant read it because I cant read emails using my Primary Apple Account anymore.
    When I signed in with my primary apple Email account and opened my Mail App, It used my Icloud email instead my primary apple email.
    I tried everything Include making an email aliases but my primary apple email uses @Yahoo.com and I can only use aliases of @Icloud.com
    Can someone please help me so I can read E-mails when people send an Email to my primary apple account? Because I need to see those subcription mails and change my password of my online game account(<- This one is URGENT).
    And sorry for my bad English because I'm Indonesian.

    Welcome to discussions,
    go to settings/mail, contacts.../your mail account/outgoing mail server settings/ and see if you put in the needed password to access your mail server.
    Also check out this help article about your issue for more tips: http://support.apple.com/kb/TS2770

  • I have a Windows 8.1 machine.  I used a projecteor a while back in a Power Point presentation.  Now my menus for Adobe are very small and hard to read.  The print command is so compressed that I cannot read or use it.  How do I fix this problem?

    I used a projecteor a while back in a Power Point presentation.  Now my menus for Adobe are very small and hard to read.  The print command is so compressed that I cannot read or use it.  How do I fix this problem?

    There is no application called "Adobe" - you are either working with Adobe Acrobat or the free Adobe Reader. Open up the preferences for the application (Edit>Preferences), then go to the "General" category and modify the settings for "Scale for screen resolution". You will have to restart the application after you do that. Does that fix your problems?

  • How can I script Adobe Reader updates using vbScript, PowerShell or C#?

    I would like to script Adobe Reader updates using vbScript, PowerShell or C#, are there any Adobe API calls I use to do this.  There are several different version that I support and auto update is not an option. I do updates at a specific time of the month. I would like to write a script that would download and install the update for the currently installed version of Adobe Reader (32 or 64 bit) for the version of the OS (32 or 64bit). I can detect the OS version and the Adobe version.  I can download updates but I do not want to hard code anything

    Sabian is correct.
    Most admins download the updates from the ftp site and push via AIP, GPO, SCCM, or some other method whenever it makes sense for them.
    Ben

  • HOW to read file using ftp???

    Hi to all,
    I have problem with reading file using ftp connection, i want to read only 1024 bytes for one time, and i have
    next code wich read this:
    byte buffer[] = new byte[1024];
    while( (readCount = input.read(buffer)) > 0) {
    bos.write(buffer, 0, readCount);
    but I dont know how to put all read data in one byte[] if i dont know length of file.
    I can't do some like: byte file[] = new file[1000000];
    Thanks for all sugestions!

          * Download a file from a FTP server. A FTP URL is generated with the following syntax:
         * <code>ftp://user:password@host:port/filePath;type=i</code>.
          * @param ftpServer FTP server address (incl. optional port ':portNumber').
          * @param user Optional user name to login.
          * @param pwd Optional password for <i>user</i>.
          * @param fileName Name of file to download (with optional preceeding relative path, e.g. one/two/three.txt).
          * @param destination Destination file to save.
         * @throws MalformedURLException, IOException on error.
         public void download(String ftpServer, String user, String pwd, String fileName, File destination) throws MalformedURLException, IOException {
            if (ftpServer != null && fileName != null && destination != null) {
                StringBuffer sb = new StringBuffer("ftp://");
                if (user != null && pwd != null) { //need authentication?
                    sb.append(user);
                    sb.append(':');
                    sb.append(pwd);
                    sb.append('@');
                }//else: anonymous access
                sb.append(ftpServer);
                sb.append('/');
                sb.append(fileName);
                sb.append(";type=i"); //a=ASCII mode, i=image (binary) mode, d= file directory listing
                BufferedInputStream bis = null;
                BufferedOutputStream bos = null;
                try {
                    URL url = new URL(sb.toString());
                    URLConnection urlc = url.openConnection();
                    bis = new BufferedInputStream(urlc.getInputStream());
                    bos = new BufferedOutputStream(new FileOutputStream(destination.getName()));
                    int i;
                    while ((i = bis.read()) != -1) { //read next byte until end of stream
                        bos.write(i);
                    }//next byte
                } finally {
                    if (bis != null) try { bis.close(); } catch (IOException ioe) { /* ignore*/ }
                    if (bos != null) try { bos.close(); } catch (IOException ioe) { /* ignore*/ }
            }//else: input unavailable
        }//download()If you don't want to strore the data into a file, use ByteArrayOutputStream instead of a FileOutputStream.

  • DAQ vi to perform digital write and read measurements using 32 bits binary data saved in a file

    Hi
    DAQ vi to perform digital write and read measurements using 32 bits binary data saved in a file
    Two main
    sections:
    1)     
    Perform
    write and read operations to and fro different spread sheet files, such that
    each file have a single row of 32bits different binary data (analogous to 1D
    array) where the left most bit is the MSB. I don’t want to manually enter the
    32 bits binary data, I want the data written or read just by opening a file
    name saves with the intended data.
          2)     
    And
    by using test patterns implemented using the digital pattern generator or  build digital data functions or otherwise, I need to
    ensure that the     
                binary data written to a spreadsheet file or any supported file type
    then through the NI-USB 6509 is same as the data read.
    I’m aware I can’t use the simulated
    device to read data written to any port but if the write part of the vi works I
    ‘m sure the read part will work on the physical device which I’ll buy later.
    My Plan
    of action
    I’ve
    created a basic write/read file task and a write/read DAQ task for NI USB 6509
    and both combine in a while loop to form a progress VI which I’m confuse of how
    to proceed with the implementation.
    My
    greatest problem is to link both together with the correct functions or operators
    such that there are no syntax/execution errors and thus achieve my intended
    result.
    This
    project is one of my many assignments for my master thesis, so please i’ll
    appreciate every help as I’m not really efficient with LabVIEW programming but
    I prefer it because is fun and interesting if I get to know it.
    Currently I’m
    practicing with LabVIEW 8.6/NI DAQmx 8.8 Demo versions and NI USB 6509
    simulated device.
    Please see
    the attached file for my novice progress, thanks in
    advance for the support
    Rgds
    Paul
    Attachments:
    DIO_write_read DAQ from file.vi ‏17 KB

    What does your file look like?  The DAQmx write is expecting a single U32 value, not an array of I64. 
    Message Edited by vt92 on 09-16-2009 02:42 PM
    "There is a God shaped vacuum in the heart of every man which cannot be filled by any created thing, but only by God, the Creator, made known through Jesus." - Blaise Pascal

  • How can I get Read receipt using DSN?

    Hi all,
    I can able to get the Delivered/Undelivered receipt using following code, but am not able to receive Read receipt.
    Am sure I need to add few lines to get that Read receipt. But am not get exact code to achieve that. Already I have searched lot here.Still not get exact code to read receipt using DSN.
    Following is a code, Which am using to get Delivered/Undelivered receipt successfully:
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class testMail {
        public static void main(String args[]) throws Exception {
            String host = "172.15.4.12";
            String from = "[email protected]";
            String to = "[email protected]";
            String dsn = "SUCCESS,FAILURE,DELAY ORCPT=rfc822;" + from;
            // Get system properties
            Properties properties = System.getProperties();
            // Setup mail server
           properties.setProperty("mail.smtp.host", host);
           properties.put("mail.smtp.dsn.notify", dsn);
            // Get the default Session object.
            Session session = Session.getDefaultInstance(properties);
            // Create a default MimeMessage object.
            MimeMessage message = new MimeMessage(session);
            // Set the RFC 822 "From" header field using the
            // value of the InternetAddress.getLocalAddress method.
            message.setFrom(new InternetAddress(from));
            // Add the given addresses to the specified recipient type.
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
            // Set the "Subject" header field.
            message.setSubject("hi..!");
            // Sets the given String as this part's content,
            // with a MIME type of "text/plain".
            message.setText("Delivered:");
            // Send message
            Transport.send(message);
             System.out.println("Message Send.....");
    }with above code,I can able to get Delivered/Undelivered receipt.
    I need code to get the Read receipt by using Java mail API.
    Already I did lot of search in google and got weird.
    Thats why I post here.If anybody have the sample code to do this pls., share here..this helpful to lot.
    Thanks in advance.

    bshannon wrote:
    Please read [RFC 3798|http://www.ietf.org/rfc/rfc3798.txt].
    You'll need to set the Disposition-Notification-To header using the setHeader method.Hi I got the solution with below code. I add just one line code in my previous code.Now its work fine. But As bshannon replied me, here am not used setHeader method.I have used addHeader method.
    below my code:
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class testMail {
        public static void main(String args[]) throws Exception {
            String host = "172.16.3.13";
            String from = "[email protected]";
            String to = "[email protected]";
            String dsn = "SUCCESS,FAILURE,DELAY ORCPT=rfc1891;" + to;
            // Get system properties
            Properties properties = System.getProperties();
            // Setup mail server
           properties.setProperty("mail.smtp.host", host);
           properties.put("mail.smtp.dsn.notify", dsn);
            // Get the default Session object.
            Session session = Session.getDefaultInstance(properties);
            // Create a default MimeMessage object.
            MimeMessage message = new MimeMessage(session);
                   // value of the InternetAddress.getLocalAddress method.
            message.setFrom(new InternetAddress(from));
            // Add the given addresses to the specified recipient type.
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
           //below one line code I added to get read receipt mail.
            *message.addHeader("Disposition-Notification-To", "[email protected]");*   
        // Set the "Subject" header field.
            message.setSubject("hi..!");
            // Sets the given String as this part's content,
            // with a MIME type of "text/plain".
            message.setText("Hi this is test mail:");
            // Send message
            Transport.send(message);
             System.out.println("Message Send.....");
    Hi bshanon thanks for your kind reply

  • Im using xcode 4.6 and im having problems reading files using the fopen function in c

    Im using xcode 4.6 and im having problems reading files using the fopen function in c

    Yes, but that would not cause the "build  failed" message.
    right I missed that part. Looks like two problems then.
    //  main.m
    //  ASCTestFopen
    //  Created by Frank Caggiano on 3/2/13.
    //  Copyright (c) 2013 Frank Caggiano. All rights reserved.
    #import <Foundation/Foundation.h>
    #include <stdio.h> 
    int main(int argc, const char * argv[])
        @autoreleasepool {
            FILE *fp, *fopen();
            // insert code here...
            if((fp = fopen("~/test.txt","r")) == NULL)
                NSLog(@"open failed");
        return 0;
    This will compile ad run in Xcode with a project type of comand line tool

  • Is it possible to read Barcode using Blackberry Application?

    Dear Friends,
    Is it possible to read Barcode using Blackbbery application? If yes please let me know what thing we'll be require to develop the same. It is very urgent please help me.
    Regards,
    Haidar Ali

    Yes, it is. There are already a number of barcode reader applications for BlackBerry, such as one named  "Edocrab".  Google it.
    You'll need some experience in Java development. Please see the Developer section of this forum.
    And here:
    http://na.blackberry.com/eng/developers/
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Reading PDF using PHP

    Is there any way to read PDFs using PHP? Would appreciate the help.
    Thanks,
    Jyotsna

    Hi Olaf,
    We have a question paper in PDF. We wanted to read each question from that PDF and save it in a database. Is there any PHP library or module which allow us to do sublayering kind of thing on PDFs ?
    Thanks,
    Jyotsna

  • The drop down menus in Photoshop CC 2014 are too small to read without using the magnifier.  They are OK in Photoshop CC.  I have been unable to find anyplace to adjust the font size.  I have Windows 7 Pro.  Looking at the Photoshop version history, it lo

    The drop down menus in Photoshop CC 2014 are too small to read without using the magnifier.  They are OK in Photoshop CC.  I have been unable to find anyplace to adjust the font size.  I have Windows 7 Pro.  Looking at the Photoshop version history, it looks like this problem comes and goes as Photoshop is updated.  It should be an easy fix.

    Try the Photoshop CC 2014 Preference experimental section 2X UI option

  • Adobie Reader problem using OS Vista and IE9

    Operating System = Windows Vista
    Browser = IE9
    Adobe Reader long use without problems.
    Previously click on link within web page and view text.
    Now only white space and no text.
    Deleted and reinstalled Adobe Reader with version 10.1.3.
    Problem remains.
    Works appropriately on Google Chrome and Mozilla Firefox.
    Would appreciate any suggestions.

    Does that happen with every online PDF, e.g. http://helpx.adobe.com/content/dam/help/attachments/Acrobat_Reader_ReleaseNote_10.1.3.pdf ?

Maybe you are looking for

  • I have a 2011 macbook pro, buy yet when I connect my 16GB or 8GB Sandisk Extreme class 10 30mb card, it wont read it, however, it reads a 2GB class 2 card, is there anyway to fix this?

    I have a 2011 macbook pro, buy yet when I connect my 16GB or 8GB Sandisk Extreme class 10 30mb card, it wont read it, however, it reads a 2GB class 2 card, is there anyway to fix this? and no, there is nothing wrong with the cards, they shoot fine, m

  • Integration Server Coniguration

    XI-Gurus! We're trying to access the integration server using the file adapter. Polling the file from the source directory works fine but the file isn't transported to the integration server. In the runtime workbench's message monitor I found an entr

  • Problems with iCal syncing

    I had this problem with my original iPhone and I also ran into it this morning while using my new iPhone 3G. While syncing the iCal events to my phone, iTunes basically says it is syncing continuously. I actually went to bed one night with it saying

  • JSF 1.2 RI and facelets

    Hello, we have some component library that builds on JSF 1.2 RI and facelets. Usually JSF 1.2 cannot run on WLS 9.2 because it requires JSP 2.1 (thus weblogic 10). However, since we use facelets and thus no JSP, in this case JSF 1.2 can run on WLS 9.

  • Weblogic Explicit Transaction Management

    Hi, I am in need of managing mutiple transactions which access two different databases which are not Oracle (NON XA) but still I want to implement 2 Phase Commit. I read documents about JTA, and tried to use TransactionManager . But I am not able to