Skip to content

Commit

Permalink
Improvement/fix 3700 platform flash issues (#10)
Browse files Browse the repository at this point in the history
changes include:
* Removing the debug config at the direction of @esarver 
* Adding the 37xx platform 
A. Changing the flash portion of the code to match what has previously
been done
   B. Adding the newly created instrument to mod.rs

---------

Signed-off-by: c3charvat <[email protected]>
  • Loading branch information
c3charvat authored Jun 24, 2024
1 parent e3aa685 commit 6e19a86
Show file tree
Hide file tree
Showing 4 changed files with 1,000 additions and 26 deletions.
16 changes: 0 additions & 16 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,6 @@ pub enum InstrumentError {
details: String,
},

#[cfg(feature = "debugging")]
/// There was an error when performing a debugging action.
#[error("debug error occurred: {details}")]
DebugError {
/// The details of the [`DebugError`]
details: String,
},

#[cfg(feature = "debugging")]
/// The Debugger license was not accepted.
#[error("debug license was not valid: {reason}")]
DebugLicenseRejection {
/// The reason the license was rejected
reason: String,
},

/// There was an issue while disconnecting from an instrument.
#[error("unable to gracefully disconnect from instrument: {details}")]
DisconnectError {
Expand Down
10 changes: 0 additions & 10 deletions src/model/ki2600.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,6 @@ fn is_2600(model: impl AsRef<str>) -> bool {
"2604B-L",
"2614B-L",
"2634B-L",
"3706",
"3706-SNFP",
"3706-S",
"3706-NFP",
"3706A",
"3706A-SNFP",
"3706A-S",
"3706A-NFP",
"707B",
"708B",
]
.contains(&model.as_ref())
}
Expand Down
Loading

0 comments on commit 6e19a86

Please sign in to comment.