Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9abfb5956182
Choose a base ref
...
head repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1bae7a25bfa3
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on May 31, 2021

  1. fix #474 (BSD build support)

    spookyvision committed May 31, 2021
    Copy the full SHA
    1bd3a59 View commit details
  2. Copy the full SHA
    ed6b3c8 View commit details
  3. Merge pull request #489 from spookyvision/lib_intel_mac

    fix #474 (BSD build support)
    azonenberg authored May 31, 2021
    Copy the full SHA
    1bae7a2 View commit details
Showing with 16 additions and 5 deletions.
  1. +3 −0 .gitmodules
  2. +9 −2 scopehal/CMakeLists.txt
  3. +3 −2 scopehal/PeakDetectionFilter.cpp
  4. +1 −1 scopehal/scopehal.h
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -7,3 +7,6 @@
[submodule "graphwidget"]
path = graphwidget
url = ../graphwidget.git
[submodule "OpenCL-CLHPP"]
path = OpenCL-CLHPP
url = https://github.com/KhronosGroup/OpenCL-CLHPP.git
11 changes: 9 additions & 2 deletions scopehal/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@ include_directories(SYSTEM ${GTKMM_INCLUDE_DIRS} ${SIGCXX_INCLUDE_DIRS})
link_directories(${GTKMM_LIBRARY_DIRS} ${SIGCXX_LIBRARY_DIRS})

find_library(LXI_LIB lxi)
find_package(Yaml REQUIRED)

# Additional Windows/Linux libraries
if(WIN32)
@@ -10,6 +11,11 @@ else()
set(LIN_LIBS dl)
endif()

# Apple has their own idea about stat structs
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Dst_mtim=st_mtimespec")
endif()

if(LXI_LIB)
set(HAS_LXI true)
set(LXI_LIBRARIES ${LXI_LIB})
@@ -104,15 +110,16 @@ configure_file(config.h.in config.h)

add_library(scopehal SHARED
${SCOPEHAL_SOURCES})
target_link_libraries(scopehal ${SIGCXX_LIBRARIES} ${GTKMM_LIBRARIES} xptools log graphwidget yaml-cpp
${LXI_LIBRARIES} ${WIN_LIBS} ${LIN_LIBS} ${LIBFFTS_LIBRARIES} ${OpenCL_LIBRARIES} ${CLFFT_LIBRARIES})
target_link_libraries(scopehal ${SIGCXX_LIBRARIES} ${GTKMM_LIBRARIES} xptools log graphwidget ${YAML_LIBRARIES}
${LXI_LIBRARIES} ${WIN_LIBS} ${LIN_LIBS} ${LIBFFTS_LIBRARIES} ${OpenCL_LIBRARIES} ${CLFFT_LIBRARIES} ${OpenMP_CXX_LIBRARIES})

target_include_directories(scopehal
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${LIBFFTS_INCLUDE_DIR}
${OpenCL_INCLUDE_DIR}
${CLFFT_INCLUDE_DIR}
${YAML_INCLUDES}
)

if(${HAS_LXI})
5 changes: 3 additions & 2 deletions scopehal/PeakDetectionFilter.cpp
Original file line number Diff line number Diff line change
@@ -64,8 +64,9 @@ void PeakDetector::FindPeaks(AnalogWaveform* cap, int64_t max_peaks, float searc
for(ssize_t i=minpeak; i<(ssize_t)nouts; i++)
{
//Locate the peak
ssize_t left = max((ssize_t)minpeak, i - search_rad);
ssize_t right = min(i + search_rad, (ssize_t)nend);
ssize_t left = max((ssize_t)minpeak, (ssize_t)(i - search_rad));
ssize_t right = min((ssize_t)(i + search_rad), (ssize_t)nend);

float target = cap->m_samples[i];
bool is_peak = true;
for(ssize_t j=left; j<=right; j++)
2 changes: 1 addition & 1 deletion scopehal/scopehal.h
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@
#define CL_HPP_TARGET_OPENCL_VERSION CL_TARGET_OPENCL_VERSION
#define CL_HPP_ENABLE_PROGRAM_CONSTRUCTION_FROM_ARRAY_COMPATIBILITY
#define CL_HPP_ENABLE_EXCEPTIONS
#include <CL/cl2.hpp>
#include "../OpenCL-CLHPP/include/CL/opencl.hpp"
#endif

#include "Unit.h"