How use any digital out for rs232

hi !
how use any digital out for rs232 for LPC2368,2378 ? is it realy ?
thanks for answer

Sergiv,
             I don't know which LabVIEW Embedded product you are using (LabVIEW for ARM or the Microprocessor SDK) but there are shipping examples that walk you through basic DIO and Serial communication (for the LM3S8962) that you should be able to port over to your hardware. The two shipping examples are called DIO.lvproj and Serial Comm.lvproj. You can find these shipping examples in the Example Finder (Help>>Find Examples..) under the section called Toolkits and Modules and then under the ARM section.
Grant H.
National Instruments
LabVIEW Product Marketing Manager

Similar Messages

  • How to get digital signature for Google Map geocoding V3 in PL/SQL?

    Hi, Gurus:
        Could anyone provide me an example about how to generate digital signature for Google Maps service v3 in PL/SQL? We tried to upgrade our program using Google maps service from v2 to v3. We are using PL/SQl on background to send request to Google for geocoding. We found some sample code to register with digital signature, but none of them is based on PL/SQl. Notice I used Google business client ID "gme-XXX" and wallet.
    https://developers.google.com/maps/documentation/business/webservices/auth#digital_signatures
    Google Maps API - more URL signing samples
    Here is my code for V2. I notice in order to get signature, I need to use HMAC-SHA1 algorithm.
    procedure Get_Geocoding(P_s_Address in varchar2, P_s_Geocoding out varchar2, P_n_accuracy out number, P_b_success out boolean) is
      l_address varchar2(4000);
      l_url varchar2(32000);
      l_response varchar2(3200);
      n_first_comma number;
      n_second_comma number;
      n_level_length number;
    BEGIN
      /* TODO implementation required */
      l_address:=APEX_UTIL.URL_ENCODE(P_s_Address);
      l_address := replace(l_address,' ','+');
      l_url := 'http://maps.google.com/maps/geo?q='||l_address||'&'||'output=csv'||'&'||'client=gme-XXX';
    l_response := utl_http.request(l_url, APEX_APPLICATION.G_PROXY_SERVER, '/u02/app/oracle/admin/apexsb/wallet', 'XXXXXXXX');
      n_level_length:=0;
      n_first_comma:=instr(l_response,',',1,1);
      n_second_comma:=instr(l_response,',',1,2);
      n_level_length:=n_second_comma-n_first_comma-1;
      P_n_accuracy:=0;
      if n_level_length>0 then
      P_n_accuracy:=to_number(substr(l_response,n_first_comma+1, n_level_length));
      end if;
      l_response:=substr(l_response,instr(l_response,',',1,2)+1);
      --dbms_output.put_line('In function: l_response ='||l_response);
      P_s_Geocoding:=l_response;
      if (P_s_Geocoding<>'0,0') then
      P_b_success:=true;
      --dbms_output.put_line('true');
      else
      P_b_success:=false;
      --dbms_output.put_line('false');
      end if;
    END;
    Thanks!

    Hi, guys:
        I tried to generate digital signature for Google map service
         Maps for Business: Generating Valid Signatures - YouTube
        Generating an HMAC-SHA-1 Signature Using Only PL/SQL
          OAuth and the PL/SQL | Data Warehouse in the Cloud
       but I got error message from Google:
    Unable to authenticate the request. Provided 'signature' is not valid for the provided client ID. Learn more: https://developers.google.com/maps/documentation/business/webservices/auth
       I think there is something wrong with my code to generate signature, as if I remove the part regarding client and signature, it will work, can anyone help me on this problem?
    /*Procedure Get_Geocoding is used to get geocoding with accuracy level for V3 business account, you can find Google map digital signature descrirption from
    https://developers.google.com/maps/documentation/business/webservices/auth#digital_signatures
    if geocoding is 0,0, procedure returns false to indicate failure of get geocoding*/
    procedure Get_Geocoding2(P_s_Address in varchar2, P_s_Geocoding out varchar2, P_n_accuracy out number, P_b_success out boolean) is
      --private key for Google business account, this is provided by Google with client name.
      l_private_key_src varchar2(200):='xxxxxxxxxxxxxxxxxxx';
      l_private_key_b64_alter varchar2(200):= translate(l_private_key_src,'-_','+/');
      l_private_key_bin raw(2000);
      l_client_name varchar2(100):='gme-xxx';
      l_signature_mac raw(2000);
      l_signature_b64 varchar2(200);
      l_signature_b64_alter_back varchar2(200);
      l_Google_service_domain varchar2(200):='http://maps.googleapis.com';
      l_address varchar2(4000);
      l_url varchar2(32000);
      l_path varchar2(32000);
      l_response varchar2(32000);
      l_page UTL_HTTP.HTML_PIECES;
      n_actual_length number;
      json_obj json;
      json_tempobj json;
      jl_listOfValues json_list;
      json_geom_obj json;
      json_loc json;
      l_lat  VARCHAR2(40);
      l_lng  VARCHAR2(40);
      l_status VARCHAR2(255);
      json_accuracy json;
      --temp_string varchar2(10000);
      n_first_comma number;
      n_second_comma number;
      n_level_length number;
      BEGIN
    /* TODO implementation required */
    l_private_key_bin := utl_encode.base64_decode(UTL_I18N.string_to_raw(l_private_key_b64_alter, 'AL32UTF8'));
    l_address:=APEX_UTIL.URL_ENCODE(P_s_Address);
    --dbms_output.put_line(l_address);
    l_address := replace(l_address,' ','+');
    l_path := '/maps/api/geocode/json?address='||l_address||'&'||'sensor=true';
    dbms_output.put_line(l_path);
    l_signature_mac :=DBMS_CRYPTO.mac(UTL_I18N.string_to_raw(l_path, 'AL32UTF8'), DBMS_CRYPTO.hmac_sh1,l_private_key_bin);
    l_signature_b64:= UTL_RAW.cast_to_varchar2(UTL_ENCODE.base64_encode(l_signature_mac));
    l_signature_b64_alter_back:=translate(l_signature_b64,'+/','-_');
    dbms_output.put_line(l_signature_b64_alter_back);
    --get response from Google map service
    l_url:=l_Google_service_domain||l_path||'&client='||l_client_name||'&signature='||l_signature_b64_alter_back;
    --l_url:=l_Google_service_domain||l_path;
    dbms_output.put_line(l_url);
    l_page:=utl_http.request_pieces( l_url, 99999);
    for i in 1..l_page.count loop
    l_response:=l_response||l_page(i);
    end loop;
    n_actual_length:=length(l_response);
    dbms_output.put_line(n_actual_length);
    dbms_output.put_line(l_response);
    --parse JSON result
    json_obj:=new json(l_response);
    l_status := json_ext.get_string(json_obj, 'status');
    IF l_status = 'OK' then
    jl_listOfValues := json_list(json_obj.get('results'));
    json_tempobj := json(jl_listOfValues.get(1));
    json_geom_obj := json(json_tempobj.get(3));
    json_loc := json_ext.get_json(json_geom_obj, 'location');
    l_lat := to_char(json_ext.get_number(json_loc, 'lat'));
    l_lng := to_char(json_ext.get_number(json_loc, 'lng'));
    P_s_Geocoding:=l_lat||','||l_lng;
    dbms_output.put_line('##########'||P_s_Geocoding);
    case json_ext.get_string(json_geom_obj, 'location_type')
    when 'ROOFTOP' then P_n_accuracy:=9;
    when 'RANGE_INTERPOLATED' then P_n_accuracy:=7;
    when 'GEOMETRIC_CENTER' then P_n_accuracy:=5;
    else P_n_accuracy:=3;
    end case;
    P_b_success:=true;
    else
    P_b_success:=false;
    P_n_accuracy:=0;
    P_s_Geocoding:='0,0';
    end if;
      END;

  • Why can't the APPLE TV use AIRPLAY SPEAKER-OUT for movies/videos?

    I can't find one good explanation on why the Apple TV can't use the Airplay Speaker-Out for Movies/Video content; only for audio/music. Does anyone have any insight into this?
    For example, I have a video on my Macbook Pro (or my iPad or my iPhone) and I can stream the video via the Airport Express to my 2nd gen Apple TV, but I can't stream the audio of this video from my Apple TV back to the Airport Express and the speakers attached to it. If I had digital speakers connected to the Apple TV I assume it wouldn't be an issue, but at the moment, I only have analog speakers connected to the Airport Express... and I CAN do this with music only content, but then it becomes silly because in that case, I can just as easily stream music directly to the Airport Express from my chosen device (iPhone, et al.) without going through the Apple TV, but for video/movies, you need the Apple TV for the video; yet you can't use the Speaker-Out for the audio of that video and it just doesn't make sense, unless I am missing something...
    Any help is greatly appreciated (a google search came up with nothing useful at all.)

    It's not a flippant answer, no-one here will know for sure why Apple have chosen to do this. So in light of the fact that you won't get a definitive answer here, I suspect it doesn't matter because you aren't going to change anything, you just need to accept it.
    FWIW, I don't think licensing issues have anything to do with it. I think Apple expect you to have a sound system connected by either HDMI or optical and on that basis any connection via an airport express would be in another room and why would someone in another room want to listen to a movie without being able to see it.
    Apple differentiate themselves from others by providing features that everyone wants, they don't cripple their creativity by catering for the few like other companies. I'm sorry but I suspect you are one of the few here.

  • I have a lock field(boot.efi) in recycle bin how to put it out (for unlock and empty my recycle bin)

    I have a lock field(boot.efi) in recycle bin how to put it out (for unlock and empty my recycle bin)

    Trying logging out/in or a restart.
    If that doesn't allow you to empty the trash:
    Trash – Empty When File is Locked or in Use
    Trash FAQ       
    Maybe this will help:
    https://discussions.apple.com/message/17029415#17029415

  • Does anyone know why there would be slight latency using a digital out (Toslink w/adaptor) to my amp, where I don't have latency with an analogue cable? Is it the amp that is causing the latency?

    Recenty used a Macbook Pro with analogue out to my amp and there was no latency at all. Bought a new iMac and got a Toslink cable with adaptor and connected to same amp. There is slight latency using the digital out! Can anyone explain why? I don't really want to go back to using the digital cable because I have the surround sound setup that works well with the optical cable.

    error: I don't really want to go back to using the ANALOGUE cable....

  • Use ANY web template for a theme?

    is it possible to use ANY web template (for ex from template monster) and make it a theme in iweb in which everything still stays connected together?
    Rather than just searching for exact "iweb themes"? cause they all look super generic.
    Message was edited by: proximityblue

    No, you can't unless they were designed for iWeb and come with an installer. If you want something more unique start with a blank white or black theme page and build your own.
    OT

  • When playing music on my iPhone 4 using earphones when out for a run, I select shuffle and only 3 or 4 songs play then the music stops as if I have set only 3 songs to play. How do I correct this??

    When I am out for a run using earphone and a running APP I set my iphone 4 to shuffle songs but suddenly only 3-4 or 5-6 songs play and then they stop as if I set something to only play a certain number of songs from my playlist, its really irritating as I have to stop and press shuffle again, it happens with all my playlists and never mid song. This is a sudden issue as before I would just select shuffle and run and the music kept playing until I stopped it. Have I set something in error?? have looked at settings in General and in music and I am not sure what to do? any ideas??

    Just realised this happens without earphones and without using the running app. My iphone will only play 2 songs when I select shuffle in any playlist, driving me mad!

  • Using ATV2/3 with non-HDMI Receiver and theater projector and also need iTunes downloaded movies to work.   I'm thinking to use the Toslink digital out for surround sound and an HDMI to RGB converter for video but not sure the iTunes DRM will prevent?

    I have a theater with a Runco projector but non HDMI. alas, my receiver is non HDMI. Changing electronics and projector is a non-starter.
    I would like to be able to buy HD movies on iTunes and watch them by streaming via Apple TV3. My plan is to capture surround sound from the TosLink digital out, which my preamp/receiver can handle. For the video, I need to convert the HDMI to RGB component to feed my receiver.
    This is where iTunes DRM and HDCP issues might arise. I am under the impression that I need an non-HDMI compliant converter so that ATV3 can even talk to my receiver. It is my understanding that this is possible and takes care of the HDCP issue. But what about the DRM issue? All I want to do is buy and watch HD movies, no bad intentions. I find it incredible that iit might not be possible.
    Anyways, is there a 100% certain approach even if it costs up to $300-400. Again, changing hardware is a non-starter so please avoid the obvious "buy an HDMI amp and projector".
    Thanks

    I have a theater with a Runco projector but non HDMI. alas, my receiver is non HDMI. Changing electronics and projector is a non-starter.
    I would like to be able to buy HD movies on iTunes and watch them by streaming via Apple TV3. My plan is to capture surround sound from the TosLink digital out, which my preamp/receiver can handle. For the video, I need to convert the HDMI to RGB component to feed my receiver.
    This is where iTunes DRM and HDCP issues might arise. I am under the impression that I need an non-HDMI compliant converter so that ATV3 can even talk to my receiver. It is my understanding that this is possible and takes care of the HDCP issue. But what about the DRM issue? All I want to do is buy and watch HD movies, no bad intentions. I find it incredible that iit might not be possible.
    Anyways, is there a 100% certain approach even if it costs up to $300-400. Again, changing hardware is a non-starter so please avoid the obvious "buy an HDMI amp and projector".
    Thanks

  • Conecting MY MD player useing the Digital out jack on A2 ZS H

    Ok i have me a MD Sharp DR7 which has an optical In. on the back of my A2 i have a digital out Jack. so i conect my MD and it says no signal. iam useing a 3.5mm jack optical cable from A2 ZS to MD which is what the instructions say on my MD.
    so why dont i have any digital signal from my A2 ZS, i have checked all the digital outputs in the software and control panel but still its not working.
    Is my sound card at fault?
    I would really like to record useing some of the sound functions my A2 ZS offers but why cant i conect it by digital output!!!!!!!!
    thanks in advance for any awnsers to the problem that bugs my life right now!

    MiniDisc units do not care if its digital input signal comes from optical SPDIF or coax SPDIF. It's all SPDIF. All you need is the correct cable.
    It is possible you are hitting an SCMS restriction, in which case it doesn't matter how the digital signal is fed into the MD unit. I don't know if Creative's drivers respect SCMS or not - I haven't had the card long enough to find out yet.
    But you definitely do not need to use optical connectors to transfer digitally to an MD unit.

  • How to enable digital signature for browser enabled infopath form?

    Dear all,
    I have designed infopath form and published it into the document library. I want to provide signature option on the browser enabled infopath form.
    I have created it using secion and digital signature control.
    but I am getting this message.
    When i click on Yes . I get following screen.
    And it just hang here. I have enabled the active x control feature for IE.
    Please tell me where i should install this component and how it can be done? 
    I have access only to the sharepoint site.
    Thanks

    Hi,
    According to your post, my understanding is that you want to enable digital signature for browser enabled infopath form.
    To be able to sign this form, you need to activate two Windows Internet Explorer add-ons. Click the Information Bar in the dialog box, and then click Run ActiveX control to activate each add-on.
    Then you need to active the following add-on.
    In my environment, after I click the Next button, it open the picture as below.
    Once I click the link to add the add-on as above, everthing works well.
    For more information, you can refer to:
    Add a digital signature to a browser-enabled form
    Digital Signatures in InfoPath 2010
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Using Consumer Digital Camera for the Vision System

    I am evaluating, if I can use a consumer digital camera for the vision system. I wanted to see if anybody out there have done that in past? The other question is, do the consumer camera manufacturers provide the driver software in order to retrive the images directly from the camera to the computer ?

    I think your suggestion is right, using a firewire camera is much
    straightforward. But some consumer cameras have advantages too because
    of the very high resolution, especially the newer models of digital
    still camera. If the cameras support PTP protocol, then I have a
    LabVIEW driver for them. Check out more details at:
    http://www.hytekautomation.com/Products/PTPCam.html
    Irene He
    Bruce Ammons wrote in message news:<[email protected]>...
    > You would need a really, really good reason to use a consumer camera
    > instead of a machine vision camera. The hassle you would go through
    > to get drivers working and get everything else to work the way you
    > want is not worth it. You may pay more for a machine vision cam
    era,
    > but it will work with a minimum amount of effort. Nowadays, the
    > firewire cameras are cost effective and you can put together a system
    > that doesn't cost much more than your consumer camera would.
    >
    > Bruce

  • How to sign digital cerificate for adobe air application

    Hello freinds Please guide me how to sign the digital cerificate for my adoge air application.
    I am working on adobe flex sdk 3.2. so please guide me step by step how to sign my aaplication so that i can distribute it to other users.
    this is my first time thats why littlebit confused..
    Thanks And Regards
       Vineet Osho

    I assume you use Flex Builder. There is a UI that will let create a certificate when you try to export the AIR file.
    If you are using ADT directly. Use the '-certificate' option to create a PFX file.

  • Nokia 6233 - after update can`t use any Pic`s for ...

    Hallo Everybody!
    After Firmware Update to 5.10 i can`t use any pic for mms. I get only a white screen and the phone reboot.
    Before i update no problem with pics.
    The Update was an original from nokia with the nokia updater.
    Any Idea`s?

    Try the following:
    Try it without the memory card in using a file from phone memory.
    Factory reset the phone (you can find this in the settings menu).
    Run the updater again and see if it gives you the option to reinstall the update.
    If that fails to work then you need to visit a nokia care point and ask them to reflash the phones firmware.
    Care points/service centres and repair info:
    UK • Europe • Asia-Pacific • USA •
    Canada • Middle East and Africa
    Elsewhere: Click here, select your country, go to the support section, then select repair.

  • How Use /Fastdetect /3GB switch for Utlizing 2G RAM

    DB : 10.2.0
    OS : Microsoft Server 2003
    Processor : 2xDual Core Intel Xeon
    Physical Memory : 4G (But showing 3.5G)
    i want to configure my databse for utlizing 3g RAM ( using 3gb switch in boot.ini file 1G for OS Kernal and 2G for user related applications proces i.e ORACLE.EXE and lsnrctl etc.
    After changing parameter USE_INDIRECT_DATA_BUFFERS=TRUE in init.ora file. what value i have to cinfigure for DB_BLOCK_BUFFERS=XXXXXX
    and how i can update registery for AWE_WINDOW_MEMORY
    how i adjust SGA and PGA for establishing Aproximatly 400 sessios.
    Boot.ini file is as : (it is work or not)
    [boot loader]
    timeout=30
    default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
    [operating systems]
    multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows Server 2003 " /noexecute=optin /fastdetect /3GB /Userva=3030

    You may want to refer to the Metalink Note:
    implementing Address Windowing Extensions (AWE) or VLM on Windows Platforms. Note 225349-1
    Another good reference can be found at Memory Support and Windows Operating systems
    ~ Madrid

  • How to Increase Time-out for Agent Manager in OLT?

    Hello All,
    When using the Oracle Load Testing Agent Manager for a load test of multiple scripts, I often get time-outs at the start of a test from OLT:
    "Error communicating with.... : timed out after 60 seconds".
    When I check the agentmanager.log file on the remote PC (Win XP SP2) I can see that the communcation started with the last line saying
    "connected to server=......yaddayadda.... queue=queue/AgentPoolNotificationQueue"
    which I assume means there was communication. And there were 2 attempts to start. After the first attempt, the entry:
    05:31:09,513 WARN [AgentProcess] Forcibly terminating process 8041484 for agent agId1530_rndd49ae6b9-a8ec-4a0d-920d-16ee6c7021f4
    The agentmanager_auth.log file show 2 lines near the start time of the test:
    2010-05-12 05:30:18,606 INFO [URL:t3://..........au:8088;Requestor Username: oats;Requestor Key:f6272e33-9428-425b-b52d-c0363f863e43;Requestor Queue:queue/AgentPoolNotificationQueue;Request ID:36;Request:startagent;] - authentication successful
    2010-05-12 05:31:09,513 INFO [URL:t3://..........au:8088;Requestor Username: oats;Requestor Key:f6272e33-9428-425b-b52d-c0363f863e43;Requestor Queue:queue/AgentPoolNotificationQueue;Request ID:42;Request:stopagent;] - authentication successful
    Why was there a 'stopagent'?
    The log from a successful agent show lines after the "Connected to server...." line ( "startAgent( pathTo.....a.. Launching agent.... Launched process 8792944 for agaent agId.....") so something appears to have not happened on the failed agents.
    When starting a test immediately (rather than scheduling it as I want to for off-peak times) and the agents time out, I can stop it & restart test. Usually then they all start successfully.
    Does anyone have any suggestions on failure reasons & possible solutions?
    If there's nothing else that I might have missed, I'd like to trying increasing the time-out to say 120 or 500 seconds.
    How can I do this?
    Is there a way to get the agents to try starting again, or add a new vUser/script instance one the test is running?
    Many thanks,
    Neil
    Edited by: Neil S on May 12, 2010 9:16 AM

    Hi Ramesh,
                          I guess you need to increase the parameter "icm/keep_alive_timeout" value, it's default value is 60. please gothrough the link
    http://help.sap.com/saphelp_webas630/helpdata/en/0b/1c7e7abbc311d5993a00508b6b8b11/content.htm
    To increase this go to RZ10 and add this parameter in Instance profile and modify the value then restart the server to make  the changes effective.
    Regards,
    Hari
    PS: Point's are welcome

Maybe you are looking for

  • Issue with PO release (multi level approval)

    Hi, Need help regarding PO release. I am working with 4 level  approval process. Information: it is sequential release as I can see in workflow log, a new workflow gets generated for next level only after previous level executes the workitem. Facing

  • Generating PDF from a C program. How do I get dimensions of rendered text?

    Hello. I am generating a PDF file from withing a C program I am developing and I am running into trouble measuring the dimensions of arbitrary text string when rendered on the page. Even if I had widths of individual glyphs in the font I am using, I

  • Problem with Realplayer Convertor

    i am having problems with the realplayer convertor running to os x 10.7.2 The program is not allowing me to select a file for covertion. even the browse button does not work. i have tied uninstalling and re installing the product after manualy deleti

  • Howto set Column name from InstanceProperty?

    I need to use one of InstanceProperties as some of ColumnDescriptor name. I try: <ColumnDescriptor NAME="%instanceproperty_1%" TYPE="NUMBER" > and <ColumnDescriptor NAME="name_1" TYPE="NUMBER"> <Display> <Label NLSID="name_1">%instanceproperty_1%</La

  • How to check the Oracle database version

    Hi, How can i check, what type of database am using and which version? Can anyone help me to know?