git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6305 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
c0b3c5e8b2
commit
1fd62819b7
|
@ -223,6 +223,7 @@ static THD_FUNCTION(Thread1, arg) {
|
||||||
* Application entry point.
|
* Application entry point.
|
||||||
*/
|
*/
|
||||||
int main(void) {
|
int main(void) {
|
||||||
|
static THD_WORKING_AREA(wa_usb_lld_pump, STM32_USB_OTG_THREAD_STACK_SIZE);
|
||||||
thread_t *shelltp = NULL;
|
thread_t *shelltp = NULL;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -251,6 +252,8 @@ int main(void) {
|
||||||
* Note, a delay is inserted in order to not have to disconnect the cable
|
* Note, a delay is inserted in order to not have to disconnect the cable
|
||||||
* after a reset.
|
* after a reset.
|
||||||
*/
|
*/
|
||||||
|
chThdCreateStatic(wa_usb_lld_pump, sizeof(wa_usb_lld_pump),
|
||||||
|
STM32_USB_OTG_THREAD_PRIO, usb_lld_pump, serusbcfg.usbp);
|
||||||
usbDisconnectBus(serusbcfg.usbp);
|
usbDisconnectBus(serusbcfg.usbp);
|
||||||
chThdSleepMilliseconds(1000);
|
chThdSleepMilliseconds(1000);
|
||||||
usbStart(serusbcfg.usbp, &usbcfg);
|
usbStart(serusbcfg.usbp, &usbcfg);
|
||||||
|
|
Loading…
Reference in New Issue