Log from Digitizer

I need to log both channels of my digitizer for 8 seconds.
I need to see how 2 waveforms (both at 350kHz) are changing overtime so sampling rate needs to be as high as possible. 
Nothing fancy needs to be done. 
No triggering. No timing. No special file type. Files don't even need to be indexed. 
Just click. Log. Save the file manually. 
What is the most simplistic way to do this?
We have a bunch of NI software (Labview, Signal Express, ect..), but nobody on the team knows how to use them...
Thank you very much!
Randy
Solved!
Go to Solution.

The amount of data the NI-SCOPE Soft Front Panel can save is limited by the amount of data your scope can take in a single acquisition.  This will depend upon how much memory your scope has and the native bit depth of the acquisition (e.g. a 5122 takes 16-bit data).  You can change the record length in the SFP by choosing Edit»Device Configuration and selecting the Horizontal tab.  You may get where you need to be by just doing this.
However, you can get far more data and higher data rates if you stream from the device directly to disk.  This operation will be limited by your bus and disk speeds.  Typical sustainable values are around 20MBytes/sec - 40MBytes/sec, although with RAID systems and PCIe busses, this can get into the hundreds of megabytes per second.  To do this, you need to set your scope up so you are fetching from it as you are taking data.  A simple example can be found in niScope EX Fetch Forever.vi, in the NI-SCOPE examples.  However, this does not save data, it just fetches it.  After you fetch the data, you need to save it, preferably in a different thread than the fetch code.  This is easy in LabVIEW - use another loop.  You can find an example of this in niScope EX Save to File - HWS Low Level - Single Channel Stream.vi.  It uses NI-HWS, but the calls to NI-HWS could easily be replaced with either the binary primitives or TDMS calls.  This example fetches like the first one, but uses a queue to send to data to another loop, where it is stored in a file in a parallel thread.  Note that displaying your data will slow down your maximum acquisition rate, so the example does not do this.
Good luck!  Let us know if you need more help.
This account is no longer active. Contact ShadesOfGray for current posts and information.

