git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6454 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2013-11-11 15:26:51 +00:00
parent 5b6fb4adf4
commit ee44b486e5
3 changed files with 7 additions and 6 deletions

View File

@ -136,6 +136,7 @@ static const ShellConfig shell_cfg1 = {
* Application entry point.
*/
int main(void) {
static THD_WORKING_AREA(wa_usb_lld_pump, STM32_USB_OTG_THREAD_STACK_SIZE);
thread_t *shelltp = NULL;
/*
@ -164,6 +165,8 @@ int main(void) {
* Note, a delay is inserted in order to not have to disconnect the cable
* 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);
chThdSleepMilliseconds(1000);
usbStart(serusbcfg.usbp, &usbcfg);

View File

@ -24,11 +24,6 @@
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
</natures>
<linkedResources>
<link>
<name>board</name>
<type>2</type>
<locationURI>CHIBIOS/boards/OLIMEX_STM32_E407</locationURI>
</link>
<link>
<name>os</name>
<type>2</type>

View File

@ -457,7 +457,8 @@ static msg_t Thread1(void *arg) {
* Application entry point.
*/
int main(void) {
thread_t *shelltp = NULL;
static THD_WORKING_AREA(wa_usb_lld_pump, STM32_USB_OTG_THREAD_STACK_SIZE);
thread_t *shelltp = NULL;
/*
* System initializations.
@ -480,6 +481,8 @@ thread_t *shelltp = NULL;
* Note, a delay is inserted in order to not have to disconnect the cable
* 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);
chThdSleepMilliseconds(1500);
usbStart(serusbcfg.usbp, &usbcfg);