1
0
Fork 0
forked from len0rd/rockbox

iAP: fix USB storage mount after using an iAP accessory

Change-Id: Ieb10da5850e9a2fa751142c2cf29447dccec0a17
This commit is contained in:
Cástor Muñoz 2016-08-26 00:06:16 +02:00
parent 108a0f3fd0
commit cbcc8f368f

View file

@ -42,6 +42,7 @@
#include "sound.h"
#include "action.h"
#include "powermgmt.h"
#include "usb.h"
#include "tuner.h"
#include "ipod_remote_tuner.h"
@ -348,6 +349,13 @@ static void iap_thread(void)
iap_shutdown = true;
break;
}
/* Ack USB thread */
case SYS_USB_CONNECTED:
{
usb_acknowledge(SYS_USB_CONNECTED_ACK);
break;
}
}
}
}