mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 14:22:33 +00:00
Fix to pass CI
This commit is contained in:
parent
c12710c7e2
commit
a75f7a266c
@ -1104,7 +1104,7 @@ impl<'d> embassy_usb_driver::EndpointOut for Endpoint<'d, Out> {
|
||||
if frame_is_odd {
|
||||
r.set_sd0pid_sevnfrm(true);
|
||||
} else {
|
||||
r.set_sd1pid_soddfrm(true);
|
||||
r.set_soddfrm(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -1206,7 +1206,7 @@ impl<'d> embassy_usb_driver::EndpointIn for Endpoint<'d, In> {
|
||||
if frame_is_odd {
|
||||
r.set_sd0pid_sevnfrm(true);
|
||||
} else {
|
||||
r.set_sd1pid_soddfrm(true);
|
||||
r.set_soddfrm_sd1pid(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -1,5 +1,8 @@
|
||||
#![no_std]
|
||||
#![doc = "Peripheral access API (generated using chiptool v0.1.0 (6362222 2024-09-23))"]
|
||||
|
||||
#![allow(missing_docs)]
|
||||
#![allow(non_camel_case_types)]
|
||||
|
||||
#[doc = "USB OTG core by Synopsys (more docs at https://www.intel.com/content/www/us/en/programmable/hps/agilex5/index_frames.html)"]
|
||||
#[derive(Copy, Clone, Eq, PartialEq)]
|
||||
pub struct Otg {
|
||||
|
Loading…
Reference in New Issue
Block a user