No response from slave using 8476

Hello, I'm looking to do a LIN communication using the USB-8476 module. I use examples in VB .NET (header frame LIN Master Send and Receive) I get repeatable the error response 84 0 1 6 0 0 A, from the manual NOR I know this error means "FLAX not bus error no response" using an another factory module of LINEN that I receive the appropriate response. I put my baud rate to 9600 in MAX as well as in the application using the ncSetAttributes function. I don't know what I'm on.

Thanks JWilson

Dear JWilson

Would you please take a screenshot of your mistake please and post?

In addition, as a une source source for additional information, please see discussion forum in the following address.

http://forums.NI.com/NI/board/message?board.ID=30&thread.ID=3614&view=by_date_ascending&page=1

Kind regards

Sammy Z

Tags: NI Products

Similar Questions

  • blocks of Lightroom after the use of crops funktion. Export still works, but after you have selected the following image, lightroom must be inexplicable manually (no response from the program). environment: windows 7 adobe cc 2015

    blocks of ightroom after the use of crops funktion. Export still works, but after you have selected the following image, lightroom must be inexplicable manually (no response from the program). environment: windows 7 adobe cc 2015

    Turning off graphics acceleration. Go to preferences-> Performance tab and uncheck the box there.

  • Cannot connect iPhone 7 more to iTunes because an invalid response from the device

    I tried to sync my phone to iTunes and I get an error message stating "invalid response from the device. I tried to remove the password, and it still doesn't work. I also tried using a new USB cord. I'm doing something wrong? I can't sync my music or ringtones. Will there be an update to iOS 10 soon to solve this problem? I am extremely disappointed that I can not connect my new phone!

    You use iTunes version 12.5?

    Get the latest version of iTunes - Apple Support

  • NB200-h-13 - no response from the DNS server and gateway

    Hello

    I have netbook NB200-h-13 with XP SP3. Its impossible to connect to wireless internet and the error messages are
    HE DIDN'T THERE WAS NO RESPONSE FROM THE DNS SERVER
    HE DIDN'T THERE WAS NO RESPONSE FROM THE DEFAULT GATEWAY

    The connection with the ethernet cable is ok with the adpter reltek that also adpter atheros ar9285 WiFi is activation, working properly and the modem router signal is strong.

    Hi abk55,

    What program you receive this error message?
    Have you tried another browser, for example Firefox or Opera?

    I guess it has something to do with your wireless network card or WLAN parameters if the LAN cable is working properly. So you should try to update the WLAN driver on the Toshiba site.
    Also, try to disable the filtering of MAC addresses and use another encryption.

  • No response from the keyboard on Equium M40X

    Hi all

    Posted before on this problem, just mounted a new keyboard, but getting no response from it, the luminous numbers lock is on, but nothing works, it is a new keyboard, my old one was doing the same thing, reinstalled the system using a usb keyboard but still the same, no response from the keyboard, any ideas?

    Hello

    Connect the flat keyboard cable properly to the motherboard?
    Make sure that the keyboard cable is firmly connected to the system board.
    If the internal keyboard has been correctly connected, so I think there must be something wrong on the motherboard.

    I think detailed diagnosis can be done by a technician with experience much more as a common user like you and me.

  • Mailbox unavailable. The response from the server is: 5.7.1 error: content rejected

    I have an application that sends emails when running. Off late a user when he tries to send a mail it receives the following error message...

    "System.Net.Mail.SmtpException: unavailable mailbox." "The response from the server is: 5.7.1 error: content rejected '...

    Note that this happens when he tries to send mail to itself and not otherwise. Can someone here on which could mean the error? Thanks in advance... :))

    Error code is generated in the back-end.

    'System.Net.Mail.

    to System.Net.Mail.

    to System.Net.Mail.

    to System.Net.Mail.

    to System.Net.ClosableStream.

    to System.Net.Mail.MailWriter.

    to System.Net.Mail.SmtpClient.

    Hi guys,.

    Thanks for the reply!

    I contacted my sources by taking care of the servers and realized that the user was an id in which the address of the server was not set up with our servers in domain. He used to connect to our servers using the VPN client. This is why he could not send mails to id field not (in this case itself).

  • Receiving the message "Wireless association failed because Windows did not receive response from the access point or wireless router" _

    My laptop was working fine yesterday, but when I started it today I get the message "Wireless association failed because Windows did not receive response from the access point or wireless router.

    I can see my network and I can connect to the internet using my desktop pc, but just to make complicated I can't even connect to the network when I plug the ethernet cable into my laptop.

    I think it might be a driver problem, but I have no idea how to solve this problem without access to the internet on my laptop.

    I'm running Vista and my wireless router is an Atheros AR5009 809.11a/g/n

    I need step by step instructions on this Yes please treat me like a fool!

    Thank you

    Laptop would not work at home thus concluded that it was a BT Broadband do not issue my driver (despite BT telling me the opposite last night)

    After the call to a fantastic Lady in BT it's all fixed and thanks to Jack I now know a lot more on connecting wireless to my laptop!

  • How do I suspend the application to wait for response from BluetoothSerialPort

    I worked on that for too many days without much progress, so hopefully for more help.  For this application, I started with one of the examples BluetoothSerialPort programs.  I've added a couple more screens so that I can display different information and send data via bluetooth connection. I built a Board that has a bluetooth module and a microproccessor to talk to a car via a network BOX.  I am able to send to and receive messages from the network at this point.  Currently, I try to get a RealTimeData screen to send messages CAN and then analyze the messages returned from the CAN. I'm sure there are much better ways to do this, but I'm new on this.

    Current issue: get the program to pause in order to wait for a response from the from the network.

    public void updateData(){
            String _dataString;
        if(_port != null){
        _data.delete(0, _data.length());
        sendCANMessage("7DF","8",false,"02","01","05","00","00","00","00","00");
    
        //pause(2000);
        Dialog.alert("before _data.toString()");
    
        _dataString = _data.toString();
        int indexOfRx = _dataString.indexOf("RX ");
        coolentTemp =
                   Integer.parseInt(_dataString.substring(indexOfRx+43,indexOfRx+45),16);
        coolentTemp = (((coolentTemp-40)*9)/5)+32;//subtract 40 then convert to F.
    
        efCoolentTemp.setText(coolentTemp + " F");
    }
    
    public void pause(int ms) {
            try {
            Thread.sleep(ms);
            } catch (InterruptedException ie){
                //do something
            }
        }
    

    The break (2000) (which is commented out in the code example above) does not work.  So far I was able to make it work by the Dialog.alert in there, because it seems to stop the function so that the data can be returned.  The break is so long because I manually hit the Send button while I test.  If I use the alert dialog boxes I can get to work analysis.  When I use the pause() function, it seems to stop running, but in the wrong place.  He pauses before the sendCANMessage function.

    Any ideas?  Examples of code would be very useful.  I use Eclipse w / plugin. I'd be happy to send the exported project if anyone is willing to look at.

    Hi and welcome to the forums.

    How do you run that?  You should not run the activity like this on the thread of events, but I suspect that since you can issue a Dialog.alert, you actually do.

    Also, since we do not know what sendCANMessage (.) did, it's a little difficult, of course what happens.  But I would certainly start by ensuring that you are not running on the thread of events.

  • No Ping response from Site to Site connection between 876 of Cisco and CheckPoint Firewall

    Hello!

    We try to create a Site-to-Site - connection IPSec between a Cisco 876 (local site) and a control-firewall station (remote site). Cisco 876 is not directly connected to the internet, but it is behind a router ADSL with port-forwarding, redirection of ports 500 and 4500. The configuration of the Cisco 876 running is attached to this thread. Unfortunately, I get no results when debugging the connection with the command "debug crypto isakmp" and "debug crypto ipsec".

    From the point of view of Checkpoint firewall the connection seems to be implemented, but there is no response from ping.

    The server in the local site to be achieved since the network behind the firewall Checkpoint has a routing entry "PEI route add [inside the ip-net Remote] 255.255.255.0 [inside the premises of intellectual property]" (see also annex current config name ip addresses).

    Establishing a VPN Cisco Client connection to the same router Cisco 876 works very well.

    Any help would be much appreciated!

    Jakob J. Blaette

    Hi Jakob,

    Add my two cents here.

    You should always verify that the following ports and Protocol are open:

    1 - UDP port 500--> ISAKMP

    2 - UDP port 4500--> NAT - T

    3-protocol 50---> ESP

    A LAN-to-LAN tunnel will never establish a TCP session, but it could use NAT - T (if behind a NAT). Remember that a single translation isn't a port forwarding, a LAN-to-LAN tunnel is not good unless you have a one-to-one translation of the NATted device, which I think, in your case the router is working.

    HTH.

    Portu.

    Please note all useful messages and mark this message as a response.

  • no response from the keyboard

    I have a Compac Presario SR2038X top pc office and plugged into my plasma 50 '' tv via a hdmi cable to use graphics sapphire Radeon 4550 HD on tv. Everything started, but when he asked my password to connect I have no response from my key board. My wireless mouse seems to work very well and the resolution is good too. It all started as it has always done but unable to enter my password. If anyone can help...

    Wall-e, I suggest to reinstall software or a driver for the keyboard. Sometimes a small problem will occur without known reason.

  • I was told I would be contacted by e-mail for support with my problem: still no response from June 4, 2015 Rushi Khan on Adobe chat 09:35:34 please keep this number of cases: 0215754765 for your reference.

    June 4, 2015 Rushi Khan on Adobe chat 09:35:34

    Please keep this number of cases: 0215754765 for your reference.


    He said that we would continue by e-mail, but the response from Noah

    Check your MyAccount at Adobe account to see what is recorded for you. You can use Belarc or such to check the number on your old system. Which must match what is in my account. Download it from http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html and install it. Please save the download for future use.

  • Why I don't get a response from the Dept. serial number already contacted them twice with ZERO response. I have included my product code and proof of my job as requested but nowt back! ??

    Why I don't get a response from the Dept. serial number already contacted them twice with ZERO response. I have included my product code and proof of my job as requested but nowt is back!

    Kingussie81 that I saw the account that you used to post on this public forum and your Creative Suite 5.5 Design Premium education serial number is registered under your account at http://www.adobe.com/.  For more information on how to locate your serial number registered please see quickly find your serial number.

    If you need to download a new copy installation files, they are available to Download CS5.5 products.

  • Is API available in Acrobat for extracting text from images using c#

    Is API available in Acrobat for extracting text from images using c#

    Thank you for your response. Acrobat is not appropriate for this task, because it is technically suitable or licensed for the server.

    Adobe have a PDF library which allows extraction of text for C/C++, but it does not OCR. There are OCR of the LiveCycle PDF Generator Server product, but I don't think that does OCR on a PDF file.

    Sorry not to have better news.

  • Cannot publish - no response from the server

    Can I publish is no longer one of my Web sites. I get the message "no response from Server" for each of them. I waited a few hours, same result. I uninstalled and reinstalled Muse - still nothing.

    In its current wording, all my sites are now unnecessary toally - and I have some major updates to make.

    Everything was fine until that I've updated the product, now its totally redundant. This "useful" someday

    What can you do to correct the killer Adobe update?

    You are using IE or IE are the browser by default or not, you must do the following:

    (1) in Internet Explorer go to tools > Internet Options > advanced

    (2) scroll down the "settings."

    (3) find the boot options "use SSL... ' and 'use TLS... ". »

    Put 4) the option "Use SSL 3.0" (and any higher version number, if you have one).

    (5) turn on all the options "use TLS... "(versions 1.0, 1.1, etc..)

    6) click OK to the dialog box.

    Now stop Muse, if it is running. Launch, open your file and publish them.

  • How do I load the response from the Web service data into flashbuilder

    Hi all,

    I got a response from webservice sent by server, now I need to load and parse as xml, how to move forward on the issue after getting the answer please try to solve my problem.

    Thanks & rRegards

    Flashbuilder has 4.6 of this feature of the very good user interface you want to use (not sure another old version).

    and it's almost not requre no programming steps for you to get a XML as an object of value from a webservice.

    Click the menu data, you can learn it by yourself quickly.

Maybe you are looking for