From: Marc Kleine-Budde <mkl@pengutronix.de>
To: Leo Stan <leo.stanislas@qut.edu.au>, linux-can@vger.kernel.org
Subject: Re: kvaser leaf and SocketCAN
Date: Thu, 30 Apr 2015 08:48:55 +0200 [thread overview]
Message-ID: <5541D057.2020003@pengutronix.de> (raw)
In-Reply-To: <loom.20150430T080326-120@post.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 2346 bytes --]
On 04/30/2015 08:14 AM, Leo Stan wrote:
>
> Actually I spoke too soon...
>
> When I try this simple code from the documentation :
>
>
> #include <stdio.h>
> #include <stdlib.h>
> #include <unistd.h>
> #include <string.h>
>
> #include <net/if.h>
> #include <sys/types.h>
> #include <sys/socket.h>
> #include <sys/ioctl.h>
>
> #include <linux/can.h>
> #include <linux/can/raw.h>
>
> int main(void)
> {
> int s;
> int nbytes;
> struct sockaddr_can addr;
> struct can_frame frame;
> struct ifreq ifr;
>
> char *ifname = "can0";
>
> if((s = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) {
> perror("Error while opening socket");
> return -1;
> }
>
> strcpy(ifr.ifr_name, ifname);
> ioctl(s, SIOCGIFINDEX, &ifr);
>
> addr.can_family = AF_CAN;
> addr.can_ifindex = ifr.ifr_ifindex;
>
> printf("%s at index %d\n", ifname, ifr.ifr_ifindex);
>
> if(bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
> perror("Error in socket bind");
> return -2;
> }
>
> // Reading the CAN port
>
>
> nbytes=read(s,&frame,sizeof(struct can_frame));
>
> if (nbytes < 0) {
> perror("can raw socket read");
> return 1;
> }
>
> /* paranoid check ... */
> if (nbytes < sizeof(struct can_frame)) {
> fprintf(stderr, "read: incomplete CAN frame\n");
> return 1;
> }
>
> printf("dlc = %d, data = %s, %d bytes read\n",
> frame.can_dlc,frame.data,nbytes);
>
> close(s);
>
> return 0;
> }
>
> I get this flag :
>
> can0 at index 3
> can raw socket read: Network is down
^^^^^^^^^^^^^^^
You have to configure your CAN network device first, then bring it into
an operational state, this means the network is "up".
ip link set can0 type can bitrate 500000
ip link set can0 up
See section "6.5.1 Netlink interface to set/get devices properties"
http://lxr.free-electrons.com/source/Documentation/networking/can.txt#L990
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 801 bytes --]
next prev parent reply other threads:[~2015-04-30 6:49 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-22 7:31 kvaser leaf and SocketCAN max
2015-04-22 8:03 ` Marc Kleine-Budde
2015-04-29 2:01 ` Leo Stan
2015-04-29 3:50 ` Austin Schuh
2015-04-29 4:39 ` Leo Stan
2015-04-29 5:20 ` Marc Kleine-Budde
2015-04-29 6:15 ` Leo Stan
2015-04-29 6:33 ` Alexander Stein
2015-04-29 6:34 ` Marc Kleine-Budde
2015-04-29 10:45 ` Ahmed S. Darwish
2015-04-30 3:11 ` Leo Stan
2015-04-30 6:04 ` Marc Kleine-Budde
2015-04-30 6:14 ` Leo Stan
2015-04-30 6:25 ` Leo Stan
2015-04-30 6:48 ` Marc Kleine-Budde [this message]
2015-04-30 7:27 ` Oliver Hartkopp
2015-05-04 1:52 ` Leo Stan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5541D057.2020003@pengutronix.de \
--to=mkl@pengutronix.de \
--cc=leo.stanislas@qut.edu.au \
--cc=linux-can@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.