Similar Messages

  • How to write to windows event logs from determinations-server under IIS

    This is just an FYI technical bit of information I wish someone had shared with me before I started trying to write OPA errors to the windows event log... Most problems writing to the windows event log from log4net occur because of permissions. Some problems are because determinations-server does not have permissions to create some registry entries. Some problems cannot be resolved unless specific registry entry permissions are actually changed. We had very little consistency with the needed changes across our servers, but some combination of the following would always get the logging to the windows event log working.
    To see log4net errors as log4net attempts to utilize the windows event log, temporarily add the following to the web.config:
    <appSettings>
    <!-- uncomment the following line to send diagnostic messages about the log configuration file to the debug trace.
    Debug trace can be seen when attached to IIS in a debugger, or it can be redirected to a file, see
    http://logging.apache.org/log4net/release/faq.html in the section "How do I enable log4net internal debugging?" -->
    <add key="log4net.Internal.Debug" value="true"/>
    </appSettings>
    <system.diagnostics>
    <trace autoflush="true">
    <listeners>
    <add
    name="textWriterTraceListener"
    type="System.Diagnostics.TextWriterTraceListener"
    initializeData="logs/InfoDSLog.txt" />
    </listeners>
    </trace>
    </system.diagnostics>
    To add an appender for the windows event viewer, try the following in the log4net.xml:
    <appender name="EventLogAppender" type="log4net.Appender.EventLogAppender" >
    <param name="ApplicationName" value="OPA" />
    <param name="LogName" value="OPA" />
    <param name="Threshold" value="all" />
    <layout type="log4net.Layout.PatternLayout">
    <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
    </layout>
    <filter type="log4net.Filter.LevelRangeFilter">
    <levelMin value="WARN" />
    <levelMax value="FATAL" />
    </filter>
    </appender>
    <root>
    <level value="warn"/>
    <appender-ref ref="EventLogAppender"/>
    </root>
    To put the OPA logs under the Application Event Log group, try this:
    Create an event source under the Application event log in Registry Editor. To do this, follow these steps:
    1.     Click Start, and then click Run.
    2.     In the Open text box, type regedit.
    3.     Locate the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application
    4.     Right-click the Application subkey, point to New, and then click Key.
    5.     Type OPA for the key name.
    6.     Close Registry Editor.
    To put the OPA logs under a custom OPA Event Log group (as in the demo appender above), try this:
    Create an event log in Registry Editor. To do this, follow these steps:
    1.     Click Start, and then click Run.
    2.     In the Open text box, type regedit.
    3.     Locate the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog
    4.     Right-click the eventlog subkey, point to New, and then click Key.
    5.     Type OPA for the key name.
    6.     Right-click the new OPA key and add a new DWORD called "MaxSize" and set it to "1400000" which is about 20 Meg in order to keep the log file from getting too large.
    7.     The next steps either help or sometimes cause an error, but you can try these next few steps... If you get an error about a source already existing, then you can delete the key.
    8.     Right-click the OPA subkey, point to New, and then click Key.
    9.     Type OPA for the key name.
    10.     Close Registry Editor.
    You might need to change permissions so OPA can write to the event log in Registry Editor.  If you get permission errors, try following these steps:
    1.     Click Start, and then click Run.
    2.     In the Open text box, type regedit.
    3.     Locate the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog
    4.     Right-click the EventLog key, select Permissions.
    5.     In the dialog that pops up, click Add...
    6.     Click Advanced...
    7.     Click Locations... and select the current machine by name.
    8.     Click Find Now
    9.     Select both the Network user and IIS_IUSERS user and click OK and OK again. (We never did figure out which of those two users was the one that fixed our permission problem.)
    10.     Change the Network user to have Full Control
    11.     Click Apply and OK
    To verify OPA Logging to the windows event logs from Determinations-Server:
    Go to the IIS determinations-server application within Server Manager.
    Under Manage Application -> Browse Application click the http link to pull up the local "Available Services" web page that show the wsdl endpoints.
    Select the /determinations-server/server/soap.asmx?wsdl link
    Go to the URL and remove the "?wsdl" from the end of the url and refresh. This will throw the following error into the logs:
    ERROR Oracle.Determinations.Server.DSServlet [(null)] - Invalid get request: /determinations-server/server/soap.asmx
    That error should show up in the windows event log, OR you can get a message explaining why security stopped you in "logs/InfoDSLog.txt" if you used the web.config settings from above.
    http://msdn.microsoft.com/en-us/library/windows/desktop/aa363648(v=vs.85).aspx
    Edited by: Paul Fowler on Feb 21, 2013 9:45 AM

    Thanks for sharing this information Paul.

  • How to get the job logs from sm35 by using the queue id and session name?

    hi all,
    can any one please let me know how to read the job log from sm35 by using the session name and queue id. i have the job name and job count but is it possible to download the job log by using the queue id and session name.
    FYI..
    i want to read this job log and i want to send it to an email id.
    -> i am using the job_open and submitting the zreport via job name and job count and then i am using the function module  job_close.
    but this is not working in my scenario i have the queue id and session name by using this two i want to get the job log is there any function module available or code please provide me some inputs.
    thanks in advance,
    koushik

    Hi Bharath,
    If you want to download it to the local file then you can follow the instructions in the below link.
    How to download Batch Input Session Log?
    Regards,
    Sachin

  • How to write  to weblogic.log from JSP ?

    It is possible to write some messages to weblogic.log from JSP?
              

    Use weblogic.logging.LogOutputStream class to log messages into
              weblogic.log file.
              javap on weblogic.logging.LogOutputStream
              for e.g
              <%@ page import="weblogic.logging.*" %>
              <%
              LogOutputStream los = new LogOutputStream("TEST");
              los.error("Writing into Log file");
              %>
              Hope this helps.
              --kumar allamraju
              Mikhail Ershov wrote:
              > It is possible to write some messages to weblogic.log from JSP?
              

  • Replication of activities(contact log) from CRM to R/3

    Hi,
    In our current project scenario we have requirement to replicate activites(contact log) from CRM to R/3.As standard SAP only replication of activites from R/3 to CRM, we need custom development to achieve replication from CRM to R/3.
    Can anyone guide me how to solve this issue.
    Regards
    Nikhil

    Have you found a solution for this requirement?
    regards
    André

  • Capturing Application Error log from SXMB_Moni

    Hi,
    I wanted to capture the error information from Application error log from ECC sxmb_moni and forward that as email alert.
    We have already alert configuration in place with alert category using standard variables. Was wondering if I have to capture application error log from sxmb_moni what would be steps involved. Please let me know if anybody has worked on this and appreciate your help on this.
    Sample Error message from sxmb_moni of ECC system
    MT_Fault
    Error in Application System
    Detailed Information
    Process Order invalid
    Thanks
    Selvam
    Edited by: Selvam_muthu on Jun 23, 2011 5:40 PM

    Hi Selvam,
    As the exception is raised in ECC system, alert cannot be trigger, alert will get trigger when there is a error in PI system. To raise a email, write additional code in ECC to trigger the e-mail with proper error content

  • How to get the user log from the entried planning data ???

    Dear All,
    Could you help me to give the suggestion regarding that please .. ?? :).
    I have requirement to get the last user who in charge in modifying the planning data.
    Or in the other words, i'm gonna get the log from the entried planning data.
    e.g.
    1. Phase 1 - My Friend:
    Create the planning data :
    Country           Sales
    INA                 $1000
    2. Phase 2 - I update it and create new record.
    Country           Sales
    INA                 $1500          < modified >
    USA                $400           < new >
    Could i get the log from those records ??
    The log can be contain:
    the created user       &   modified user ??
    I just read the article regarding status and tracking system in BPS, but could i cover that requirement ??
    (Because i got that the status and tracking system for creating a workflow for planning).
    Or ..
    Is there other way that can fulfill this requirement  ???
    Really need your guidance all.
    Regards,
    Niel.

    Dear Mayank,
    Tks a lot for your responses.
    I've tried it but in BPS version..
    I saw in the document there is GUID (unique ID), could you explain me what the objective is ???
    I work out to plan to store the user created, date created, and planning level information in the log data.
    What do you think ..
    Is it better to display them in the BEx Report / another manual planning layout ???
    What did you display the log data in your case ??
    Still need your guidance ..
    Really - really thanks.
    Niel.

  • Unable to download crash logs from iPhone 5  into MacBook Air 10.8.4

    Hi All,
    I' am new to mac world. Apologies if this is a very basic question.
    I have an iPhone 5 and and I would like to download my app's crash reports into my MacBook Air 10.8.4 for further ivestigation.
    What I did was:
    1. Connect device
    2. open iTunes and click sync (sync successful)
    3. Now all my photos that I took using my iPhone are visible in Macbook's iPhotos (until this - very good)
    Now,
    4. Open up a Terminal app
    5. put ~/Library/Logs/CrashReporter/MobileDevice/ to download my iPhone app's crash logs, assuming they would all have synced, but unfortunately it doesn't look like it has even got CrashReporter/MobileDevice/ forlder created in my ~/Library/Logs/ directory.
    Any help to download all the iPhone 5 app crash logs into my Macbook would be really very appreciated.
    (Please also let me know if I need to change any setting in my iPhone that will allow me to download my crash logs from Diagnostics section into my Macbook)
    kumaresh:~ kumareshd$ pwd
    /Users/kumareshd
    kumaresh:~ kumareshd$ cd Library/Logs/
    kumaresh:Logs kumareshd$ ls
    AMRestoreLog.txt                    Sync
    Adobe                                        Ubiquity
    DiskUtility.log                              appstore.log
    FlashPlayerInstallManager.log          fsck_hfs.log
    Spotify
    kumaresh:Logs kumareshd$

    I think I have..
    kumareshmba:Logs kumareshd$ touch test.txt
    kumareshmba:Logs kumareshd$ ls -al
    total 32
    drwx------+ 12 kumareshd  staff   408  3 Aug 10:50 .
    drwx------@ 49 kumareshd  staff  1666 31 Jul 14:31 ..
    -rw-r--r--   1 kumareshd  staff  1316 31 Jul 12:48 AMRestoreLog.txt
    drwx------   3 kumareshd  staff   102 25 Jul 21:44 Adobe
    -rw-r--r--   1 kumareshd  staff    61 26 Jul 23:25 DiskUtility.log
    -rw-rw-rw-   1 root       staff   308 25 Jul 19:53 FlashPlayerInstallManager.log
    drwxr-xr-x  11 kumareshd  staff   374 27 Jul 08:17 Spotify
    drwxr-xr-x   3 kumareshd  staff   102  3 Aug 10:45 Sync
    drwxr-xr-x   3 kumareshd  staff   102 25 Jul 18:23 Ubiquity
    -rw-r--r--   1 kumareshd  staff     0 25 Jul 18:23 appstore.log
    -rw-r--r--   1 kumareshd  staff  2501 27 Jul 12:47 fsck_hfs.log
    -rw-r--r--   1 kumareshd  staff     0  3 Aug 10:50 test.txt
    kumareshmba:Logs kumareshd$ pwd
    /Users/kumareshd/Library/Logs

  • How to capture content activity log from DMP?

    Hi There,
    I try to implement content activity log from DMP. The information that I want to get are DMP IP, Conent File Name (video or jpg file), open date/time. The only way that I can do is sending http command direct to DMP (http.file via port 7777).
    Is it possible to implement Syslog server to get those information from DMP?
    Thank you
    Panya

    Hi Panya,
    There is a feature called "Proof Of Play" which was created exactly to track what the DMPs are playing, you can find the documentation at the following link:
    http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_2/dmm/user/guide/signs/proof.html
    Is this what you are looking for?
    Best Regards,
    Marco

  • Function module to display process overview log from SM66 Transaction

    Hi,
    I want to display process overview log from SM66 Transaction in a report.
    Is there a function module which will help me in achieving that or is there any other method.
    Thanks in advance,
    Sandeep.

    Did you try finding out how SM66 creates the list? You could set break-points e.g. at statement "call function" and see which ones are being called. Look at those starting with TH... especially.
    Thomas

  • Restore achive logs from tape

    Hi
    I need to restore archive logs from the tape. I am pretty new on this, do i have to go brtools and restore the archive logs or there is a t code in sap that I can recover from that? if it is using brtools, what is step and procedure? do I have to use sqlplus? while I am doing this type of recovery, do I need to shut the dabase down?
    please share
    thanks

    Wei,
    You can restore redo logs from below command.
    brrestore -a <start_log#>-<end_log#> -c -d util_file -r <Oracle_Home>\database\initSID.utl
    If you want to do a restore & recovey you can go for point intime recovery. Here You need to restore online backup & then additionally need to apply redologs which were generated after the online backup.
    Check below link for details.
    http://help.sap.com/saphelp_nw04/helpdata/en/93/4ffb72309fb04e80ebfefae1b7a96f/frameset.htm
    also check below SAP notes which will answers of your questions.
    602497 - BRRECOVER - New tool for Oracle Restore and Recovery
    Note 4161 - Complete Recovery
    Note 23070 - Backup and Recovery: Basic Concepts
    Note 4160 - Tape management for recovery
    Hope this helps
    Thanks
    Sushil

  • Working with a developer of a mobile site and want to export the debug log from android!

    Hi have an HTC incredible and I am working with the developer of and would like to send him the error logs generated. Is there a way to export them to a text file.
    Thanks,
    Matt

    Sorry, there's not an easy way to copy or share the entire error log from Firefox for Android. To copy an individual log entry, you can press-and hold on the text to bring up a menu.
    This add-on has support for exporting various other debugging data from Firefox mobile. We've talked about adding support for the error logs in a future version. If you would like to help add that support, the source code is on GitHub:
    https://addons.mozilla.org/mobile/addon/nightly-tester-tools-for-mobil/

  • Unable to view client logs from sccm console

    Hi
    unable to connect to ccm and unable to view client logs from console. Console installed is on another server that is not site server
    Regards Sushain KApoor

    Hi
    SCCM right click tools adds multiple ‘Client Tools’ entries
    are comming when i right click on the clients. when i check for logs it shows client logs written only. More over when i try to connect to C$ i am able to connect to from console right click tools but when i go for connecting ccm folder it says no directory
    found admin$\system32\ccm, but my machine is of 64 bit OS hence it should go to syswow64. any ideas how to resolve the same.
    i am planning to go with
    http://blog.danovich.com.au/2010/11/16/sccm-right-click-tools-adds-multiple-client-tools-entries/ this option
    Regards Sushain KApoor

  • How to extract audit log from R/3 into BW

    Hi, I have a request that how to extract audit log from r/3 into bw?
    Is there any datasource or infocube  I can use?

    HI ,
    Identify your Audit Log table and create generic data source for the same using rso2. 
    Regards
    BVR

  • Generate logs from user report options

    Hi all !
    I would like to know if there is a possibility to generate logs from report user selection:
    E.g: users can fill execution options to delimit the scope of the report execution and the output, company code, date ranges, account numbers, cost.
    - Is there a way to generate logs containing these report options that  were typed / filled by the user for every transaction executed?
    - If Yes could you please assist?
    Thanks in advance for the cooperation!
    Regards,

    There is a way of doing this using the object history, but the user can control this themselves and turn it off if they want to.
    Read the SAP notes on term "RSSGOSHIRE".
    Another way is to use parameter transactions or variant transactions, which the user cannot change or only change selected parameters for which you don't care about.
    Cheers,
    Julius

