Skip to content

Commit 118462a

Browse files
committed
Bump to Zephyr v4.3.0
1 parent 58ad079 commit 118462a

File tree

12 files changed

+39
-69
lines changed

12 files changed

+39
-69
lines changed

.codespell-ignore-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
comIn
22
Ines
3+
rsource

FprimeZephyrReference/ReferenceDeployment/Top/instances.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module ReferenceDeployment {
3838
priority 3
3939

4040
instance cmdSeq: Svc.CmdSequencer base id 0x10006000 \
41-
queue size Default.QUEUE_SIZE \
41+
queue size Default.QUEUE_SIZE * 2 \
4242
stack size Default.STACK_SIZE \
4343
priority 15
4444

boards/bronco_space/proves_flight_control_board_v5/proves_flight_control_board_v5.dtsi

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
zephyr,flash = &flash0;
1212
zephyr,console = &cdc_acm_uart0;
1313
zephyr,shell-uart = &cdc_acm_uart0;
14-
zephyr,code-partition = &code_partition;
1514
};
1615

1716
fstab {
@@ -58,34 +57,7 @@ zephyr_udc0: &usbd {
5857
};
5958

6059
&flash0 {
61-
reg = <0x10000000 DT_SIZE_M(4)>;
62-
63-
partitions {
64-
compatible = "fixed-partitions";
65-
#address-cells = <1>;
66-
#size-cells = <1>;
67-
68-
/* Reserved memory for an image definition block. The block is much
69-
* smaller than 256 bytes, but in practice the linker places the vector
70-
* table at a much larger alignment offset.
71-
*/
72-
image_def: partition@0 {
73-
label = "image_def";
74-
reg = <0x00000000 0x100>;
75-
read-only;
76-
};
77-
78-
/*
79-
* Usable flash. Starts at 0x100, after the image definition block.
80-
* The partition size is 4MB minus the 0x100 bytes taken by the
81-
* image definition.
82-
*/
83-
code_partition: partition@100 {
84-
label = "code-partition";
85-
reg = <0x100 (DT_SIZE_M(4) - 0x100)>;
86-
read-only;
87-
};
88-
};
60+
reg = <0x10000000 DT_SIZE_M(4)>;
8961
};
9062

9163
&timer0 {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
source "../../../boards/bronco_space/proves_flight_control_board_v5/Kconfig.defconfig"
1+
rsource "../../../boards/bronco_space/proves_flight_control_board_v5/Kconfig.defconfig"

boards/bronco_space/proves_flight_control_board_v5c/proves_flight_control_board_v5c_rp2350a_m33_defconfig

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,15 @@ CONFIG_SERIAL=y
88
CONFIG_UART_CONSOLE=y
99
CONFIG_UART_INTERRUPT_DRIVEN=y
1010
CONFIG_USE_DT_CODE_PARTITION=y
11-
CONFIG_USB_DEVICE_STACK=y
12-
CONFIG_USB_DEVICE_PRODUCT="PROVES Flight Control Board v5c"
13-
CONFIG_USB_DEVICE_VID=0x0028
11+
12+
# USB Next Stack
13+
CONFIG_USBD_CDC_ACM_CLASS=y
14+
CONFIG_USB_DEVICE_STACK_NEXT=y
15+
CONFIG_CDC_ACM_SERIAL_ENABLE_AT_BOOT=y
16+
CONFIG_CDC_ACM_SERIAL_INITIALIZE_AT_BOOT=y
17+
CONFIG_CDC_ACM_SERIAL_PID=0x000F
18+
CONFIG_CDC_ACM_SERIAL_VID=0x0028
19+
CONFIG_CDC_ACM_SERIAL_PRODUCT_STRING="PROVES Flight Control Board v5c"
1420

1521
# Sensors
1622
CONFIG_LSM6DSO=y

boards/bronco_space/proves_flight_control_board_v5d/Kconfig.proves_flight_control_board_v5d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ config BOARD_PROVES_FLIGHT_CONTROL_BOARD_V5D
22
bool "PROVES Flight Control Board v5d"
33
default y
44

5-
source "../../../boards/bronco_space/proves_flight_control_board_v5/Kconfig.defconfig"
5+
rsource "../../../boards/bronco_space/proves_flight_control_board_v5/Kconfig.defconfig"

boards/bronco_space/proves_flight_control_board_v5d/proves_flight_control_board_v5d_rp2350a_m33_defconfig

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,15 @@ CONFIG_SERIAL=y
88
CONFIG_UART_CONSOLE=y
99
CONFIG_UART_INTERRUPT_DRIVEN=y
1010
CONFIG_USE_DT_CODE_PARTITION=y
11-
CONFIG_USB_DEVICE_STACK=y
12-
CONFIG_USB_DEVICE_PRODUCT="PROVES Flight Control Board v5d"
13-
CONFIG_USB_DEVICE_VID=0x0028
11+
12+
# USB Next Stack
13+
CONFIG_USBD_CDC_ACM_CLASS=y
14+
CONFIG_USB_DEVICE_STACK_NEXT=y
15+
CONFIG_CDC_ACM_SERIAL_ENABLE_AT_BOOT=y
16+
CONFIG_CDC_ACM_SERIAL_INITIALIZE_AT_BOOT=y
17+
CONFIG_CDC_ACM_SERIAL_PID=0x000F
18+
CONFIG_CDC_ACM_SERIAL_VID=0x0028
19+
CONFIG_CDC_ACM_SERIAL_PRODUCT_STRING="PROVES Flight Control Board v5d"
1420

1521
# Sensors
1622
CONFIG_LSM6DSO=y

lib/zephyr-workspace/zephyr

Submodule zephyr updated 16672 files

0 commit comments

Comments
 (0)