]> mj.ucw.cz Git - home-hw.git/blob - test-sinclair/main.c
5e90ecf8d864bb21f10dacf2f201b01ed6ca643d
[home-hw.git] / test-sinclair / main.c
1 /*
2  *      Testing Communication with Sinclair Air Conditioner
3  *
4  *      (c) 2023 Martin Mareš <mj@ucw.cz>
5  */
6
7 #include "util.h"
8
9 #include <libopencm3/cm3/cortex.h>
10 #include <libopencm3/cm3/nvic.h>
11 #include <libopencm3/cm3/systick.h>
12 #include <libopencm3/cm3/scb.h>
13 #include <libopencm3/stm32/rcc.h>
14 #include <libopencm3/stm32/desig.h>
15 #include <libopencm3/stm32/gpio.h>
16 #include <libopencm3/stm32/usart.h>
17 #include <libopencm3/stm32/spi.h>
18 #include <libopencm3/stm32/timer.h>
19 #include <libopencm3/usb/dfu.h>
20 #include <libopencm3/usb/usbd.h>
21
22 #include <string.h>
23
24 /*** Hardware init ***/
25
26 static void clock_init(void)
27 {
28         rcc_clock_setup_pll(&rcc_hse_configs[RCC_CLOCK_HSE8_72MHZ]);
29
30         rcc_periph_clock_enable(RCC_GPIOA);
31         rcc_periph_clock_enable(RCC_GPIOB);
32         rcc_periph_clock_enable(RCC_GPIOC);
33         rcc_periph_clock_enable(RCC_SPI2);
34         rcc_periph_clock_enable(RCC_USART1);
35         rcc_periph_clock_enable(RCC_USB);
36         rcc_periph_clock_enable(RCC_TIM3);
37         rcc_periph_clock_enable(RCC_TIM4);
38
39         rcc_periph_reset_pulse(RST_GPIOA);
40         rcc_periph_reset_pulse(RST_GPIOB);
41         rcc_periph_reset_pulse(RST_GPIOC);
42         rcc_periph_reset_pulse(RST_SPI2);
43         rcc_periph_reset_pulse(RST_USART1);
44         rcc_periph_reset_pulse(RST_USB);
45         rcc_periph_reset_pulse(RST_TIM3);
46         rcc_periph_reset_pulse(RST_TIM4);
47 }
48
49 static void gpio_init(void)
50 {
51         // PA9 = TXD1 for debugging console
52         // PA10 = RXD1 for debugging console
53         gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_ALTFN_PUSHPULL, GPIO9);
54         gpio_set_mode(GPIOA, GPIO_MODE_INPUT, GPIO_CNF_INPUT_FLOAT, GPIO10);
55
56         // PC13 = BluePill LED
57         gpio_set_mode(GPIOC, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO13);
58         gpio_clear(GPIOC, GPIO13);
59
60         // PB13 = SCK2
61         // PB15 = MOSI2
62         gpio_set_mode(GPIOB, GPIO_MODE_INPUT, GPIO_CNF_INPUT_FLOAT, GPIO13);
63         gpio_set_mode(GPIOB, GPIO_MODE_INPUT, GPIO_CNF_INPUT_FLOAT, GPIO15);
64
65         // PA8 = IR remote control
66         gpio_clear(GPIOA, GPIO8);
67         gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO8);
68 }
69
70 static void usart_init(void)
71 {
72         usart_set_baudrate(USART1, 115200);
73         usart_set_databits(USART1, 8);
74         usart_set_stopbits(USART1, USART_STOPBITS_1);
75         usart_set_mode(USART1, USART_MODE_TX_RX);
76         usart_set_parity(USART1, USART_PARITY_NONE);
77         usart_set_flow_control(USART1, USART_FLOWCONTROL_NONE);
78
79         usart_enable(USART1);
80 }
81
82 /*** System ticks ***/
83
84 static volatile u32 ms_ticks;
85
86 void sys_tick_handler(void)
87 {
88         ms_ticks++;
89 }
90
91 static void tick_init(void)
92 {
93         systick_set_frequency(1000, CPU_CLOCK_MHZ * 1000000);
94         systick_counter_enable();
95         systick_interrupt_enable();
96 }
97
98 static void delay_ms(uint ms)
99 {
100         u32 start_ticks = ms_ticks;
101         while (ms_ticks - start_ticks < ms)
102                 ;
103 }
104
105 /*** Emulated TM1618 LED Driver ***/
106
107 /*
108  *  Theory of operation:
109  *
110  *  TM1618 communicates using a bi-directional SPI-like protocol.
111  *  The AC unit is sending a stream of commands like this once per ca. 4 ms:
112  *
113  *      00 - set mode: 4 grids, 8 segments
114  *      44 - will write to display memory, no auto-increment
115  *      Cx - set memory address to x
116  *      yy - data to write, two most-significant bits are always zero
117  *      8B - display ON, duty cycle 10/16
118  *
119  *  No read commands are issued, so we can simulate TM1618 using a pure SPI slave.
120  *
121  *  Commands are delimited using the STB* (strobe) pin, but since our opto-couplers
122  *  are negating, we cannot route this pin to SS (slave select) of our SPI.
123  *  We tried triggering an external interrupt by this pin, but it turned out
124  *  that the latency is too high.
125  *
126  *  Instead, we ignore STB* completely and implement a self-synchronizing receiver:
127  *
128  *    - The only byte which can have top 2 bits both set is the Cx command,
129  *      so we can use this to find memory addresses and data in the stream.
130  *      We can ignore all other commands.
131  *
132  *    - Whenever 1 ms passes since the last byte was received, we reset the SPI.
133  *      This allows us to recover from misaligned bytes.
134  */
135
136 static void tm_init(void)
137 {
138         // Configure SPI2 to receive
139         spi_set_receive_only_mode(SPI2);
140         spi_enable_software_slave_management(SPI2);
141         spi_set_nss_low(SPI2);
142         spi_send_lsb_first(SPI2);
143         spi_set_clock_polarity_0(SPI2);
144         spi_set_clock_phase_1(SPI2);
145         spi_enable_rx_buffer_not_empty_interrupt(SPI2);
146         nvic_enable_irq(NVIC_SPI2_IRQ);
147         spi_enable(SPI2);
148
149         // TIM3 will handle receive timeout
150         timer_set_prescaler(TIM3, CPU_CLOCK_MHZ-1);     // 1 tick = 1 μs
151         timer_set_mode(TIM3, TIM_CR1_CKD_CK_INT, TIM_CR1_CMS_EDGE, TIM_CR1_DIR_DOWN);
152         timer_update_on_overflow(TIM3);
153         timer_disable_preload(TIM3);
154         timer_one_shot_mode(TIM3);
155         timer_enable_irq(TIM3, TIM_DIER_UIE);
156         nvic_enable_irq(NVIC_TIM3_IRQ);
157 }
158
159 /*
160  *  Data memory of TM1618:
161  *
162  *  [0]    .    .    .    -    -    -    -    -
163  *  [1]    .    .    -    -    HEAT .    .    .
164  *  [2]    .    .    .    DRY  -    SLP  MED  LOW
165  *  [3]    .    .    HIGH AUTO COOL .    .    .
166  *  [4]    .    .    .    B2   -    G2   D2   C2
167  *  [5]    .    .    E2   F2   A2   .    .    .
168  *  [6]    .    .    .    B1   -    G1   D1   C1
169  *  [7]    .    .    E1   F1   A1   .    .    .
170  *
171  *  "." is an always-zero bit not defined by TM1618, "-" is defined, but not used by AC.
172  */
173 static volatile byte tm_data[8];
174 static volatile uint tm_overruns;
175
176 static volatile byte tm_buffer[256];
177 static volatile uint tm_len;
178
179 /*
180  *
181  *  Display segments:
182  *
183  *      +--A--+
184  *      |     |
185  *      F     B
186  *      |     |
187  *      +--G--+
188  *      |     |
189  *      E     C
190  *      |     |
191  *      +--D--+
192  */
193
194 enum tm_seg {
195         SEGa = 0x0800,
196         SEGb = 0x0010,
197         SEGc = 0x0001,
198         SEGd = 0x0002,
199         SEGe = 0x2000,
200         SEGf = 0x1000,
201         SEGg = 0x0004,
202 };
203
204 static const u16 tm_digits[10] = {
205         [0] = SEGa | SEGb | SEGc | SEGd | SEGe | SEGf,
206         [1] = SEGb | SEGc,
207         [2] = SEGa | SEGb | SEGd | SEGe | SEGg,
208         [3] = SEGa | SEGb | SEGc | SEGd | SEGg,
209         [4] = SEGb | SEGc | SEGf | SEGg,
210         [5] = SEGa | SEGc | SEGd | SEGf | SEGg,
211         [6] = SEGa | SEGc | SEGd | SEGe | SEGf | SEGg,
212         [7] = SEGa | SEGb | SEGc,
213         [8] = SEGa | SEGb | SEGc | SEGd | SEGe | SEGf | SEGg,
214         [9] = SEGa | SEGb | SEGc | SEGd | SEGf | SEGg,
215 };
216
217 static volatile uint tm_timeouts;
218
219 void spi2_isr(void)
220 {
221         if (SPI_SR(SPI2) & SPI_SR_OVR)
222                 tm_overruns++;
223         if (SPI_SR(SPI2) & SPI_SR_RXNE) {
224                 byte x = SPI_DR(SPI2) ^ 0xff;
225 #if 0
226                 if (tm_len < ARRAY_SIZE(tm_buffer))
227                         tm_buffer[tm_len++] = x;
228 #endif
229                 static byte tm_address;
230                 if (tm_address) {
231                         tm_data[tm_address & 7] = x;
232                         tm_address = 0;
233                 } else if ((x & 0xc0) == 0xc0) {
234                         tm_address = x;
235                 }
236                 timer_set_period(TIM3, 999);
237                 timer_generate_event(TIM3, TIM_EGR_UG);
238                 timer_enable_counter(TIM3);
239         }
240 }
241
242 void tim3_isr(void)
243 {
244         if (TIM_SR(TIM3) & TIM_SR_UIF) {
245                 TIM_SR(TIM3) &= ~TIM_SR_UIF;
246                 tm_timeouts++;
247                 spi_set_nss_high(SPI2);
248                 spi_set_nss_low(SPI2);
249         }
250 }
251
252 static void tm_show(void)
253 {
254         debug_printf("TM:");
255         for (uint i=0; i<8; i++)
256                 debug_printf(" %02x", tm_data[i]);
257         debug_printf(" o=%d t=%d", tm_overruns, tm_timeouts);
258
259         debug_printf(" =>");
260         if (tm_data[1] & 0x08)
261                 debug_printf(" HEAT");
262         if (tm_data[2] & 0x10)
263                 debug_printf(" DRY");
264         if (tm_data[2] & 0x04)
265                 debug_printf(" SLEEP");
266         if (tm_data[2] & 0x02)
267                 debug_printf(" MED");
268         if (tm_data[2] & 0x01)
269                 debug_printf(" LOW");
270         if (tm_data[3] & 0x20)
271                 debug_printf(" HIGH");
272         if (tm_data[3] & 0x10)
273                 debug_printf(" AUTO");
274         if (tm_data[3] & 0x08)
275                 debug_printf(" COOL");
276
277         debug_putc(' ');
278         for (int i=0; i<2; i++) {
279                 uint x = (tm_data[7-2*i] << 8) | tm_data[6-2*i];
280                 uint j = 0;
281                 while (j < 10 && tm_digits[j] != x)
282                         j++;
283                 if (j == 10)
284                         debug_putc('?');
285                 else
286                         debug_putc('0' + j);
287         }
288
289         debug_putc('\n');
290
291 #if 0
292         static byte tm_dumped;
293         if (!tm_dumped && tm_len == ARRAY_SIZE(tm_buffer)) {
294                 for (uint i=0; i < tm_len; i++)
295                         debug_printf("%02x ", tm_buffer[i]);
296                 debug_putc('\n');
297                 // tm_dumped = 1;
298                 tm_len = 0;
299         }
300 #endif
301 }
302
303 /*** Infra-red remote control simulator ***/
304
305 #define RC_POWER_OFF_HI         0b00000000000000000000
306 #define RC_POWER_OFF_LO         0b00000000000000010000000010100100
307
308 #define RC_DEFAULT_HI           0b00000011000000000000
309
310 // Various temperatures
311 #define RC_17_COOL_AUTO         0b00000000000000010000000000101001
312 #define RC_18_COOL_AUTO         0b00000000000000010000000000111000
313 #define RC_19_COOL_AUTO         0b00000000000000010000000001000111
314 #define RC_20_COOL_AUTO         0b00000000000000010000000001010110
315 #define RC_21_COOL_AUTO         0b00000000000000010000000001100101
316 #define RC_22_COOL_AUTO         0b00000000000000010000000001110100
317 #define RC_23_COOL_AUTO         0b00000000000000010000000010000011
318 #define RC_24_COOL_AUTO         0b00000000000000010000000010010010
319 #define RC_25_COOL_AUTO         0b00000000000000010000000010100001
320 #define RC_26_COOL_AUTO         0b00000000000000010000000010110000
321 #define RC_27_COOL_AUTO         0b00000000000000010000000011001111
322 #define RC_28_COOL_AUTO         0b00000000000000010000000011011110
323 #define RC_29_COOL_AUTO         0b00000000000000010000000011101101
324 #define RC_30_COOL_AUTO         0b00000000000000010000000011111100
325
326 // Various fan settings
327 #define RC_17_COOL_HI           0b00000000000000010000100000100001
328 #define RC_17_COOL_MED          0b00000000000000010001000100100111
329 #define RC_17_COOL_LO           0b00000000000000010010001000100101
330
331 // Stand-alone, no temperature nor fan setting
332 #define RC_DEHUMIDIFY           0b00000000000000010010010000100011
333
334 // Combines with a temperature setting, but no fan setting
335 #define RC_17_WARM              0b00000000000000010000001100100110
336
337 // All modes have a sleep variant, which we do not use yet
338 #define RC_17_COOL_AUTO_SLEEP   0b00000000000010010000000000100001
339
340 static const u32 rc_fan_settings[4] = {
341         0,
342         RC_17_COOL_LO ^ RC_17_COOL_AUTO,
343         RC_17_COOL_MED ^ RC_17_COOL_AUTO,
344         RC_17_COOL_HI ^ RC_17_COOL_AUTO,
345 };
346
347 static const u32 rc_temp_settings[14] = {
348 #define X(t) RC_##t##_COOL_AUTO ^ RC_17_COOL_AUTO
349         X(17),
350         X(18),
351         X(19),
352         X(20),
353         X(21),
354         X(22),
355         X(23),
356         X(24),
357         X(25),
358         X(26),
359         X(27),
360         X(28),
361         X(29),
362         X(30),
363 #undef X
364 };
365
366 enum rc_mode {
367         MODE_OFF,
368         MODE_COOL,
369         MODE_WARM,
370         MODE_DEHUMIDIFY,
371 };
372
373 static byte rc_mode = MODE_COOL;        // MODE_xxx
374 static byte rc_fan;                     // 0-3
375 static byte rc_temp = 17;               // 17-30
376
377 static void rc_init(void)
378 {
379         // TIM4 runs at 1 MHz and it is used for timing of RC pulses
380         timer_set_prescaler(TIM4, CPU_CLOCK_MHZ - 1);
381         timer_set_mode(TIM4, TIM_CR1_CKD_CK_INT, TIM_CR1_CMS_EDGE, TIM_CR1_DIR_UP);
382         timer_update_on_overflow(TIM4);
383         timer_disable_preload(TIM4);
384         timer_one_shot_mode(TIM4);
385         timer_enable_irq(TIM4, TIM_DIER_UIE);
386         nvic_enable_irq(NVIC_TIM4_IRQ);
387 }
388
389 static u32 rc_pattern[2];
390 static uint rc_tick;
391
392 static void rc_encode(void)
393 {
394         if (rc_mode == MODE_OFF) {
395                 rc_pattern[0] = RC_POWER_OFF_HI;
396                 rc_pattern[1] = RC_POWER_OFF_LO;
397                 return;
398         }
399
400         rc_pattern[0] = RC_DEFAULT_HI;
401         uint t = rc_temp, f = rc_fan;
402
403         if (rc_mode == MODE_COOL) {
404                 rc_pattern[1] = RC_17_COOL_AUTO;
405         } else if (rc_mode == MODE_WARM) {
406                 rc_pattern[1] = RC_17_WARM;
407                 f = 0;
408         } else {
409                 rc_pattern[1] = RC_DEHUMIDIFY;
410                 f = t = 0;
411         }
412
413         rc_pattern[1] ^= rc_fan_settings[f];
414
415         if (t >= 17 && t < 17 + ARRAY_SIZE(rc_temp_settings))
416                 rc_pattern[1] ^= rc_temp_settings[t - 17];
417 }
418
419 void tim4_isr(void)
420 {
421         if (TIM_SR(TIM4) & TIM_SR_UIF) {
422                 TIM_SR(TIM4) &= ~TIM_SR_UIF;
423
424                 bool val;       // 1=pulse, 0=break
425                 uint duration;  // in μs
426
427                 switch (rc_tick) {
428                         case 0:
429                                 // Better be safe
430                                 return;
431                         case 2:
432                         case 108:
433                                 // Initial / final marker
434                                 val = 0;
435                                 duration = 3600;
436                                 // debug_putc('#');
437                                 break;
438                         case 110:
439                                 // Inter-packet gap
440                                 val = 0;
441                                 duration = 10000;
442                                 // debug_putc('$');
443                                 break;
444                         case 111:
445                                 // End of message
446                                 rc_tick = 0;
447                                 return;
448                         default:
449                                 if (rc_tick % 2) {
450                                         val = 1;
451                                         duration = 565;
452                                         // debug_putc('*');
453                                 } else {
454                                         // Even ticks 4 to 106 transmit 52 bits of data
455                                         uint i = 12 + (rc_tick - 4) / 2;
456                                         val = 0;
457                                         if (rc_pattern[i>>5] & (0x80000000 >> (i & 31))) {
458                                                 duration = 1471;
459                                                 // debug_putc('B');
460                                         } else {
461                                                 duration = 480;
462                                                 // debug_putc('A');
463                                         }
464                                 }
465                 }
466
467                 rc_tick++;
468
469                 if (val)
470                         gpio_set(GPIOA, GPIO8);
471                 else
472                         gpio_clear(GPIOA, GPIO8);
473
474                 timer_set_period(TIM4, duration - 1);
475                 timer_generate_event(TIM4, TIM_EGR_UG);
476                 timer_enable_counter(TIM4);
477         }
478 }
479
480 static void rc_send(void)
481 {
482         if (rc_tick)
483                 return;
484
485         rc_encode();
486         debug_printf("RC sending: %05x %08x (mode=%d, fan=%d, temp=%d)\n",
487                 (uint) rc_pattern[0], (uint) rc_pattern[1],
488                 rc_mode, rc_fan, rc_temp);
489         rc_tick = 1;
490
491         timer_set_period(TIM4, 1);
492         timer_generate_event(TIM4, TIM_EGR_UG);
493         timer_enable_counter(TIM4);
494 }
495
496 static bool rc_key(char key)
497 {
498         if (key == 'o') {
499                 rc_mode = MODE_OFF;
500                 rc_send();
501                 return true;
502         } else if (key == 'c') {
503                 rc_mode = MODE_COOL;
504                 rc_send();
505                 return true;
506         } else if (key == 'w') {
507                 rc_mode = MODE_WARM;
508                 rc_send();
509                 return true;
510         } else if (key == 'd') {
511                 rc_mode = MODE_DEHUMIDIFY;
512                 rc_send();
513                 return true;
514         } else if (key == 'a') {
515                 rc_fan = 0;
516                 rc_send();
517                 return true;
518         } else if (key == 'l') {
519                 rc_fan = 1;
520                 rc_send();
521                 return true;
522         } else if (key == 'm') {
523                 rc_fan = 2;
524                 rc_send();
525                 return true;
526         } else if (key == 'h') {
527                 rc_fan = 3;
528                 rc_send();
529                 return true;
530         } else if (key >= '7' && key <= '9') {
531                 rc_temp = key - '0' + 10;
532                 rc_send();
533                 return true;
534         } else if (key >= '0' && key <= '6') {
535                 rc_temp = key - '0' + 20;
536                 rc_send();
537                 return true;
538         } else if (key == '&') {
539                 rc_temp = 27;
540                 rc_send();
541                 return true;
542         } else if (key == '*') {
543                 rc_temp = 28;
544                 rc_send();
545                 return true;
546         } else if (key == '(') {
547                 rc_temp = 29;
548                 rc_send();
549                 return true;
550         } else if (key == ')') {
551                 rc_temp = 30;
552                 rc_send();
553                 return true;
554         }
555         return false;
556 }
557
558 /*** USB ***/
559
560 static usbd_device *usbd_dev;
561
562 enum usb_string {
563         STR_MANUFACTURER = 1,
564         STR_PRODUCT,
565         STR_SERIAL,
566 };
567
568 static char usb_serial_number[13];
569
570 static const char *usb_strings[] = {
571         "United Computer Wizards",
572         "Sinclair Air Conditioner",
573         usb_serial_number,
574 };
575
576 static const struct usb_device_descriptor device = {
577         .bLength = USB_DT_DEVICE_SIZE,
578         .bDescriptorType = USB_DT_DEVICE,
579         .bcdUSB = 0x0200,
580         .bDeviceClass = 0xFF,
581         .bDeviceSubClass = 0,
582         .bDeviceProtocol = 0,
583         .bMaxPacketSize0 = 64,
584         .idVendor = 0x4242,
585         .idProduct = 0x0007,
586         .bcdDevice = 0x0000,
587         .iManufacturer = STR_MANUFACTURER,
588         .iProduct = STR_PRODUCT,
589         .iSerialNumber = STR_SERIAL,
590         .bNumConfigurations = 1,
591 };
592
593 static const struct usb_endpoint_descriptor endpoints[] = {{
594         // Bulk end-point for sending values to the display
595         .bLength = USB_DT_ENDPOINT_SIZE,
596         .bDescriptorType = USB_DT_ENDPOINT,
597         .bEndpointAddress = 0x01,
598         .bmAttributes = USB_ENDPOINT_ATTR_BULK,
599         .wMaxPacketSize = 64,
600         .bInterval = 1,
601 }};
602
603 static const struct usb_interface_descriptor iface = {
604         .bLength = USB_DT_INTERFACE_SIZE,
605         .bDescriptorType = USB_DT_INTERFACE,
606         .bInterfaceNumber = 0,
607         .bAlternateSetting = 0,
608         .bNumEndpoints = 1,
609         .bInterfaceClass = 0xFF,
610         .bInterfaceSubClass = 0,
611         .bInterfaceProtocol = 0,
612         .iInterface = 0,
613         .endpoint = endpoints,
614 };
615
616 static const struct usb_dfu_descriptor dfu_function = {
617         .bLength = sizeof(struct usb_dfu_descriptor),
618         .bDescriptorType = DFU_FUNCTIONAL,
619         .bmAttributes = USB_DFU_CAN_DOWNLOAD | USB_DFU_WILL_DETACH,
620         .wDetachTimeout = 255,
621         .wTransferSize = 1024,
622         .bcdDFUVersion = 0x0100,
623 };
624
625 static const struct usb_interface_descriptor dfu_iface = {
626         .bLength = USB_DT_INTERFACE_SIZE,
627         .bDescriptorType = USB_DT_INTERFACE,
628         .bInterfaceNumber = 1,
629         .bAlternateSetting = 0,
630         .bNumEndpoints = 0,
631         .bInterfaceClass = 0xFE,
632         .bInterfaceSubClass = 1,
633         .bInterfaceProtocol = 1,
634         .iInterface = 0,
635
636         .extra = &dfu_function,
637         .extralen = sizeof(dfu_function),
638 };
639
640 static const struct usb_interface ifaces[] = {{
641         .num_altsetting = 1,
642         .altsetting = &iface,
643 }, {
644         .num_altsetting = 1,
645         .altsetting = &dfu_iface,
646 }};
647
648 static const struct usb_config_descriptor config = {
649         .bLength = USB_DT_CONFIGURATION_SIZE,
650         .bDescriptorType = USB_DT_CONFIGURATION,
651         .wTotalLength = 0,
652         .bNumInterfaces = 2,
653         .bConfigurationValue = 1,
654         .iConfiguration = 0,
655         .bmAttributes = 0x80,
656         .bMaxPower = 50,        // multiplied by 2 mA
657         .interface = ifaces,
658 };
659
660 static byte usb_configured;
661 static uint8_t usbd_control_buffer[64];
662
663 static void dfu_detach_complete(usbd_device *dev UNUSED, struct usb_setup_data *req UNUSED)
664 {
665         // Reset to bootloader, which implements the rest of DFU
666         debug_printf("Switching to DFU\n");
667         debug_flush();
668         scb_reset_core();
669 }
670
671 static enum usbd_request_return_codes dfu_control_cb(usbd_device *dev UNUSED,
672         struct usb_setup_data *req,
673         uint8_t **buf UNUSED,
674         uint16_t *len UNUSED,
675         void (**complete)(usbd_device *dev, struct usb_setup_data *req))
676 {
677         if (req->bmRequestType != 0x21 || req->bRequest != DFU_DETACH)
678                 return USBD_REQ_NOTSUPP;
679
680         *complete = dfu_detach_complete;
681         return USBD_REQ_HANDLED;
682 }
683
684 static void ep01_cb(usbd_device *dev, uint8_t ep UNUSED)
685 {
686         // We received a frame from the USB host
687         byte buf[8];
688         uint len = usbd_ep_read_packet(dev, 0x01, buf, 8);
689         debug_printf("USB: Host sent %u bytes\n", len);
690 }
691
692 static void set_config_cb(usbd_device *dev, uint16_t wValue UNUSED)
693 {
694         usbd_register_control_callback(
695                 dev,
696                 USB_REQ_TYPE_CLASS | USB_REQ_TYPE_INTERFACE,
697                 USB_REQ_TYPE_TYPE | USB_REQ_TYPE_RECIPIENT,
698                 dfu_control_cb);
699         usbd_ep_setup(dev, 0x01, USB_ENDPOINT_ATTR_BULK, 64, ep01_cb);
700         usb_configured = 1;
701 }
702
703 static void reset_cb(void)
704 {
705         debug_printf("USB: Reset\n");
706         usb_configured = 0;
707 }
708
709 static volatile bool usb_event_pending;
710
711 void usb_lp_can_rx0_isr(void)
712 {
713         /*
714          *  We handle USB in the main loop to avoid race conditions between
715          *  USB interrupts and other code. However, we need an interrupt to
716          *  up the main loop from sleep.
717          *
718          *  We set up only the low-priority ISR, because high-priority ISR handles
719          *  only double-buffered bulk transfers and isochronous transfers.
720          */
721         nvic_disable_irq(NVIC_USB_LP_CAN_RX0_IRQ);
722         usb_event_pending = 1;
723 }
724
725 static void usb_init(void)
726 {
727         // Simulate USB disconnect
728         gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_OPENDRAIN, GPIO11 | GPIO12);
729         gpio_clear(GPIOA, GPIO11 | GPIO12);
730         delay_ms(100);
731
732         usbd_dev = usbd_init(
733                 &st_usbfs_v1_usb_driver,
734                 &device,
735                 &config,
736                 usb_strings,
737                 ARRAY_SIZE(usb_strings),
738                 usbd_control_buffer,
739                 sizeof(usbd_control_buffer)
740         );
741         usbd_register_reset_callback(usbd_dev, reset_cb);
742         usbd_register_set_config_callback(usbd_dev, set_config_cb);
743         usb_event_pending = 1;
744 }
745
746 /*** Main ***/
747
748 int main(void)
749 {
750         clock_init();
751         gpio_init();
752         usart_init();
753
754         tick_init();
755         desig_get_unique_id_as_dfu(usb_serial_number);
756
757         debug_printf("Hello, world!\n");
758
759         tm_init();
760         rc_init();
761         usb_init();
762
763         u32 last_blink = 0;
764
765         for (;;) {
766                 if (ms_ticks - last_blink >= 1000) {
767                         debug_led_toggle();
768                         last_blink = ms_ticks;
769                         tm_show();
770                 }
771
772                 if (usart_get_flag(USART1, USART_SR_RXNE)) {
773                         uint ch = usart_recv(USART1);
774 #if 0
775                         if (ch == '1')
776                                 gpio_set(GPIOA, GPIO8);
777                         else if (ch == '0')
778                                 gpio_clear(GPIOA, GPIO8);
779 #else
780                         if (rc_key(ch))
781                                 ;
782 #endif
783                         else
784                                 debug_putc(ch);
785                 }
786
787                 if (usb_event_pending) {
788                         usbd_poll(usbd_dev);
789                         usb_event_pending = 0;
790                         nvic_clear_pending_irq(NVIC_USB_LP_CAN_RX0_IRQ);
791                         nvic_enable_irq(NVIC_USB_LP_CAN_RX0_IRQ);
792                 }
793
794                 wait_for_interrupt();
795         }
796
797         return 0;
798 }