Skip to content

Commit

Permalink
feat: New module TMF645
Browse files Browse the repository at this point in the history
  • Loading branch information
rruckley committed Feb 8, 2025
1 parent 38151af commit 469a707
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ use tmf::tmf629::TMF629;
use tmf::tmf632::TMF632;
#[cfg(feature = "tmf633")]
use tmf::tmf633::TMF633;
#[cfg(feature = "tmf645")]
use tmf::tmf645::TMF645;
#[cfg(feature = "tmf648")]
use tmf::tmf648::TMF648;
#[cfg(feature = "tmf674")]
Expand Down Expand Up @@ -148,6 +150,8 @@ pub struct TMFClient {
tmf632 : Option<TMF632>,
#[cfg(feature = "tmf633")]
tmf633 : Option<TMF633>,
#[cfg(feature = "tmf645")]
tmf645 : Option<TMF645>,
#[cfg(feature = "tmf648")]
tmf648 : Option<TMF648>,
#[cfg(feature = "tmf674")]
Expand Down Expand Up @@ -187,6 +191,8 @@ impl TMFClient {
tmf632 : None,
#[cfg(feature = "tmf633")]
tmf633 : None,
#[cfg(feature = "tmf645")]
tmf645 : None,
#[cfg(feature = "tmf648")]
tmf648: None,
#[cfg(feature = "tmf674")]
Expand Down Expand Up @@ -245,6 +251,11 @@ impl TMFClient {
instantiate(&mut self.tmf633, self.host.clone())
}

#[cfg(feature = "tmf645")]
pub fn tmf645(&mut self) -> TMF645 {
instantiate(&mut self.tmf645, self.host.clone())
}

#[cfg(feature = "tmf648")]
pub fn tmf648(&mut self) -> TMF648 {
instantiate(&mut self.tmf648, self.host.clone())
Expand Down

0 comments on commit 469a707

Please sign in to comment.