mirror of
http://172.16.0.230/r/SIF/TowerOptoSifAndSpectral.git
synced 2025-10-20 03:49:43 +08:00
主采集逻辑修改中,添加了部分写文件实现
This commit is contained in:
61
source/OSIF/include/vendors/OceanOptics/features/pixel_binning/PixelBinningFeatureInterface.h
vendored
Normal file
61
source/OSIF/include/vendors/OceanOptics/features/pixel_binning/PixelBinningFeatureInterface.h
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
/***************************************************//**
|
||||
* @file PixelBinningFeatureInterface.h
|
||||
* @date October 2015
|
||||
* @author Ocean Optics, Inc.
|
||||
*
|
||||
* This feature provides an interface to the thermo-
|
||||
* electric cooler (TEC) feature.
|
||||
*
|
||||
* LICENSE:
|
||||
*
|
||||
* SeaBreeze Copyright (C) 2015, Ocean Optics Inc
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject
|
||||
* to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included
|
||||
* in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*******************************************************/
|
||||
|
||||
#ifndef PIXELBINNINGFEATUREINTERFACE_H
|
||||
#define PIXELBINNINGFEATUREINTERFACE_H
|
||||
|
||||
#include "common/buses/Bus.h"
|
||||
#include "common/protocols/Protocol.h"
|
||||
#include "common/exceptions/FeatureException.h"
|
||||
#include "common/exceptions/IllegalArgumentException.h"
|
||||
|
||||
namespace seabreeze {
|
||||
|
||||
class PixelBinningFeatureInterface {
|
||||
public:
|
||||
virtual ~PixelBinningFeatureInterface() = 0;
|
||||
virtual void setPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus, const unsigned char binningFactor) throw (FeatureException) = 0;
|
||||
virtual unsigned char getPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus) throw (FeatureException) = 0;
|
||||
virtual void setDefaultPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus, const unsigned char binningFactor) throw (FeatureException) = 0;
|
||||
virtual void setDefaultPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus) throw (FeatureException) = 0;
|
||||
virtual unsigned char getDefaultPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus) throw (FeatureException) = 0;
|
||||
virtual unsigned char getMaxPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus) throw (FeatureException) = 0;
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* PIXELBINNINGFEATUREINTERFACE_H */
|
89
source/OSIF/include/vendors/OceanOptics/features/pixel_binning/STSPixelBinningFeature.h
vendored
Normal file
89
source/OSIF/include/vendors/OceanOptics/features/pixel_binning/STSPixelBinningFeature.h
vendored
Normal file
@ -0,0 +1,89 @@
|
||||
/***************************************************//**
|
||||
* @file STSPixelBinningFeature.h
|
||||
* @date October 2015
|
||||
* @author Ocean Optics, Inc.
|
||||
*
|
||||
* This feature provides an interface to the thermo-
|
||||
* electric unit for devices with a clean
|
||||
* protocol implementation. This is an abstract base
|
||||
* class but it does much of the work needed for most
|
||||
* implementations that can delegate almost everything
|
||||
* to the protocol layer.
|
||||
*
|
||||
* LICENSE:
|
||||
*
|
||||
* SeaBreeze Copyright (C) 2015, Ocean Optics Inc
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject
|
||||
* to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included
|
||||
* in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*******************************************************/
|
||||
|
||||
#ifndef STSPIXELBINNINGFEATURE_H
|
||||
#define STSPIXELBINNINGFEATURE_H
|
||||
|
||||
#include "common/buses/Bus.h"
|
||||
#include "common/protocols/Protocol.h"
|
||||
#include "common/protocols/ProtocolHelper.h"
|
||||
#include "common/features/FeatureImpl.h"
|
||||
#include "common/exceptions/FeatureException.h"
|
||||
#include "common/exceptions/IllegalArgumentException.h"
|
||||
#include "vendors/OceanOptics/features/pixel_binning/PixelBinningFeatureInterface.h"
|
||||
|
||||
namespace seabreeze {
|
||||
|
||||
class STSSpectrometerFeature;
|
||||
|
||||
class STSPixelBinningFeature : public FeatureImpl,
|
||||
public PixelBinningFeatureInterface {
|
||||
public:
|
||||
STSPixelBinningFeature(std::vector<ProtocolHelper *> helpers,
|
||||
STSSpectrometerFeature *spectroFeature);
|
||||
virtual ~STSPixelBinningFeature();
|
||||
|
||||
virtual void setPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus, const unsigned char binningFactor)
|
||||
throw (FeatureException);
|
||||
virtual unsigned char getPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus) throw (FeatureException);
|
||||
virtual void setDefaultPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus, const unsigned char binningFactor)
|
||||
throw (FeatureException);
|
||||
virtual void setDefaultPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus) throw (FeatureException);
|
||||
virtual unsigned char getDefaultPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus) throw (FeatureException);
|
||||
virtual unsigned char getMaxPixelBinningFactor(const Protocol &protocol,
|
||||
const Bus &bus) throw (FeatureException);
|
||||
|
||||
/* Inherited from Feature */
|
||||
/* This is still abstract in case the device needs to do anything
|
||||
* special with regards to defaults when it is initialized.
|
||||
*/
|
||||
virtual bool initialize(const Protocol &protocol, const Bus &bus)
|
||||
throw (FeatureException);
|
||||
|
||||
|
||||
virtual FeatureFamily getFeatureFamily();
|
||||
|
||||
protected:
|
||||
STSSpectrometerFeature *spectrometerFeature;
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* STSPIXELBINNINGFEATURE_H */
|
Reference in New Issue
Block a user