stm32/otg: add U5 support.
This commit is contained in:
parent
dee1d51ad3
commit
8469a2409c
@ -89,6 +89,9 @@ foreach_interrupt!(
|
|||||||
} else if #[cfg(stm32h7)] {
|
} else if #[cfg(stm32h7)] {
|
||||||
const FIFO_DEPTH_WORDS: u16 = 1024;
|
const FIFO_DEPTH_WORDS: u16 = 1024;
|
||||||
const ENDPOINT_COUNT: usize = 9;
|
const ENDPOINT_COUNT: usize = 9;
|
||||||
|
} else if #[cfg(stm32u5)] {
|
||||||
|
const FIFO_DEPTH_WORDS: u16 = 320;
|
||||||
|
const ENDPOINT_COUNT: usize = 6;
|
||||||
} else {
|
} else {
|
||||||
compile_error!("USB_OTG_FS peripheral is not supported by this chip.");
|
compile_error!("USB_OTG_FS peripheral is not supported by this chip.");
|
||||||
}
|
}
|
||||||
@ -137,6 +140,9 @@ foreach_interrupt!(
|
|||||||
))] {
|
))] {
|
||||||
const FIFO_DEPTH_WORDS: u16 = 1024;
|
const FIFO_DEPTH_WORDS: u16 = 1024;
|
||||||
const ENDPOINT_COUNT: usize = 9;
|
const ENDPOINT_COUNT: usize = 9;
|
||||||
|
} else if #[cfg(stm32u5)] {
|
||||||
|
const FIFO_DEPTH_WORDS: u16 = 1024;
|
||||||
|
const ENDPOINT_COUNT: usize = 9;
|
||||||
} else {
|
} else {
|
||||||
compile_error!("USB_OTG_HS peripheral is not supported by this chip.");
|
compile_error!("USB_OTG_HS peripheral is not supported by this chip.");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user