Skip to content

Commit

Permalink
Merge branch '5-lima-core-1-10-recompilation' into 'master'
Browse files Browse the repository at this point in the history
Resolve "lima-core 1.10 recompilation"

Closes #5

See merge request limagroup/Lima-camera-lambda!7
  • Loading branch information
claustre committed Oct 3, 2024
2 parents 2029e03 + 0b9ecde commit b08ab37
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ build-noarch:
- conda mambabuild ./conda/tango --prefix-length=80 --output-folder=dist/ -c http://bcu-ci.esrf.fr/stable
dependencies:
- build-linux
tags:
- linux

deploy-devel:
stage: deploy
Expand Down
1 change: 1 addition & 0 deletions conda/camera/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ cxx_compiler:
- vs2017 # [win]
python:
- 3.9
- 3.10
# This differs from target_platform in that it determines what subdir the compiler
# will target, not what subdir the compiler package will be itself.
# For example, we need a win-64 vs2008_win-32 package, so that we compile win-32
Expand Down
4 changes: 2 additions & 2 deletions conda/camera/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ requirements:
host:
- python {{ python }}
- sip 4.19* # API v12.7
- lima-core
- lima-core 1.10*
- xspectrum-sdk 2.0.2
- boost-cpp=1.74.0=h6cacc03_7
build:
Expand All @@ -29,7 +29,7 @@ requirements:
run:
- python
- {{ pin_compatible('sip', min_pin='x.x.x', max_pin='x') }}
- {{ pin_compatible('lima-core', max_pin='x.x') }}
- {{ pin_compatible('lima-core', min_pin='x.x', max_pin='x.x') }}
- xspectrum-sdk 2.0.2
- boost-cpp=1.74.0=h6cacc03_7

Expand Down
2 changes: 1 addition & 1 deletion conda/tango/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ requirements:
- ninja
- lima-core
run:
- lima-tango-server
- lima-tango-server 1.10*
- lima-camera-lambda

about:
Expand Down
9 changes: 0 additions & 9 deletions src/LambdaInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,6 @@ Interface::Interface(Camera& cam) :
m_cap_list.push_back(HwCap(m_det_info));
m_cap_list.push_back(HwCap(m_bufferCtrlObj));
m_cap_list.push_back(HwCap(m_sync));
Size image_size;
m_det_info->getMaxImageSize(image_size);
ImageType image_type;
m_det_info->getDefImageType(image_type);
FrameDim frame_dim(image_size, image_type);
m_bufferCtrlObj->setFrameDim(frame_dim);
m_bufferCtrlObj->setNbConcatFrames(1);
m_bufferCtrlObj->setNbBuffers(2);

}

//-----------------------------------------------------
Expand Down

0 comments on commit b08ab37

Please sign in to comment.