]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/proxmark3.c
8 #include <readline/readline.h>
9 #include <readline/history.h>
13 #include "proxmark3.h"
16 struct usb_receiver_arg
{
20 struct main_loop_arg
{
24 static void *usb_receiver(void *targ
) {
25 struct usb_receiver_arg
*arg
= (struct usb_receiver_arg
*)targ
;
29 if (ReceiveCommandPoll(&cmdbuf
)) {
32 for (i
=0; i
<strlen(PROXPROMPT
); i
++)
35 UsbCommandReceived(&cmdbuf
);
44 static void *main_loop(void *targ
)
46 struct main_loop_arg
*arg
= (struct main_loop_arg
*)targ
;
47 struct usb_receiver_arg rarg
;
49 pthread_t reader_thread
;
51 if (arg
->usb_present
== 1) {
53 pthread_create(&reader_thread
, NULL
, &usb_receiver
, &rarg
);
58 cmd
= readline(PROXPROMPT
);
71 if (arg
->usb_present
== 1) {
73 pthread_join(reader_thread
, NULL
);
80 int main(int argc
, char **argv
)
82 struct main_loop_arg marg
;
83 pthread_t main_loop_t
;
86 if (!(devh
= OpenProxmark(1))) {
87 fprintf(stderr
,"PROXMARK3: NOT FOUND!\n");
95 pthread_create(&main_loop_t
, NULL
, &main_loop
, &marg
);
96 InitGraphics(argc
, argv
);
100 pthread_join(main_loop_t
, NULL
);
102 if (marg
.usb_present
== 1) {