Browse Source

update

change_pipette_api
zhaohe 2 years ago
parent
commit
7c37ecd094
  1. 10
      api/zi_module.hpp

10
api/zi_module.hpp

@ -8,6 +8,16 @@
namespace iflytop {
using namespace std;
#define ACTION_NONE ;
#define PROCESS_REG(param_id, readaction, writeacton) \
case param_id: { \
if (read) { \
readaction; \
} else { \
writeacton; \
} \
}
class ModuleCMDExecStatus {
public:
int32_t exec_status = 0;

Loading…
Cancel
Save