summaryrefslogtreecommitdiffstats
path: root/app/dfu.c
blob: 2606ac7f7676bc74e95e0901edb1cfab0968dda1 (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
#include "project.h"


extern uint32_t dfu_flag;

const struct usb_dfu_descriptor dfu_function = {
  .bLength = sizeof (struct usb_dfu_descriptor),
  .bDescriptorType = DFU_FUNCTIONAL,
  .bmAttributes = USB_DFU_CAN_DOWNLOAD,
  .wDetachTimeout = 255,
  .wTransferSize = 1024,
  .bcdDFUVersion = 0x011A,
};

const struct usb_interface_descriptor dfu_iface = {
  .bLength = USB_DT_INTERFACE_SIZE,
  .bDescriptorType = USB_DT_INTERFACE,
  .bInterfaceNumber = 2,
  .bAlternateSetting = 0,
  .bNumEndpoints = 0,
  .bInterfaceClass = 0xFE,
  .bInterfaceSubClass = 1,
  .bInterfaceProtocol = 1,
  .iInterface = 8,

  .extra = &dfu_function,
  .extralen = sizeof (dfu_function),
};


static int
dfu_detach_complete (usbd_device * usbd_dev, struct usb_setup_data *req)
{
  (void) req;
  (void) usbd_dev;

  dfu_flag = 0xfee1dead;

  scb_reset_core ();

  return 0;
}



int
dfu_control_request (usbd_device * usbd_dev, struct usb_setup_data *req,
                     uint8_t ** buf, uint16_t * len,
                     int (**complete) (usbd_device * usbd_dev,
                                       struct usb_setup_data * req))
{
  (void) buf;
  (void) len;
  (void) usbd_dev;

  if ((req->bmRequestType & 0x7F) != 0x21)
    return 0;                   /* Only accept class request. */

  switch (req->bRequest)
    {
    case DFU_GETSTATUS:
      {
        (*buf)[0] = DFU_STATUS_OK;
        (*buf)[1] = 0;
        (*buf)[2] = 0;
        (*buf)[3] = 0;
        (*buf)[4] = STATE_APP_IDLE;
        (*buf)[5] = 0;          /* iString not used here */
        *len = 6;
        return 1;
      }
    case DFU_GETSTATE:
      /* Return state with no state transision. */
      *buf[0] = STATE_APP_IDLE;
      *len = 1;
      return 1;
    case DFU_DETACH:
      *complete = dfu_detach_complete;

      return 1;
    }

  return 0;

}