Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to set the bit-rate in i.Mx6 processor in android. I am using iproute2 utility to set bitrate for CAN controller. The command used to set the bitrate is given below:

#ip link set can0 type can bitrate 125000

While I am trying to set the bitrate in android using below command, I am getting error message.

The error message is given below:

Garbage instead of arguments \"bitrate ...\". " "Try \"ip link help\""

I analysed and debugged inside the source code of this utility and compared with the Linux utility source. I found that the error was occurred in the system call dlsym().

   l = dlsym(dlh, buf);
    if (l == NULL)
            return NULL;

This function suppose to return some valid address. But in my case, its returning the NULL.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.