I want to receive HEX data by VISA. What am I supposed to do??

<Pic. 1>
<Pic.1> is HEX Data received by CodeVisionAVR.
Actually, The Data is from AHRS. ( I'm making some kind of Ground Control System, so I need Euler angle data.)
But, in LabView
ASCII DATA is received in LabView.
I've been trying to find a way to solve this, but I couldn't.
Is there any way to receive the HEX Data right after the VISA is connected??
help!!

Thank u .Me too Searching for the same.

Similar Messages

  • Regarding email notifications, I want to receive "Submitted Data" and Formatted Text... Is this possible?

    It seems as though I cannot receive formatted text, which is crucial to my form submissions making sense.

    Thank you so much, Ram!  I REALLY APPRECIATE YOUR HELP!
    I am wondering if it possible to manually create a node in RSA6 for the InfoSet.  I tried it by doing the following:
    I went to RSA6 and clicked on the white icon for "Create Node".  I then entered the number "8", followed  by the name of the InfoSet.  (I entered an "8", because all our DataSources seem to start with an "8".  I'm not sure why.) 
    The DataSource now shows up, but when I double-click on it, nothing happens.  When I select it in the hierarchy and then click the icons for "Display" or "Change" or "Check", I just get an error message that says, "You have not selected any DataSources."
    Also, do you know where I can get my hands on the white paper? 
    Thanks again!
    Regards,
    Sarah-Jane

  • HT1212 forgot my passcode and my iPhone disabled, I have no Backup, I do not want to lose my data. Please, What to do ??

    I have forgotten my passcode of my iPhone5s, never sync or bucked up my iPhone, please help me to unlock my iPhone Passcode back, I have more than 1300 Contact number, and more than 2800 photo.
    I tried to get the help throughout your support web pages but all will help but I will lose the data; it will format my iPhone.
    I can provide any details of my mobile Serial Number and the (IMEI - UDID - ECID) number, and my Apple ID.
    Please, I need your help for this issue it is very important to me to get back my data, i will pay any charges.
    hope to hear good news soon from you.
    George

    it is incomprehensible to me why, if you had important data on your phone, you never backed it up using any of the dozen or so means of backup and sync that Apple offers. We are 4 decades into the personal computer revolution, and I would have thought that there wasn't anyone left who did not understand that backups are an essential part of the responsibility of using a computing device.

  • How i can receive & send data through port? urgent

    port=9999
    data receive in 4 column
    name, price, high, low
    i want to receive this data & display this data in from & automatic refresh
    do u have any idea ?
    plz urgent reply

    IDS (Internet Developer Suite) is a RAD tool to create database application however that totally depend upon your requirement but if u feels limitation while working on Form IDS , u can switch to Jdeveloper an open source environment but still u have option create bean in Jdeveloper as per your need and bundled it with your Forms.
    I still suggest to discuss the problems which you are facing while invoking the bean in your form so that we can guide u better.
    Finally, neither move to latest version or change your development platform just for seek of fashion
    Hope it clears now!

  • Receiving RTP data

    I want to receive RTP data and access it directly. Is there a way to somehow store the incoming data stream into a byte array or something like that?
    I have been looking at the AVReceive3.java code, and it automatically sends the datasource to the player. I need to read the data in and pass it to another program. Thanks for any help!

    I don't know if your diagnosis is correct, for shure I have a lot of jitter between two PC using the same java app and playing a RTP broadcast audio.
    But I could not relate it with the speed of the computer, sometimes A plays before B, sometimes after. Problably it is the time to create objects that varies.
    Still looking for a solution....

  • When I send an email notification that the form has been sent I want the receiver to get a copy of the actual filled out form not a ling to the data, how can I make this happen?

    When I send an email notification that the form has been sent I want the receiver to get a copy of the actual filled out form not a ling to the data, how can I make this happen?

    Hi,
    you can find documentation for Designer under this website
    http://help.adobe.com/en_US/livecycle/10.0/documentation.html#task=4,5&module=2
    In Designer you can use the JavaScript API of Acrobat.
    So the Devnet for Acrobat is also a good source.
    http://www.adobe.com/devnet/acrobat.html
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf

  • I am heading to Mexico for a quick business trip, I only want to receive texts and make a call or two. What do I need to turn off to avoid ANY additional charges? Cellular Data/Data Roaming/MMS/visual voicemail? And should I turn wifi on and leave it on?

    I am heading to Mexico for a quick business trip, I only want to receive texts and make a call or two. What do I need to turn off to avoid ANY additional charges? Cellular Data/Data Roaming/MMS/visual voicemail? And should I turn wifi on and leave it on?
    I have a new Iphone 5s.

    wifi is not something you can be charged for

  • I2C with ARM embedded receiving incorrect data

    Hi together
    For a schools project, which I must finish until next week, I need to read out a DS1307 RealTimeClock via I2C.
    I am using a LM3S8962.
    I have tried to communicate via the NI USB-8451 module, which worked just fine.
    Now I only need to read out the Data from the DS1307 and I used the ARM embedded I2C VIs. I receive some data, but the Data is not correct (for example it shows a value of 70 in the seconds-register which is not possible).
    I've tried a lot of things but I couldn't get it to work properly.
    Attached a screenshot of how I implemented the reading of I2C. What am I doing wrong? I have really to get this working otherwise I can't finish my project and this would unfortunately result in a bad mark I hope someone can help me.
    Regards from Switzerland
    Dominic
    Solved!
    Go to Solution.
    Attachments:
    i2c_problem.JPG ‏46 KB

    Hi doh,
    are you sure you are reading from the right register? 
    According to this datasheet: DS1307.pdf , 
    if you want to access the seconds register it would be Adress 0 (Hex-Value-0), in your screenshot its 68 decimal. You can change the representation of your constant which is connected to the Adress terminal of your Create Configuration Reference VI. Just right click your constant -> visible object -> Radix. After that you can change the representation to x (HEX).
    Additionally when you read the 7 bits which are casted to 8 bit unsigned you have to notice that the 7 bits are encoded as BCD code.
    So consider your example reading the value 70: 70 in binary means: 100110 with the most significant bit on the left side and the least significant bit on the right side. Now when you split the values according to the seconds in the datasheets table:
    | 0 | 1 0 0 | 0 1 1 0  
    Then you will see, that 70 as U8 value has : 0110 = 6 (last 4 bits) and 100 (middle 3 bits) = 4, which means, that your actual value is not 70, but 46.
    So I would guess, you have to convert the U8 value to an Boolean array, split the bits according to the Table mentioned in the manual and then convert them to the proper time.
    Hope this helps, if you have further questions just post.
    With best Regards,
    Lam

  • Need help regarding Simple Data Client and Simple Data Server VIs

    Hi everyone.
    I have a simple objective. I just want to test the 2 example VIs, "Simple Data Client" and "Simple Data Server" between 2 computers. I just want to check whether is this working between the 2 computers.
    What I have done for now is that I changed the "address", from "localhost" in the "Simple Data Client.vi" to the IP address of the computer running the "Simple Data Server". I runned the "Simple Data Server" VI in one of the computers first followed by the "Simple Data Client" in the other computer. Nothing is received and the client just timed out.
    Can anyone please help me troubleshoot and tell me what are the possible problems for this? Are there any wires connections between 2 computers that I am missing or any other configurations I have to make before I can successfully do this?
    Thanks.
    Regards,
    Jonathan

    Hi Lee.P.
    I understand that. I was just feeling frustrated about the project not working. Sincere apologies from me.
    I was wrong about the error number. It is not Error 60. It is Error 59 - The network is down, unreachable, or has been reset.. Yes, I have tried changing the port numbers at the 2 computers when trying to send/receive.
    Could anything else be the problem?
    Regards,
    Jonathan  

  • Post processing the received serial data

    Hello,
    I want to process the data received by comport in labview where the transmitter device sends 22 bytes of data in this format 0x01 0x02 <18 bytes of information data with LSB first> 0x03 0x0D through the comport which should be read using Labview. I want to process the received 22 bytes in labview as below
    1)      Leave the first 2 bytes and last two bytes
    2)      From the left 18bytes each consecutive set of 3 bytes should be reversed (because the transmitter sends the LSB first) and stored in a text file.
    Can anyone suggest me the steps to implement this.
    Thanks.
    Solved!
    Go to Solution.

    PatanGova wrote:
    When first 2bytes are skipped and remaining 18 bytes are divided such that consecuitve 3 bytes are rearranged then it is considering 030D0102(which is rearranged as in spreadsheet2 of the attached image) which should not be.
    It is ignoring the first two bytes.  That's what the String Subset is doing.  You are taking starting on the thrid byte and up to 18 bytes.  If you put your Recieved Data on the output of the VISA Read, you would see that.
    PatanGova wrote:
    But I want to 1)skip the first two bytes(0x01 0x02) and last two bytes(0x03 0x0D).
    2)From the left 18bytes each consecutive set of 3 bytes should be reversed (because the transmitter sends the LSB first)
    Your code is already doing that.
    PatanGova wrote:
    3) arranged 3bytes value should be converted into 2's complement and want to plot the data (2's complement of arranged 3bytes) continuously such that there will 6 continous plots.(each consisting 2's complement of the rearranged 3bytes)
    Now that is a little more difficult.  A three byte Two's Compliment will take a little work.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Resend data unless webmethod receive SOAP data successfully

    Hi All,
    I want to implement a scenario like as follows:
    SAP->Idoc->XI->BPM->SOAP->webmethod
    In above scenario whenever HTTP-SOAP communication fails. I want to re-send data after 5 min using BPM to HTTP-SOAP, unless webmethod receive data successfully.
    Can any one help me in designing above scenario?
    I have very less knowledge of BPM.
    <b>Can I do above scenario without BPM, because BPM having some performance issues???</b>
    Regards

    Hi Umesh,
    One of the way probably-
    Recieve the message(idoc) from the SAP to XI.
    Send the Message Synchrnously to  the SOAP(Webmethod)
    Wait for the positive acknowledgement.. Until you get Positive acknowledgement, you can keep on sending the data from BPM .. But this loop will be kind of infinite..
    Some info-
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/65c42db39b0398e10000000a1553f6/content.htm
    Without BPM,I don't think so, directly
    Hope this helps,
    regards,
    moorthy

  • Play sound in specified duration and desired file when reading data with VISA functions ?

    Hi.
    I read data with VISA read function and then I use functions like multiple for showing data on Chart. every thing is OK.
    now I want play a specified sound (like a 3s song in my desired folder) when signal amplitude cross over from specified value. then after desired time, it will be wait for new cross over from specified value and this procedure repeat again until I stop the program. 
    Data comes from MCU and it doesn't stop when system play sound and when system play sound, incoming data for this part (play sound) will be ignore them until specified expired.
    I use this VI for reading data and mentioned part which is sound part is empty and I don't know what I must done ?
    altougth I use another while loop for sound apart because I want save CPU time.
    Thanks.
    Solved!
    Go to Solution.

    I would recommend making the data type of the notifier a cluster that contains a path and a numeric (double).  The path tells the player which file to play.  The numeric is the duration.
    Now for a slightly complicated, but really neat, way to stop your second loop.  Do not use a second notifier.  Instead, send the normal notification but use Not A Path for the path in the cluster.  Your second loop can do a check for the Not A Path and stop when that is recieved.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Question about reading hex data

    Hello! I am a Labview Novice and having a problem about reading hex data.
    Basically I am having bytes from the serial port like this: "80100E0E0AB4F646F24A00911267087E032080057FFF "
    It is not encoded in ASCII. What I want to do is to convert the hex to an ASCII hex string.
    so that the string would become hex numbers in ASCII.
    I think the following might be a solution, but I have no idea what the subvi is in the solution.
    http://forums.ni.com/t5/LabVIEW/Hex-String-to-Ascii-Hex-String/m-p/886078/highlight/true#M400462
    Thanks in advance and I appreciate your kind help!
    Solved!
    Go to Solution.

    coolmatthew wrote:
    What I want to do is actually this.
    You are using way too much code for all this. All you need is a concatenate strings, replacing your entire loop and such. Same result.
    (see also)
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    HEXTwiddler.png ‏4 KB

  • RS232 De-multiplexing data using Visa Read

    Hello
    I'm trying to do a simple task, but being new to this I'm having problems.
    I transmit data down a RS232 line at 9600 baud. I have two channel of data say x and y where A and B are one byte each.
    I multiplex/alternate them down the line i.e ABABABABABAB.....etc
    At the labview end I want to seperate the data back to seperate channels for plotting on a graph. i.e A with time and B with time.
    There must be a way of toggling some array builder conected to the visa Read VI ie odd for A and even for B and then plotting them in two seperate wave charts.
    Iv'e got a single channel working but A and B are mixed together. (see attachment).
    Any ideas if it can be done.
    Thanks Bill
    Attachments:
    RS232-single.gif ‏15 KB

    RatHunter wrote:
    > Hello
    > &nbsp;
    > I'm trying to do a simple task, but being new to this I'm having problems.
    > &nbsp;
    > I transmit data down a RS232 line at 9600 baud. I have two channel of data say x and y where A and B are one byte each.
    > I multiplex/alternate them down the line i.e ABABABABABAB.....etc
    > &nbsp;
    > At the labview end I want to seperate the data back to seperate channels for plotting on a graph. i.e A with time and B with time.
    > &nbsp;
    > There must be a way of toggling some array builder conected to the visa Read VI ie odd for A and even for B and then plotting them in two seperate wave charts.
    > &nbsp;
    > Iv'e got a single channel working but A and B are mixed together. (see attachment).
    > &nbsp;
    > Any ideas if it can be done.
    > &nbsp;
    > Thanks Bill
    >
    Hi Bill
    I think you were 90% of the way there.
    If all you want to do is see the two waveforms on diffierent plots you
    can right click on your chart and select stacked plots. I think you
    have to increase the size of your ledgend to show two plots.
    If you want the data on two different charts, index your array to two
    different charts. I'm assuming by your picture that you are reading 2
    bytes at a time.
    Using two graphs could be useful if your plots had different time
    scales. But i think the stacked plots makes more sense.
    Good Luck
    Eric

  • How to receive the datas?

    Look:
    the first I create socket sk:
    sk=socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
    and I fill data into Ip Head and Icmp Head,
    then I sendto the packet,but I don't receive
    any datas:
    lenrecv=recvfrom(sk,buf,100,0,(struct sockaddr*)&addr,&rlen);
    my codes run at the function recvfrom,but it
    couldn't return variable lenrecv,and it look like down,
    I want to know why?how to receive the data?
    (I couldn't creat socket like this:
    sk=socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
    I want to know when I creat socket like this
    sk=socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
    How to receive datas?)

    Last edited by joseperezc (2012-08-14 18:58:22)

Maybe you are looking for

  • ITunes 10.5.3.3 installation - disable auto sync

    I have tried everything to disable the AutomaticDeviceSync.  I have created the HKEY_LOCAL_MACHINE\Software\Apple Computer, Inc.\iTunes\Parental Controls\Default\AdminFlags HKEY_CURRENT_USER\Software\Apple Computer, Inc.\iTunes\Parental Controls\User

  • What is the meaning of -1 in usersign field of OFPR table

    Please send information

  • Lock Page View for all pages in a document.

    Can I lock or freeze a Page View (Zoom Level and Pan Location) for a document while scrolling through the pages in a document? In other words: I want to see only a specific region of all the pages, while scrolling through the document. Is there a way

  • Usage meter

    We recently connected with Telstra cable and have never been able to see the usage meter. It has been almost a month and we tried logging in each day.  It is an annoying problem that has been hard for the call center and livechat people to understand

  • Attach jpeg file to email

    How do I attach a photo (jpeg file) to an email as an attachment, so without embedding the photo within the email? Thanks for your help