summaryrefslogtreecommitdiff
path: root/tests/test2/test2.c
blob: 3b20afdfec6eea7ad99842419e921e9bca96a5f9 (plain)
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
#include <ftdi.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

// FTDI Vendor ID
#define VID 0x0403
// FTDI Product ID
#define PID 0x6001

#define DMX_CHANNELS 512
// One "official" DMX frame can take (1s/44Hz) = 22727272ns
#define DMX_FRAMETIME 22727272
#define DMX_BREAK 110000
#define DMX_MAB 16000

#define MAX_STR 64

inline void ts_diffadd(struct timespec *res, struct timespec *a, struct timespec *b, struct timespec *c) {
        time_t rem;

        res->tv_nsec=a->tv_nsec-b->tv_nsec+c->tv_nsec;
        rem=res->tv_nsec/1000000000;
        res->tv_nsec=res->tv_nsec%1000000000;
        res->tv_sec=a->tv_sec-b->tv_sec+c->tv_sec+rem;

        if (res->tv_nsec<0 && res->tv_sec>0) res->tv_sec--; res->tv_nsec+=1000000000;
        if (res->tv_nsec>0 && res->tv_sec<0) res->tv_nsec-=1000000000; res->tv_sec++;
}

void e(int res, const char *funcname, struct ftdi_context *ftdi, int exit_val) {
	char *reason;

	if ( res < 0 ) {
		reason=ftdi_get_error_string(ftdi);
		fprintf(stderr, "Error in %s : %s\n", funcname, reason);
		exit(exit_val);
	}

}

/*
struct ftdi_device_list
{
    // pointer to next entry
    struct ftdi_device_list *next;
    // pointer to libusb's usb_device
    struct usb_device *dev;
}
*/

int main() {
	int res;

	char *manufacturer, *description, *serial;
	char universe[DMX_CHANNELS+1];

	struct ftdi_context ftdi;
	struct ftdi_device_list *devlist=NULL;
	struct usb_device *dev=NULL;

	struct timespec ts_frame_time, ts_dmx_break, ts_dmx_mab, ts_to_sleep, ts_trame_begin, ts_now;

	ts_frame_time.tv_sec=0;
	ts_frame_time.tv_nsec=DMX_FRAMETIME;
	ts_dmx_break.tv_sec=0;
	ts_dmx_break.tv_nsec=DMX_BREAK;
	ts_dmx_mab.tv_sec=0;
	ts_dmx_mab.tv_nsec=DMX_MAB;
	
	(void) memset(universe, 0, DMX_CHANNELS);
	(void) memset(&ftdi, 0, sizeof(ftdi));
	universe[DMX_CHANNELS]=0;

	manufacturer=malloc(MAX_STR);
	description=malloc(MAX_STR);
	serial=malloc(MAX_STR);

	e(ftdi_init(&ftdi),"ftdi_init",&ftdi,10);
	e(ftdi_usb_find_all(&ftdi, &devlist, VID, PID),"ftdi_usb_find_all",&ftdi,11);

	//Always take the first device
	if (devlist==NULL || devlist->dev==NULL) {
		fprintf(stderr, "No usb device detected (looking for 0x%04X:0x%04X)\n", VID, PID);
		exit(2);
	}
	dev=devlist->dev;

//	fprintf(stderr, "DEBUG : next==%p\n", devlist->next);
	
	e(ftdi_usb_get_strings(&ftdi, dev, manufacturer, MAX_STR, description, MAX_STR, serial, MAX_STR),"ftdi_usb_get_strings",&ftdi,12);
	fprintf(stderr, "Connecting to USB device ('%s','%s','%s')\n", manufacturer, description, serial);
	e(ftdi_usb_open_dev(&ftdi,dev),"ftdi_usb_open_dev",&ftdi,13);
	fprintf(stderr, "Connected\n");
	
	//Init the device
	e(ftdi_usb_reset(&ftdi),"ftdi_usb_reset",&ftdi,15);
	e(ftdi_set_baudrate(&ftdi, 250000),"ftdi_set_baudrate",&ftdi,16);
	e(ftdi_set_line_property(&ftdi, BITS_8, STOP_BIT_2, NONE),"ftdi_set_line_property",&ftdi,17);
	e(ftdi_setflowctrl(&ftdi, SIO_DISABLE_FLOW_CTRL),"ftdi_setflowctrl",&ftdi,18);
	e(ftdi_usb_purge_buffers(&ftdi),"ftdi_usb_purge_buffers",&ftdi,19);
	e(ftdi_setrts(&ftdi, 0),"ftdi_setrts",&ftdi,20);

	// 1ms pause for initialization completion
	ts_to_sleep.tv_sec=0;
	ts_to_sleep.tv_nsec=1000000;
	nanosleep(&ts_to_sleep,NULL);

	ts_trame_begin.tv_sec=0;
	ts_trame_begin.tv_nsec=0;

	// Wait the end of the previous timeslot
	clock_gettime(CLOCK_MONOTONIC, &ts_now);
	ts_diffadd(&ts_to_sleep,&ts_frame_time,&ts_now,&ts_trame_begin);
	nanosleep(&ts_to_sleep,NULL);

	clock_gettime(CLOCK_MONOTONIC, &ts_trame_begin);

	e(ftdi_set_line_property2(&ftdi, BITS_8, STOP_BIT_2, NONE, BREAK_ON),"ftdi_set_line_property2",&ftdi,30);
	nanosleep(&ts_dmx_break,NULL);
	e(ftdi_set_line_property2(&ftdi, BITS_8, STOP_BIT_2, NONE, BREAK_OFF),"ftdi_set_line_property2",&ftdi,31);
	nanosleep(&ts_dmx_mab,NULL);



	// Tests
	universe[2]=120;
	universe[3]=120;
	universe[4]=120;


	//e(ftdi_write_data(&ftdi, universe, DMX_CHANNELS),"ftdi_write_data",&ftdi,32);
	res=ftdi_write_data(&ftdi, universe, DMX_CHANNELS);
	
	//fprintf(stderr, "DEBUG : to_sleep=={%li,%li}\n", ts_to_sleep.tv_sec, ts_to_sleep.tv_nsec);
	fprintf(stderr, "DEBUG : res==%i\n", res);
//	fprintf(stderr, "DEBUG : universe==%s\n", universe);

	e(ftdi_usb_close(&ftdi),"ftdi_usb_close",&ftdi,50);
	ftdi_list_free(&devlist);
	ftdi_deinit(&ftdi);


	free(manufacturer);
	free(description);
	free(serial);

	exit(0);
}