-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrotation_angle.c
67 lines (52 loc) · 1.47 KB
/
rotation_angle.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <string.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <linux/can.h>
#include <linux/can/raw.h>
int main(int argc, char **argv)
{
printf("CAN Sockets Demo\r\n");
int s;
if ((s = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) {
perror("Socket");
return 1;
}
struct ifreq ifr;
strcpy(ifr.ifr_name, "slcan0");
ioctl(s, SIOCGIFINDEX, &ifr);
struct sockaddr_can addr;
memset(&addr, 0, sizeof(addr));
addr.can_family = AF_CAN;
addr.can_ifindex = ifr.ifr_ifindex;
if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
perror("Bind");
return 1;
}
struct can_frame command;
command.can_id = 0x141;
command.can_dlc = 8;
unsigned char cmd[] = {0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
memcpy(&command.data, &cmd, command.can_dlc);
struct can_frame rcv;
while(1){
if (write(s, &command, sizeof(struct can_frame)) != sizeof(struct can_frame)) {
perror("Error in sending the command");
return 1;
}
while (read (s, (void *)&rcv, sizeof(rcv)) < 0) {}
unsigned int rotation = 0;
rotation += (rcv.data[7] << 8) + rcv.data[6];
printf("Current rotation is: %u\n", rotation);
printf("Bytes are: %02X %02X \n", rcv.data[6], rcv.data[7]);
}
if (close(s) < 0) {
perror("Close");
return 1;
}
return 0;
}