bug fix from 4.0.2: powerchip multi should have delays, burst trigger added to users

This commit is contained in:
2019-06-13 09:37:44 +02:00
parent 55229f77a3
commit 359970dfc2
2 changed files with 13 additions and 2 deletions

View File

@ -927,7 +927,7 @@ public:
/**
@short returns external communication mode std::string from index
\param s index for communication mode
\returns auto, trigger, ro_trigger, gating, triggered_gating, unknown when wrong mode
\returns auto, trigger, ro_trigger, gating, triggered_gating, burst_trigger, unknown when wrong mode
*/
static int getTimingMode(std::string s){ \
@ -936,6 +936,7 @@ public:
if (s== "ro_trigger") return 2; \
if (s== "gating") return 3; \
if (s== "triggered_gating") return 4; \
if (s== "burst_trigger") return 5; \
return -1; };