Skip to content

Commit

Permalink
Add todo
Browse files Browse the repository at this point in the history
  • Loading branch information
pd0wm committed Nov 20, 2024
1 parent 140e3f4 commit cc56bdf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vector/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ impl Drop for VectorCan {

impl CanAdapter for VectorCan {
fn send(&mut self, frames: &mut VecDeque<Frame>) -> Result<()> {
// TODO: can we send frames in bulk? If we fill up the TXqueue we need to know which messages were actually sent out
while let Some(frame) = frames.pop_front() {
let xl_frame: XLcanTxEvent = frame.clone().into();
let xl_frames = vec![xl_frame];
Expand Down

0 comments on commit cc56bdf

Please sign in to comment.