mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 12:10:13 +01:00
zephyr: Use CONFIG_USB_DEVICE_STACK for conditional USB device support.
CONFIG_USB was removed in Zephyr v2.7.0 after some Kconfig rework that made it sufficient to use CONFIG_USB_DEVICE_STACK only. Signed-off-by: Maureen Helm <maureen.helm@intel.com>
This commit is contained in:
committed by
Damien George
parent
1e5df0982a
commit
0cf03bd3b1
@@ -34,7 +34,7 @@
|
||||
#include <net/net_context.h>
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_USB
|
||||
#ifdef CONFIG_USB_DEVICE_STACK
|
||||
#include <usb/usb_device.h>
|
||||
#endif
|
||||
|
||||
@@ -140,7 +140,7 @@ soft_reset:
|
||||
#endif
|
||||
mp_init();
|
||||
|
||||
#ifdef CONFIG_USB
|
||||
#ifdef CONFIG_USB_DEVICE_STACK
|
||||
usb_enable(NULL);
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user