Browse Source

update

change_pipette_api
zhaohe 2 years ago
parent
commit
fb17dcb552
  1. 5
      api/zi_module.hpp

5
api/zi_module.hpp

@ -31,6 +31,11 @@ class ZIModule {
virtual ~ZIModule() {}
virtual int32_t getid(int32_t *id) = 0;
virtual int32_t getid() {
int32_t id = 0;
getid(&id);
return id;
};
virtual int32_t module_stop() { return err::koperation_not_support; }
virtual int32_t module_break() { return err::koperation_not_support; }

Loading…
Cancel
Save