Serial data collection and display

I write machine code for microchip cpu's and have a project that transmits
about 80 characters of hex data at 115k baud. I would like to use labview
(or ?) to collect the data and display it on a pc. Does anyone know if about
80 bytes sent at that speed and repeating as often as 10ms will choke
LabView? Also, if anyone with a good understanding of LabView serial com is
in or near Las Vegas I would be interested in their services.
Andrew MacDonald
[email protected]

The data rates you're talking about should be doable with LV as long as there isn't something else running on the machine that is consuming an inordinate amount of processor time.
The only thing to be careful of is putting too much processing in the acquisition loop. What exactly are you trying to do?
Mike...
Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion
"... after all, He's not a tame lion..."
Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

Similar Messages

  • Extract Year (only) from Date Field and Display in Text Field

    I need to extract the year from a user entered date field and display the year in a text field. Can someone help me with the correct script to do this?

    Hi,
    that's quite easy to realize with FormCalc.
    In you date fields exit event add the following code:
    textField1 = Num2Date( Date2Num($.formattedValue, "MM/DD/YYYY"), "YYYY")
    Note: This sample assumes that your date field formats the date with "MM/DD/YYYY". You may have to change the pattern to make it work at your end.

  • Joins between DATA COLLECTIONS and TABLES

    I would like to know if is there any way to create one data collection with a query result, but I must join this data collection with an exist table, I cant use the GLOBAL TEMPORARY TABLE because I cant create a table in the module. I would like to do just what the SQL Server do with the @.

    sql>create type tnumbercollection as table of number;
      2  /
    Type created.
    sql>declare
      2    c  tNumberCollection;
      3  begin 
      4    select employee_no bulk collect
      5      into c
      6      from mrt_user_master
      7     where rownum <= 5;  -- build collection of 5 employee numbers
      8 
      9    for r in (select um.last_name
    10                from user_master um, table(cast(c as tNumberCollection)) t
    11               where um.employee_no = t.column_value) loop  -- join the collection to the table
    12 
    13      dbms_output.put_line( r.last_name);          
    14 
    15    end loop; 
    16  end;
    17  /
    PL/SQL procedure successfully completed.

  • Continously data collection and events

    Hi Folks,
    I need a suggestion about how to get DATA continously and trigger another events simultaneously .
    Here is my vi snippet with continously monitoring the motor value and direction but wanna trigger and change it movement in rel and abs.
    I also have two hall sensors as end switch called in events.
    Can you help me ??
    Boldness has genius, power and magic in it!'
    Attachments:
    vi.PNG ‏47 KB

    The attached picture tells nothing about, what you've done in your code or what design pattern are you using now...!!
    flongnos said correctly, some design pattern based out of 'Parallel Loops' is needed, when you have two or more processes that need to run simultaneously and continuously (may be at different rate).
    You should check:
    Application Design Patterns
    I am not allergic to Kudos, in fact I love Kudos.
     Make your LabVIEW experience more CONVENIENT.

  • Labview data collection and storage?

    for a complete labview beginner, what is the best way to collect data from hardware connected by rs-422 serial port?
    Solved!
    Go to Solution.

    At the moment i've set up the attached but I can only get it to input one set of values. how can I get it to continuosly output the files? Secondly I would rather out put them to a spreadsheet format, with the five different numbers (three from I/O assistant and two from Date/Time String) in diferent columns? Im trying to use the write spreadsheet VI but it needs an orange connection?
    Cheers
    Attachments:
    first attempt.PNG ‏15 KB

  • How do I select a date column and display the millesecond along with it.

    I am trying to select a date column from database and want to
    display millesecond with it. How do I do this. I am aware of
    the "alter session set NLS_DATE_FORMAT = 'MM/DD/YY HH:MI:SS'"
    command. However, I do not know how to display this with the
    millesecond.
    Thanks for all the help.

    Example:
    SQL> CREATE OR REPLACE JAVA SOURCE
      2  NAMED "MyTimestamp"
      3  AS
      4  import java.lang.String;
      5  import java.sql.Timestamp;
      6 
      7  public class MyTimestamp
      8  {
      9  public static String getTimestamp()
    10   {
    11   return (new
    12   Timestamp(System.currentTimeMillis())).toString();
    13   }
    14   };
    15  /
    Java created.
    SQL> CREATE OR REPLACE FUNCTION my_timestamp
      2    RETURN VARCHAR2
      3  AS LANGUAGE JAVA
      4  NAME 'MyTimestamp.getTimestamp() return java.lang.String';
      5  /
    Function created.
    SQL> CREATE TABLE test_time
      2    (date_col VARCHAR2 (23))
      3  /
    Table created.
    SQL> INSERT INTO test_time (date_col)
      2  SELECT my_timestamp
      3  FROM   dual
      4  /
    1 row created.
    SQL> SELECT date_col
      2  FROM   test_time
      3  /
    DATE_COL
    2001-11-02 14:58:51.766

  • Data collection and exportin collected data.

    So, I need to be able to find a app or web app that will work with Ipad/Iphone that I can collect data while Im in the field and when I return to my PC I can sync the info to have it poplulate a pre-existing PDF document. Is there such a way to do this?

    Hi,
    Please download the below Patch from cisco.com :
    lms4.0.1-win-CSCto06189-0  (windows)
    lms4.0.1-sol-CSCto06189-0  (solaris)
    I hope this will help !!!
    Thanks--
    Afroj

  • Facebook iOS SDK: Data collection and Permissions

    What data points does the Facebook iOS SDK auto-collect?
    Meaning developer doesn’t need to use a setter method at all and SDK is just able to get the value automatically.
    Does Facebook iOS SDK automatically collect IFA without requiring it to be set manually?
    Does Facebook iOS SDK automatically collect latitude and longitude without requiring it to be set manually?
    What iTunes permissions does Facebook require implementing their iOS SDKs?

    Wouldn't it be more appropriate to ask Facebook about their iOS integration?

  • Serial data acquisition and framing

    Hello, all.
    I need to acquire data from two serial ports, search for sync words and frame them. The data length is 32 bytes arriving 25 times per second from both ports. I need to frame them. I am using matlab script to frame them but it sometimes misses the incoming data. I think the data rate is not too much, labview can handle it easily.
           Is the matlab script slowing it down? what can be the efficient way of framing the data.
    Thanking in anticipation.

    What do you mean by "framing the data"?  Give some examples.  I'm sure matlab scripts are going to run slower than native LabVIEW code.

  • How to read .dat file and display on a chart.

    Hello, I am very new to labeled and am looking for some guidance on how to display data from a file onto a chart. I have registered the appropriate data plug in (Yokogawa_DAT) however when I try to use the file viewer VI it is still not recognized by LabVIEW. I have included a sample of the data which includes 2 channels plus time stamping and color information etc. The data is produced by a Yokogawa VR100 recorder that is no longer supported, and therefore the native viewing software is impossible to get. Unfortunately my time is limited and learning all the ins and outs of LabVIEW is going to take a good deal of it, I am hoping someone will be able to point me in the right direction to learn the basics of what I am after without having to learn LabVIEW in its entirety. Many Thanks!
    Attachments:
    D110514.zip ‏3 KB

    Yes, Brand new set of data, exactly as it comes off the recorder. Including config files etc.
    Attachments:
    Yokogawa.zip ‏8 KB

  • Compare 2 data sets and display the last record

    I have one record in first table and 2 records in second table.
    Ex:Table 1:
    A     100     200   0
    B     200     300   0
    Table 2:
    A      0        0     100
    A      0        0     500
    B      0        0     700
    In one final template I want to display like below with only 2 records like below.
    A      100    200    500
    B      200    300    700
    Anybody suggest me how to pick only last record if the count is greater than 1 in second table.

    not sure what are you trying to do
    if you want to join two table then sql is more useful IMHO
    Anybody suggest me how to pick only last record if the count is greater than 1 in second table.
    you can get last record by last() function
    <?for-each:SOMETAGorGROUP[position()=last()]?>

  • How to add new data entry and display old data in the same screen in SM30?

    Hi, Experts:
    We need to use SM30 to maintain a table entry. When I click the button of "New Entries", the table screen becomes blank. I can only add new data but not be able to see the old data existing in the table.
    How can I have the new line available for me to add new data at the same time see the data currently existing in the table?
    Thanks,
    Jenny

    Hi, thanks for the reply!
    Just to follow up for what we did to disable the delete function for maintaining table records. We hided the Delete button by adding a "MODULE disable_delete" code in Screen Painter. So now only adding records to the table is allowed.
    Thanks,
    Jenny

  • How do I retrieve all data from a table and display it on a text area?

    I want to retrieve all the data from one of my MS Access data table and display them all in a text area. how do i go among doing this?
    In my car table i have the fields lined up like this..
    license,color,doors and year_made
    I have an Object class called CAR that will contain methods to set the data from these fields when it gets retrieved.
    here's what i go so far.....
    statement = getDBConnection().createStatement();
         rs = statement.executeQuery("select * from car");
         boolean moreRS = rs.next();
    if(moreRS)
    car.setLicense(rs.getLong(1));
         car.setColor(rs.getString(2));
         car.setDoors(rs.getString(3));
    car.setYearMade(rs.getString(4));
    //but this will only get me one car. How do I get more car data?
    HELP!!

    Vector cars = new Vector();
    while (rs.next()) {
      String license = rs.getLong(1);
      String color = rs.getLong(2);
      String doors = rs.getLong(3);
      String year = rs.getLong(4);
      myTextArea.append(license+"\t"+color+"\t"+doors+"\t"+year+"\n");
      Car car = new Car();
      car.setLicense(license);
      car.setColor(color);
      car.setDoors(doors);
      car.setYearMade(year);
      cars.add(car);
    }t=tab
    n=newline
    Vector: http://java.sun.com/j2se/1.4.1/docs/api/java/util/Vector.html

  • Regarding substract 2 dates and display o/p in days

    hi all
    in my program i hv to substract to diffrent dates field and display result in days.
    i.e suppose i hv to substract 10/6/2008-1/06/2008
    display should be 9 days

    Hi,
    CALL FUNCTION 'HR_HK_DIFF_BT_2_DATES'
        EXPORTING
          date1                         = date1
          date2                         = date2     OUTPUT_FORMAT                 = '02'
       IMPORTING
        YEARS                         =
        MONTHS                        =
         DAYS                          = v_days
       EXCEPTIONS
         INVALID_DATES_SPECIFIED       = 1
         OTHERS                        = 2
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    In v_date you get the number of days between the two dates.
    Reward points if useful.
    Thanks & regards
    Deepika

  • Select Date between range and display

    Hello - i need some ideas to the following:
    I need to create a form to submit some information, with the
    date that form was submitted, to a database using php.
    Once the form is submitted i need to retrieve multiple rows
    from the database based on a selected date range, and display the
    information
    Question one - any ideas on the flow that i need
    question two - how do you think that i best record the date -
    given that i need to select a range later.
    question three - how do I select mutiple rows give a range of
    dates
    Thanks

    Hello - i need some ideas to the following:
    I need to create a form to submit some information, with the
    date that form was submitted, to a database using php.
    Once the form is submitted i need to retrieve multiple rows
    from the database based on a selected date range, and display the
    information
    Question one - any ideas on the flow that i need
    question two - how do you think that i best record the date -
    given that i need to select a range later.
    question three - how do I select mutiple rows give a range of
    dates
    Thanks

Maybe you are looking for

  • Error while applying the patch 9239089

    Dear All, I have installed the Oracle E-Business Suite Release 12(12.1.1) on Windows 2003 (32-bit) OS successfully.Its a single node installation. Hardware & Software Specifications: - Intel Core 2 Duo, CPU 2.40 GHz - 2 GB of RAM - 180 GB Hard Drive

  • Issuess in creation of  New company

    Hi By mistake  i have created "S" (Branch Company ) in 2000 in OM. As parent company (R) has created on 2004 i want to change the date of the Company "S" on 2004 or after 2004. But when i m changing the date in the changed mode in OM its not taking t

  • ActiveX component could not be created in Windows 7 64bits, with Microsoft Office 2010 Sp132 bits

    Good day to everyone: We are experiencing an issue during the installation of a software for one of our clients. The software is EVSpc 5.0 builded in 32 bits version and provided by the MassHealth department for insurance verifications purposes. The

  • Flex + cairngorm problem with 2 webservice

    hi i want to retrive data from 2 webservices using cairngorm.  flex can get data from the firsone and from the second is telling that doesn't see method, for me it is cos service it trying to find method from second webservice in this firstone. so wh

  • I Want My Mac To Talk

    Hey, I have a very specific question: How can I make my mac say goodnight when it puts itself to sleep? I've heard of this being done, and I would like to try it myself. I played with a bunch of settings in the "Universal Access" and "VoiceOver" menu