summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--boot/prototypes.h2
-rwxr-xr-xship4
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);
diff --git a/ship b/ship
index 9f79674..69cddf9 100755
--- a/ship
+++ b/ship
@@ -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