Skip to content

Commit

Permalink
pic32-hal v0.11.0; minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kiffie committed Apr 7, 2024
1 parent 679815c commit 282cf18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pic32-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pic32-hal"
version = "0.10.1"
version = "0.11.0"
authors = ["Stephan <kiffie@mailbox.org>"]
edition = "2021"
description = "Hardware Abstraction Layer (HAL) for PIC32 microcontrollers"
Expand Down
6 changes: 3 additions & 3 deletions pic32-hal/src/i2c.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//! I2C driver for PIC32

use crate::pac::{I2C1, I2C2};
use crate::time::Hertz;
use crate::dma;
use crate::int::InterruptSource;
use crate::pac::{I2C1, I2C2};
use crate::time::Hertz;
use embedded_hal::blocking;
use mips_mcu::PhysicalAddress;
use mips_mcu::fmt::virt_to_phys;
use mips_mcu::PhysicalAddress;

/// I2C clock frequency specifier
/// The values of this enum correspond to the divisor values mentioned in the
Expand Down

0 comments on commit 282cf18

Please sign in to comment.