]> sigrok.org Git - libsigrok.git/commitdiff
link-mso19: Remove unused (and invalid) LED function
authorPaul Kasemir <redacted>
Fri, 4 Dec 2020 04:49:35 +0000 (21:49 -0700)
committerSoeren Apel <redacted>
Wed, 16 Oct 2024 22:00:43 +0000 (00:00 +0200)
src/hardware/link-mso19/protocol.c
src/hardware/link-mso19/protocol.h

index cce6290464d0793f41fcd54999b71df07fcceb90..ec88f0970c27a5b224840d5fefc8f9e213a27290 100644 (file)
@@ -265,20 +265,6 @@ SR_PRIV int mso_reset_fsm(struct sr_dev_inst *sdi)
        return mso_send_control_message(devc->serial, ARRAY_AND_SIZE(ops));
 }
 
-SR_PRIV int mso_toggle_led(struct sr_dev_inst *sdi, int state)
-{
-       struct dev_context *devc = sdi->priv;
-       uint16_t ops[1];
-
-       devc->ctlbase1 &= ~BIT_CTL1_LED;
-       if (state)
-               devc->ctlbase1 |= BIT_CTL1_LED;
-       ops[0] = mso_trans(REG_CTL1, devc->ctlbase1);
-
-       sr_dbg("Requesting LED toggle.");
-       return mso_send_control_message(devc->serial, ARRAY_AND_SIZE(ops));
-}
-
 SR_PRIV void stop_acquisition(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
index f1b4a6dc61330ce2ea37b572a6c6ddb47f6bc367..6dc26ac359995393a643d8d4a039f0ff36e38a01 100644 (file)
@@ -134,7 +134,6 @@ SR_PRIV int mso_force_capture(struct sr_dev_inst *sdi);
 SR_PRIV int mso_dac_out(const struct sr_dev_inst *sdi, uint16_t val);
 SR_PRIV uint16_t mso_calc_raw_from_mv(struct dev_context *devc);
 SR_PRIV int mso_reset_fsm(struct sr_dev_inst *sdi);
-SR_PRIV int mso_toggle_led(struct sr_dev_inst *sdi, int state);
 
 SR_PRIV int mso_configure_channels(const struct sr_dev_inst *sdi);
 SR_PRIV void stop_acquisition(const struct sr_dev_inst *sdi);