12 changed files with 220 additions and 7 deletions
-
6api/api.hpp
-
10api/reg_index.hpp
-
16api/zi_code_scaner.hpp
-
17api/zi_module.hpp
-
16api/zi_pipette_ctrl_module.hpp
-
21cmdid.hpp
-
21protocol_parser.cpp
-
25protocol_proxy.cpp
-
28protocol_proxy.hpp
-
19zmodule_device_manager.cpp
-
21zmodule_device_manager.hpp
-
27zmodule_device_script_cmder_paser.cpp
@ -0,0 +1,16 @@ |
|||||
|
#pragma once
|
||||
|
#include <stdint.h>
|
||||
|
|
||||
|
#include <functional>
|
||||
|
|
||||
|
#include "errorcode.hpp"
|
||||
|
|
||||
|
namespace iflytop { |
||||
|
using namespace std; |
||||
|
class ZICodeScaner { |
||||
|
public: |
||||
|
virtual int32_t code_scaner_start_scan() { return err::koperation_not_support; } |
||||
|
virtual int32_t code_scaner_stop_scan() { return err::koperation_not_support; } |
||||
|
virtual int32_t code_scaner_read_scaner_result(int32_t startadd, uint8_t *data, int32_t *len) { return err::koperation_not_support; } |
||||
|
}; |
||||
|
} // namespace iflytop
|
@ -0,0 +1,16 @@ |
|||||
|
#pragma once
|
||||
|
#include <stdint.h>
|
||||
|
|
||||
|
#include <functional>
|
||||
|
|
||||
|
#include "errorcode.hpp"
|
||||
|
|
||||
|
namespace iflytop { |
||||
|
using namespace std; |
||||
|
class ZIPipetteCtrlModule { |
||||
|
public: |
||||
|
virtual int32_t pipette_ctrl_init_device() { return err::koperation_not_support; }; |
||||
|
virtual int32_t pipette_ctrl_put_tip() { return err::koperation_not_support; }; |
||||
|
virtual int32_t pipette_ctrl_move_to_ul(int32_t ul) { return err::koperation_not_support; }; |
||||
|
}; |
||||
|
} // namespace iflytop
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue