Skip to content

Commit

Permalink
More work on fix for FT-IR scans (6)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-marsh committed Jan 17, 2024
1 parent 387d03c commit 2a4cb23
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Binary file modified JISA.jar
Binary file not shown.
3 changes: 1 addition & 2 deletions src/jisa/devices/spectrometer/Bruker70v.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public String takeScan(String[] scan_params) throws Exception {
String scan_type = scan_params[4];

String response = super.sendRequest("COMMAND_LINE MeasureSample(0, {EXP='" + exp_file
+ "', XPP='G:\\\\User XPM files', SNM='" + sample_name
+ "', XPP='O:\\\\OE-FET\\\\FTIR\\\\User XPM files', SNM='" + sample_name
+ "', PTH='" + save_path + "', NSS='" + num_scans + "'});");
String[] split = response.split("\n");

Expand All @@ -38,7 +38,6 @@ public String takeScan(String[] scan_params) throws Exception {
System.out.println(response);
String unload = super.sendRequest("UNLOAD_FILE " + save_path + sample_name + ".0");
System.out.println(unload);
close();
return takeScan(scan_params);
}
else {
Expand Down

0 comments on commit 2a4cb23

Please sign in to comment.