X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Farachnid-labs-re-load-pro%2Fprotocol.c;h=5b1a0daaa0083764f2ae46de780dbf78cb2b40ec;hb=56e9672b118860303bc072c6d5815834d5ce63fc;hp=cbca8e53f38efa9ba6d0dcdce8779ed551faa16e;hpb=014c7f93d425500702e5bdec272e60b367804097;p=libsigrok.git diff --git a/src/hardware/arachnid-labs-re-load-pro/protocol.c b/src/hardware/arachnid-labs-re-load-pro/protocol.c index cbca8e53..5b1a0daa 100644 --- a/src/hardware/arachnid-labs-re-load-pro/protocol.c +++ b/src/hardware/arachnid-labs-re-load-pro/protocol.c @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -144,6 +143,31 @@ SR_PRIV int reloadpro_get_voltage_current(const struct sr_dev_inst *sdi, return SR_OK; } +static int send_config_update_key(const struct sr_dev_inst *sdi, + uint32_t key, GVariant *var) +{ + struct sr_config *cfg; + struct sr_datafeed_packet packet; + struct sr_datafeed_meta meta; + int ret; + + cfg = sr_config_new(key, var); + if (!cfg) + return SR_ERR; + + memset(&meta, 0, sizeof(meta)); + + packet.type = SR_DF_META; + packet.payload = &meta; + + meta.config = g_slist_append(meta.config, cfg); + + ret = sr_session_send(sdi, &packet); + sr_config_free(cfg); + + return ret; +} + static void handle_packet(const struct sr_dev_inst *sdi) { float voltage, current; @@ -161,12 +185,30 @@ static void handle_packet(const struct sr_dev_inst *sdi) if (g_str_has_prefix((const char *)devc->buf, "overtemp")) { sr_warn("Overtemperature condition!"); devc->otp_active = TRUE; + send_config_update_key(sdi, SR_CONF_OVER_TEMPERATURE_PROTECTION_ACTIVE, + g_variant_new_boolean(TRUE)); return; } if (g_str_has_prefix((const char *)devc->buf, "undervolt")) { sr_warn("Undervoltage condition!"); devc->uvc_active = TRUE; + send_config_update_key(sdi, SR_CONF_UNDER_VOLTAGE_CONDITION_ACTIVE, + g_variant_new_boolean(TRUE)); + return; + } + + if (g_str_has_prefix((const char *)devc->buf, "err ")) { + sr_err("Device replied with an error: '%s'.", devc->buf); + return; + } + + if (g_str_has_prefix((const char *)devc->buf, "set ")) { + tokens = g_strsplit((const char *)devc->buf, " ", 2); + current = g_ascii_strtod(tokens[1], NULL) / 1000; + g_strfreev(tokens); + send_config_update_key(sdi, SR_CONF_CURRENT_LIMIT, + g_variant_new_double(current)); return; } @@ -264,7 +306,7 @@ SR_PRIV int reloadpro_receive_data(int fd, int revents, void *cb_data) handle_new_data(sdi); if (sr_sw_limits_check(&devc->limits)) - sdi->driver->dev_acquisition_stop(sdi); + sr_dev_acquisition_stop(sdi); return TRUE; }