Maybe you are looking for

  • Wierd lines on my display and frequent lock-ups w/ and w/o display problems

    When booting I sometimes get weird lines and blocks on my display (the GRAY Apple screen) and then it hangs, other times the computer will boot and run fine for 20-30 minutes and then the display goes wonkers with blocks and lines and the computer do

  • Accessing Time Capsule files for new hard disk

    under AppleCare i have just had replaced a New Fusion drive and i want to access my Time Capsule in order to retrieve my files etc. However i cannot access it. i can see the 'sparse bundle' but Time Machine won't open/recognize it. how do i access th

  • Red light constantly on my nokia 5800

    right my 5800 has a few problems firstly it wont unlock unless if i mash the middle button to open the main screen then unlock my wifi doesnt connect to anything the screen is constantly dark even though it has its brightness turned to the maximum if

  • "Inherit" DIR authorizations from linked material

    Hello All, we would like to control DIR authorizations dependent on material master authorizations. Example: User has "read"-authorization for material master (via authorization group of material master) means he has automatically "read"-authorizatio

  • 174 degrees F too hot?

    So...I'm assuming that this is what's causing my computer to shut down. i'm using temperture monitor and it says my CPU board is 174F which is well above the upper limit of 148F. Any ideas on what I can do? My computer has been shutting down randomly