-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatttool.c
865 lines (732 loc) · 24.7 KB
/
gatttool.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2010 Nokia Corporation
* Copyright (C) 2010 Marcel Holtmann <[email protected]>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* /./home/todd/gatt_four/bluez-5.49/attrib/gatttool -b E5:97:EE:07:27:F2 -t random --char-write-req --handle=0x0025 --value=0100 --listen
* from ~/gatt_four/bluez-5.49 make
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <glib.h>
#include "lib/bluetooth.h"
#include "lib/hci.h"
#include "lib/hci_lib.h"
#include "lib/sdp.h"
#include "lib/uuid.h"
#include "src/shared/util.h"
#include "att.h"
#include "btio/btio.h"
#include "gattrib.h"
#include "gatt.h"
#include "gatttool.h"
#include <stdio.h> //added
#include <string.h> // addded
#include "/home/todd/ANT/gatt_one/bluez-5.18/attrib/trig_functions.h" // added
#include <linux/uinput.h> // added
//#include <fcntl.h> // added
#include <linux/fcntl.h> //correct added
#include <unistd.h> // added
#include <errno.h> // added for error handling
double wheel_circumference =(2096); // mm //added
double miles_per_kilometer= (0.621371); //added
int times_through = 0; // added to capture last wheel event
long int wheel_event_previous; //added to store consecutive wheel events
long int wheel_event_current; //added to store consecutive wheel events
double previous_rotations; //added to store rotations
double current_rotations; //added to store rotations
double distance_traveled; //added to store distance travelled
double current_speed; //added to store curremt speed
double delta_wheel_event; //added to store change in wheel event times
double approximate_speed; //added to store approximate speed
struct speed_parameters { //added to store speed parameters
float speed_gradient; //added to store speed parameters
float speed_delta; //added to store speed parameters
float top_speed; //added to store speed parameters
} spd_parameters; //added to store speed parameters
struct speed_parameters param_one; //added to store speed parameters
FILE *parameter_storage_file; // added to get speed parameters
int joystick_node; //added integer so joystick node can be opened see https://unix.stackexchange.com/questions/241173/how-are-dev-linux-files-created REQUIRES sudo
double speed_should_be; // added
struct input_event ev[2]; // added inpu event structure
//static void setup_abs(int fd, unsigned chan, int min, int max); //added
//FILE *rc; // from https://01.org/linuxgraphics/gfx-docs/drm/input/uinput.html
long int version; //added guess from above
static char *opt_src = NULL;
static char *opt_dst = NULL;
static char *opt_dst_type = NULL;
static char *opt_value = NULL;
static char *opt_sec_level = NULL;
static bt_uuid_t *opt_uuid = NULL;
static int opt_start = 0x0001;
static int opt_end = 0xffff;
static int opt_handle = -1;
static int opt_mtu = 0;
static int opt_psm = 0;
static gboolean opt_primary = FALSE;
static gboolean opt_characteristics = FALSE;
static gboolean opt_char_read = FALSE;
static gboolean opt_listen = FALSE;
static gboolean opt_char_desc = FALSE;
static gboolean opt_char_write = FALSE;
static gboolean opt_char_write_req = FALSE;
static gboolean opt_interactive = FALSE;
static GMainLoop *event_loop;
static gboolean got_error = FALSE;
static GSourceFunc operation;
struct uinput_setup setup_two; // added
struct characteristic_data {
GAttrib *attrib;
uint16_t start;
uint16_t end;
};
static void events_handler(const uint8_t *pdu, uint16_t len, gpointer user_data)
{
GAttrib *attrib = user_data;
uint8_t *opdu;
uint16_t handle, i, olen = 0;
size_t plen;
handle = get_le16(&pdu[1]);
switch (pdu[0]) {
case ATT_OP_HANDLE_NOTIFY:
//g_print("Notification handle = 0x%04x value: ", handle); //commented
break;
case ATT_OP_HANDLE_IND:
g_print("Indication handle = 0x%04x value: ", handle);
break;
default:
g_print("Invalid opcode\n");
return;
}
//for (i = 3; i < len; i++) //removed to display as rotations and last wheel event time
// g_print("%02x ", pdu[i]); //removed
//pdu[8] and pdu[9] form the last event
//pdu[4] pdu[5] are total rotations
// pdu seems to buit of u8's
g_print(" rotations = "); //added for debugging
g_print("%i",pdu[4]+pdu[5]*256); //added for debugging
g_print(" event time = "); //added for debugging
g_print("%i",pdu[8]+pdu[9]*256); //added for debugging
//addition begins here
distance_traveled = (pdu[4]+pdu[5]*256)*wheel_circumference/1000/1000*miles_per_kilometer;
if (times_through <= 0)
{
//g_print("debug!!\n");
previous_rotations = pdu[4]+pdu[5]*256;
wheel_event_previous = pdu[8]+pdu[9]*256;
}
if (times_through>0)
{ current_rotations = pdu[4]+pdu[5]*256;
wheel_event_current = pdu[8]+pdu[9]*256;
/*printf("%c%c%c%c",(char)8,(char)5,(char)5,(char)11); //one 855c
printf("%c%c%c%c",(char)0,(char)1,(char)5,(char)6); //two 0156
printf("%c%c%c%c",(char)5,(char)12,(char)11,(char)0); //three 5db0
printf("%c%c%c%c",(char)0,(char)3,(char)0,(char)2); //four 0302
printf("%c%c%c%c",(char)8,(char)5,(char)6,(char)4); //five 8564
printf("%c%c%c%c",(char)0,(char)1,(char)5,(char)6); //six 0156
printf("%c%c%c%c",(char)7,(char)15,(char)15,(char)15); //seven 7fff
printf("%c%c%c%c ",(char)0,(char)3,(char)0,(char)2); //eight 0302 */
//0000c10
/*fprintf(joystick_node,"%2x%2x%2x",0,0,0);
fprintf(joystick_node," %2x%2x",0,0); //one
fprintf(joystick_node," %2x%2x",0,0); // two
fprintf(joystick_node," %2x%2x",0,0); //three
fprintf(joystick_node," %2x%2x",0,0); // four
fprintf(joystick_node," %2x%2x",0,0); //five
fprintf(joystick_node," %2x%2x",0,0); //six
fprintf(joystick_node," %2x%2x",255,255); //seven
fprintf(joystick_node," %2x%2x\n",0,0); //eight
*/
if (wheel_event_current > wheel_event_previous)
{ delta_wheel_event = wheel_event_current - wheel_event_previous;
}
else
{ delta_wheel_event = 65536+ wheel_event_current - wheel_event_previous;
}
//delta_wheel_event = mod((wheel_event_current - wheel_event_previous),65536);
approximate_speed = (current_rotations-previous_rotations)*wheel_circumference/1000/1000*3600*miles_per_kilometer;
current_speed = approximate_speed* 1024/delta_wheel_event;
//speed_should_be = (-exp_todd(-global_miles /8.61)*9.77+25.0); //another typo fixed
speed_should_be = -exp_todd(-distance_traveled/spd_parameters.speed_gradient)*spd_parameters.speed_delta+spd_parameters.top_speed;
//speed_should_be = -distance_traveled / spd_parameters.speed_gradient*spd_parameters.speed_delta;
//speed_should_be = speed_should_be + spd_parameters.top_speed;
speed_should_be = floor(-current_speed/speed_should_be*65536+32768);
}
times_through = times_through +1;
wheel_event_previous = wheel_event_current;
previous_rotations = current_rotations;
g_print(" dist = ");
g_print("%f",distance_traveled);
g_print(" speed = ");
g_print("%f",current_speed);
g_print(" sent to joystick = ");
g_print("%f",speed_should_be);
if (speed_should_be>32767)
speed_should_be = 32767;
if (speed_should_be < -32767)
speed_should_be - -32767;
previous_rotations= current_rotations;
memset(&ev,0,sizeof ev); //just add 2:39 2019_10_30
ev[0].type = EV_ABS;
ev[0].code = ABS_THROTTLE;
ev[1].type = EV_SYN;
ev[1].code = SYN_REPORT;
ev[1].value = 0;
ev[0].value = floor(speed_should_be); // throttle set the value in the loop! // how do you convert mileage into speed
//if (ev[0].value < -32767) ev[0].value = -32765;
//if (ev[0].value > 32767) ev[0].value = 32765;
if(write(joystick_node, &ev, sizeof ev) < 0)
{
perror("write");
return 1;
}
//addition ends here
g_print("\n");
if (pdu[0] == ATT_OP_HANDLE_NOTIFY)
return;
opdu = g_attrib_get_buffer(attrib, &plen);
olen = enc_confirmation(opdu, plen);
if (olen > 0)
g_attrib_send(attrib, 0, opdu, olen, NULL, NULL, NULL);
}
static gboolean listen_start(gpointer user_data)
{
GAttrib *attrib = user_data;
g_attrib_register(attrib, ATT_OP_HANDLE_NOTIFY, GATTRIB_ALL_HANDLES,
events_handler, attrib, NULL);
g_attrib_register(attrib, ATT_OP_HANDLE_IND, GATTRIB_ALL_HANDLES,
events_handler, attrib, NULL);
return FALSE;
}
static void connect_cb(GIOChannel *io, GError *err, gpointer user_data)
{
GAttrib *attrib;
uint16_t mtu;
uint16_t cid;
GError *gerr = NULL;
if (err) {
g_printerr("%s\n", err->message);
got_error = TRUE;
g_main_loop_quit(event_loop);
}
bt_io_get(io, &gerr, BT_IO_OPT_IMTU, &mtu,
BT_IO_OPT_CID, &cid, BT_IO_OPT_INVALID);
if (gerr) {
g_printerr("Can't detect MTU, using default: %s",
gerr->message);
g_error_free(gerr);
mtu = ATT_DEFAULT_LE_MTU;
}
if (cid == ATT_CID)
mtu = ATT_DEFAULT_LE_MTU;
attrib = g_attrib_new(io, mtu, false);
if (opt_listen)
g_idle_add(listen_start, attrib);
operation(attrib);
}
static void primary_all_cb(uint8_t status, GSList *services, void *user_data)
{
GSList *l;
if (status) {
g_printerr("Discover all primary services failed: %s\n",
att_ecode2str(status));
goto done;
}
for (l = services; l; l = l->next) {
struct gatt_primary *prim = l->data;
g_print("attr handle = 0x%04x, end grp handle = 0x%04x "
"uuid: %s\n", prim->range.start, prim->range.end, prim->uuid);
}
done:
g_main_loop_quit(event_loop);
}
static void primary_by_uuid_cb(uint8_t status, GSList *ranges, void *user_data)
{
GSList *l;
if (status != 0) {
g_printerr("Discover primary services by UUID failed: %s\n",
att_ecode2str(status));
goto done;
}
for (l = ranges; l; l = l->next) {
struct att_range *range = l->data;
g_print("Starting handle: %04x Ending handle: %04x\n",
range->start, range->end);
}
done:
g_main_loop_quit(event_loop);
}
static gboolean primary(gpointer user_data)
{
GAttrib *attrib = user_data;
if (opt_uuid)
gatt_discover_primary(attrib, opt_uuid, primary_by_uuid_cb,
NULL);
else
gatt_discover_primary(attrib, NULL, primary_all_cb, NULL);
return FALSE;
}
static void char_discovered_cb(uint8_t status, GSList *characteristics,
void *user_data)
{
GSList *l;
if (status) {
g_printerr("Discover all characteristics failed: %s\n",
att_ecode2str(status));
goto done;
}
for (l = characteristics; l; l = l->next) {
struct gatt_char *chars = l->data;
g_print("handle = 0x%04x, char properties = 0x%02x, char value "
"handle = 0x%04x, uuid = %s\n", chars->handle,
chars->properties, chars->value_handle, chars->uuid);
}
done:
g_main_loop_quit(event_loop);
}
static gboolean characteristics(gpointer user_data)
{
GAttrib *attrib = user_data;
gatt_discover_char(attrib, opt_start, opt_end, opt_uuid,
char_discovered_cb, NULL);
return FALSE;
}
static void char_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
gpointer user_data)
{
uint8_t value[plen];
ssize_t vlen;
int i;
if (status != 0) {
g_printerr("Characteristic value/descriptor read failed: %s\n",
att_ecode2str(status));
goto done;
}
vlen = dec_read_resp(pdu, plen, value, sizeof(value));
if (vlen < 0) {
g_printerr("Protocol error\n");
goto done;
}
g_print("Characteristic value/descriptor: ");
for (i = 0; i < vlen; i++)
g_print("%02x ", value[i]);
g_print("\n");
done:
if (!opt_listen)
g_main_loop_quit(event_loop);
}
static void char_read_by_uuid_cb(guint8 status, const guint8 *pdu,
guint16 plen, gpointer user_data)
{
struct att_data_list *list;
int i;
if (status != 0) {
g_printerr("Read characteristics by UUID failed: %s\n",
att_ecode2str(status));
goto done;
}
list = dec_read_by_type_resp(pdu, plen);
if (list == NULL)
goto done;
for (i = 0; i < list->num; i++) {
uint8_t *value = list->data[i];
int j;
g_print("handle: 0x%04x \t value: ", get_le16(value));
value += 2;
for (j = 0; j < list->len - 2; j++, value++)
g_print("%02x ", *value);
g_print("\n");
}
att_data_list_free(list);
done:
g_main_loop_quit(event_loop);
}
static gboolean characteristics_read(gpointer user_data)
{
GAttrib *attrib = user_data;
if (opt_uuid != NULL) {
gatt_read_char_by_uuid(attrib, opt_start, opt_end, opt_uuid,
char_read_by_uuid_cb, NULL);
return FALSE;
}
if (opt_handle <= 0) {
g_printerr("A valid handle is required\n");
g_main_loop_quit(event_loop);
return FALSE;
}
gatt_read_char(attrib, opt_handle, char_read_cb, attrib);
return FALSE;
}
static void mainloop_quit(gpointer user_data)
{
uint8_t *value = user_data;
g_free(value);
g_main_loop_quit(event_loop);
}
static gboolean characteristics_write(gpointer user_data)
{
GAttrib *attrib = user_data;
uint8_t *value;
size_t len;
if (opt_handle <= 0) {
g_printerr("A valid handle is required\n");
goto error;
}
if (opt_value == NULL || opt_value[0] == '\0') {
g_printerr("A value is required\n");
goto error;
}
len = gatt_attr_data_from_string(opt_value, &value);
if (len == 0) {
g_printerr("Invalid value\n");
goto error;
}
gatt_write_cmd(attrib, opt_handle, value, len, mainloop_quit, value);
g_free(value);
return FALSE;
error:
g_main_loop_quit(event_loop);
return FALSE;
}
static void char_write_req_cb(guint8 status, const guint8 *pdu, guint16 plen,
gpointer user_data)
{
if (status != 0) {
g_printerr("Characteristic Write Request failed: "
"%s\n", att_ecode2str(status));
goto done;
}
if (!dec_write_resp(pdu, plen) && !dec_exec_write_resp(pdu, plen)) {
g_printerr("Protocol error\n");
goto done;
}
g_print("Characteristic value was wrIItten successfully\n hello world\n");
done:
if (!opt_listen)
g_main_loop_quit(event_loop);
}
static gboolean characteristics_write_req(gpointer user_data)
{
GAttrib *attrib = user_data;
uint8_t *value;
size_t len;
if (opt_handle <= 0) {
g_printerr("A valid handle is required\n");
goto error;
}
if (opt_value == NULL || opt_value[0] == '\0') {
g_printerr("A value is required\n");
goto error;
}
len = gatt_attr_data_from_string(opt_value, &value);
if (len == 0) {
g_printerr("Invalid value\n");
goto error;
}
gatt_write_char(attrib, opt_handle, value, len, char_write_req_cb,
NULL);
g_free(value);
return FALSE;
error:
g_main_loop_quit(event_loop);
return FALSE;
}
static void char_desc_cb(uint8_t status, GSList *descriptors, void *user_data)
{
GSList *l;
if (status) {
g_printerr("Discover descriptors failed: %s\n",
att_ecode2str(status));
return;
}
for (l = descriptors; l; l = l->next) {
struct gatt_desc *desc = l->data;
g_print("handlestatic void setup_abs(int fd, unsigned chan, int min, int max); = 0x%04x, uuid = %s\n", desc->handle,
desc->uuid);
}
if (!opt_listen)
g_main_loop_quit(event_loop);
}
static gboolean characteristics_desc(gpointer user_data)
{
GAttrib *attrib = user_data;
gatt_discover_desc(attrib, opt_start, opt_end, NULL, char_desc_cb,
NULL);
return FALSE;
}
static gboolean parse_uuid(const char *key, const char *value,
gpointer user_data, GError **error)
{
if (!value)
return FALSE;
opt_uuid = g_try_malloc(sizeof(bt_uuid_t));
if (opt_uuid == NULL)
return FALSE;
if (bt_string_to_uuid(opt_uuid, value) < 0)
return FALSE;
return TRUE;
}
static GOptionEntry primary_char_options[] = {
{ "start", 's' , 0, G_OPTION_ARG_INT, &opt_start,
"Starting handle(optional)", "0x0001" },
{ "end", 'e' , 0, G_OPTION_ARG_INT, &opt_end,
"Ending handle(optional)", "0xffff" },
{ "uuid", 'u', G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK,
parse_uuid, "UUID16 or UUID128(optional)", "0x1801"},
{ NULL },
};
static GOptionEntry char_rw_options[] = {
{ "handle", 'a' , 0, G_OPTION_ARG_INT, &opt_handle,
"Read/Write characteristic by handle(required)", "0x0001" },
{ "value", 'n' , 0, G_OPTION_ARG_STRING, &opt_value,
"Write characteristic value (required for write operation)",
"0x0001" },
{NULL},
};
static GOptionEntry gatt_options[] = {
{ "primary", 0, 0, G_OPTION_ARG_NONE, &opt_primary,
"Primary Service Discovery", NULL },
{ "characteristics", 0, 0, G_OPTION_ARG_NONE, &opt_characteristics,
"Characteristics Discovery", NULL },
{ "char-read", 0, 0, G_OPTION_ARG_NONE, &opt_char_read,
"Characteristics Value/Descriptor Read", NULL },
{ "char-write", 0, 0, G_OPTION_ARG_NONE, &opt_char_write,
"Characteristics Value Write Without Response (Write Command)",
NULL },
{ "char-write-req", 0, 0, G_OPTION_ARG_NONE, &opt_char_write_req,
"Characteristics Value Write (Write Request)", NULL },
{ "char-desc", 0, 0, G_OPTION_ARG_NONE, &opt_char_desc,
"Characteristics Descriptor Discovery", NULL },
{ "listen", 0, 0, G_OPTION_ARG_NONE, &opt_listen,
"Listen for notifications and indications", NULL },
{ "interactive", 'I', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE,
&opt_interactive, "Use interactive mode", NULL },
{ NULL },
};
static GOptionEntry options[] = {
{ "adapter", 'i', 0, G_OPTION_ARG_STRING, &opt_src,
"Specify local adapter interface", "hciX" },
{ "device", 'b', 0, G_OPTION_ARG_STRING, &opt_dst,
"Specify remote Bluetooth address", "MAC" },
{ "addr-type", 't', 0, G_OPTION_ARG_STRING, &opt_dst_type,
"Set LE address type. Default: public", "[public | random]"},
{ "mtu", 'm', 0, G_OPTION_ARG_INT, &opt_mtu,
"Specify the MTU size", "MTU" },
{ "psm", 'p', 0, G_OPTION_ARG_INT, &opt_psm,
"Specify the PSM for GATT/ATT over BR/EDR", "PSM" },
{ "sec-level", 'l', 0, G_OPTION_ARG_STRING, &opt_sec_level,
"Set security level. Default: low", "[low | medium | high]"},
{ NULL },
};
static void setup_abs(int fd, unsigned chan, int min, int max) //was int
{
if (ioctl(fd, UI_SET_ABSBIT, chan))
perror("UI_SET_ABSBIT");
struct uinput_abs_setup s =
{
.code = chan,
//.absinfo = { .minimum = min, .maximum = max },
.absinfo = { .minimum = -32726, .maximum = 32767 },
};
if (ioctl(fd, UI_ABS_SETUP, &s))
perror("UI_ABS_SETUP");
} //added setup_abs
int main(int argc, char *argv[])
{ //added start
long int dummy_int;
parameter_storage_file = fopen("/home/todd/gatt_four/bluez-5.49/attrib/speed_parameters.txt","r");
dummy_int = fscanf(parameter_storage_file,"%f\n",&spd_parameters.speed_gradient);
dummy_int = fscanf(parameter_storage_file,"%f\n",&spd_parameters.speed_delta);
dummy_int = fscanf(parameter_storage_file,"%f\n",&spd_parameters.top_speed);
fclose(parameter_storage_file);
printf("speed gradient => %5.3f \n",spd_parameters.speed_gradient);
printf("speed speed delta => %5.3f \n",spd_parameters.speed_delta);
printf("top speed => %5.3f \n",spd_parameters.top_speed);
joystick_node = open("/dev/uinput", O_WRONLY | O_NONBLOCK);
ioctl(joystick_node, UI_SET_EVBIT, EV_ABS); // enable analog absolute position handling
//setup_abs(joystick_node, ABS_THROTTLE, -32767, 32767); //commented out as it cause an operation error
//static void setup_abs(int fd, unsigned chan, int min, int max);
//static void setup_abs(int fd, unsigned chan, int min, int max)
//int error_ioctl = ioctl(joystick_node, UI_SET_ABSBIT, EV_ABS);
//printf("ioctl error == %i\n", error_ioctl); // caused an error w/o sudo
//printf("error number == %i\n",errno); // caused an error w/o sudo
setup_abs(joystick_node,ABS_THROTTLE, -32767,3276);
sprintf(setup_two.name, "Todd Westley joystick");
setup_two.id.bustype = BUS_USB;
setup_two.id.vendor = 0x2;
setup_two.id.product = 0x3;
setup_two.id.version = 2;
if (ioctl(joystick_node, UI_DEV_SETUP, &setup_two))
{
perror("UI_DEV_SETUP");
return 1;
}
if (ioctl(joystick_node, UI_DEV_CREATE))
{
perror("UI_DEV_CREATE");
return 1;
}
memset(&ev,0,sizeof ev);
ev[0].type = EV_ABS;
ev[0].code = ABS_THROTTLE;
ev[0].value = 32767; // maxint so backwards throttle is zero initially
ev[1].type = EV_SYN;
ev[1].code = SYN_REPORT;
ev[1].value = 0;
/* commented out to avoid error
if (ioctl(joystick_node, UI_DEV_SETUP, &setup_two))
{
perror("UI_DEV_SETUP");
return 1;
}
if (ioctl(joystick_node, UI_DEV_CREATE))
{
perror("UI_DEV_CREATE");
return 1;
} */
//joystick_node = fopen("/dev/input/js7","w");
/*
0000f10 2e30 0126 966e 0302 2e38 0126 82a3 0302 throttle fwd
0001030 ebf4 0126 aa3a 0302 ebfc 0126 8001 0302
00010c0 4210 0127 aa3a 0302 4218 0127 9912 0302
0000980 f26c 0127 8be0 0302 f28c 0127 8547 0302
0000d10 1d20 012a 87ea 0302 1d28 012a 8001 0302
0000de0 7bbc 012a 8151 0302 7bc4 012a 8001 0302
0000a00 4b7c 0128 5322 0302 4b84 0128 717c 0302 throttle back
0000aa0 b358 0128 659b 0302 b360 0128 7fff 0302
0000b10 3a24 0129 51d0 0302 3a2c 0129 7815 0302
0000b50 859c 0129 6ed8 0302 85a4 0129 7815 0302
0000eb0 d8ec 012a 7815 0302 d8f4 012a 7fff 0302
*
*
* //fd = open("/dev/input/uinput", O_WRONLY | O_NONBLOCK);
joystick_node = fopen("/dev/uinput", "r+");
dummy_int = fileno(joystick_node);
printf("\n");
ioctl(dummy_int, UI_SET_EVBIT, EV_ABS); */
//joystick_node = fopen("/dev/uinput", "r+");
//ioctl(joystick_node, UI_SET_EVBIT, EV_ABS);
//setup_abs(joystick_node, ABS_THROTTLE, -32767, 32767);
//rc = ioctl(joystick_node, UI_GET_VERSION, &version);
// ioctl(joystick_node,UI_SET_ABSBIT, ??);
/*//ioctl(joystick_node, UI_SET_EVBIT, EV_ABS);
//setup_abs(joystick_node, ABS_THROTTLE, -32767, 32767);
sprintf(setup_two.name, "Userspace joystick");
setup_two.id.bustype = BUS_USB;
setup_two.id.vendor = 0x2;
setup_two.id.product = 0x3;
setup_two.id.version = 2;
//if (ioctl(joystick_node, UI_DEV_SETUP, &setup_two))
//{
// perror("UI_DEV_SETUP");
// return 1;
//}
//if (ioctl(joystick_node, UI_DEV_CREATE))
//{
// perror("UI_DEV_CREATE");
// return 1;
//} */
//added stop.
GOptionContext *context;
GOptionGroup *gatt_group, *params_group, *char_rw_group;
GError *gerr = NULL;
GIOChannel *chan;
opt_dst_type = g_strdup("public");
opt_sec_level = g_strdup("low");
context = g_option_context_new(NULL);
g_option_context_add_main_entries(context, options, NULL);
/* GATT commands */
gatt_group = g_option_group_new("gatt", "GATT commands",
"Show all GATT commands", NULL, NULL);
g_option_context_add_group(context, gatt_group);
g_option_group_add_entries(gatt_group, gatt_options);
/* Primary Services and Characteristics arguments */
params_group = g_option_group_new("params",
"Primary Services/Characteristics arguments",
"Show all Primary Services/Characteristics arguments",
NULL, NULL);
g_option_context_add_group(context, params_group);
g_option_group_add_entries(params_group, primary_char_options);
/* Characteristics value/descriptor read/write arguments */
char_rw_group = g_option_group_new("char-read-write",
"Characteristics Value/Descriptor Read/Write arguments",
"Show all Characteristics Value/Descriptor Read/Write "
"arguments",
NULL, NULL);
g_option_context_add_group(context, char_rw_group);
g_option_group_add_entries(char_rw_group, char_rw_options);
if (!g_option_context_parse(context, &argc, &argv, &gerr)) {
g_printerr("%s\n", gerr->message);
g_clear_error(&gerr);
}
if (opt_interactive) {
interactive(opt_src, opt_dst, opt_dst_type, opt_psm);
goto done;
}
if (opt_primary)
operation = primary;
else if (opt_characteristics)
operation = characteristics;
else if (opt_char_read)
operation = characteristics_read;
else if (opt_char_write)
operation = characteristics_write;
else if (opt_char_write_req)
operation = characteristics_write_req;
else if (opt_char_desc)
operation = characteristics_desc;
else {
char *help = g_option_context_get_help(context, TRUE, NULL);
g_print("%s\n", help);
g_free(help);
got_error = TRUE;
goto done;
}
if (opt_dst == NULL) {
g_print("Remote Bluetooth address required\n");
got_error = TRUE;
goto done;
}
chan = gatt_connect(opt_src, opt_dst, opt_dst_type, opt_sec_level,
opt_psm, opt_mtu, connect_cb, &gerr);
if (chan == NULL) {
g_printerr("%s\n", gerr->message);
g_clear_error(&gerr);
got_error = TRUE;
goto done;
}
event_loop = g_main_loop_new(NULL, FALSE);
g_main_loop_run(event_loop);
g_main_loop_unref(event_loop);
done:
g_option_context_free(context);
g_free(opt_src);
g_free(opt_dst);
g_free(opt_uuid);
g_free(opt_sec_level);
if (got_error)
exit(EXIT_FAILURE);
else
exit(EXIT_SUCCESS);
}