diff options
-rw-r--r-- | boot/prototypes.h | 2 | ||||
-rwxr-xr-x | ship | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/boot/prototypes.h b/boot/prototypes.h index 40ae6c5..84473b1 100644 --- a/boot/prototypes.h +++ b/boot/prototypes.h @@ -10,7 +10,7 @@ extern void usb(void); /* dfu.c */ extern const struct usb_dfu_descriptor dfu_function; extern const struct usb_interface_descriptor dfu_iface; -extern enum usbd_request_return_codes usbdfu_control_request(usbd_device *usbd_dev, struct usb_setup_data *req, uint8_t **buf, uint16_t *len, void (**complete)(usbd_device *usbd_dev, struct usb_setup_data *req)); +extern enum usbd_request_return_codes usbdfu_control_request(usbd_device *usbd_dev, struct usb_setup_data *req, uint8_t **buf, uint16_t *len, usbd_control_complete_callback *complete); /* delay.c */ extern void sys_tick_handler(void); extern void ticker_on(void); @@ -1,6 +1,10 @@ #!/bin/sh D=$(date +%Y-%m-%d) +make -C boot protos +make -C boot clean +make -C app protos +make -C app clean make -C boot bootloader.bin bootloader.hex bootloader.elf |