Skip to content

Commit 4d144a9

Browse files
committed
Update Zephyr to v4.1
1 parent d77473a commit 4d144a9

File tree

5 files changed

+9
-225
lines changed

5 files changed

+9
-225
lines changed

boards/blackpill_f103c8.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"product_line": "STM32F103xB",
2222
"variant": "STM32F1xx/F103C8T_F103CB(T-U)",
2323
"zephyr": {
24-
"variant": "stm32_min_dev_black"
24+
"variant": "stm32_min_dev"
2525
}
2626
},
2727
"debug": {

boards/blackpill_f103c8_128.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"product_line": "STM32F103xB",
2222
"variant": "STM32F1xx/F103C8T_F103CB(T-U)",
2323
"zephyr": {
24-
"variant": "stm32_min_dev_black"
24+
"variant": "stm32_min_dev"
2525
}
2626
},
2727
"debug": {

examples/zephyr-subsys-usb-hid-mouse/include/sample_usbd.h

-32
This file was deleted.

examples/zephyr-subsys-usb-hid-mouse/src/sample_usbd_init.c

-185
This file was deleted.

examples/zephyr-subsys-usb-hid-mouse/zephyr/prj.conf

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
CONFIG_USB_DEVICE_STACK_NEXT=y
2-
CONFIG_USBD_HID_SUPPORT=y
1+
CONFIG_USB_DEVICE_STACK=y
2+
CONFIG_USB_DEVICE_HID=y
3+
CONFIG_USB_DEVICE_PRODUCT="Zephyr HID mouse sample"
4+
CONFIG_USB_DEVICE_PID=0x0007
5+
CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=n
36

47
CONFIG_LOG=y
5-
CONFIG_USBD_LOG_LEVEL_WRN=y
6-
CONFIG_USBD_HID_LOG_LEVEL_WRN=y
7-
CONFIG_UDC_DRIVER_LOG_LEVEL_WRN=y
8-
CONFIG_SAMPLE_USBD_PID=0x0007
8+
CONFIG_USB_DRIVER_LOG_LEVEL_ERR=y
9+
CONFIG_USB_DEVICE_LOG_LEVEL_ERR=y
910

1011
CONFIG_GPIO=y
1112
CONFIG_INPUT=y

0 commit comments

Comments
 (0)