X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=blobdiff_plain;f=src%2Fhardware%2Fmanson-hcs-3xxx%2Fprotocol.c;h=30017d1cdcbaeea092676db753ca31bdab4d8b42;hp=04e18a5fee96297f706f0af7ff8fec428db78479;hb=HEAD;hpb=1af428d018b10439071c7e3d948f4099603fa63b diff --git a/src/hardware/manson-hcs-3xxx/protocol.c b/src/hardware/manson-hcs-3xxx/protocol.c index 04e18a5f..30017d1c 100644 --- a/src/hardware/manson-hcs-3xxx/protocol.c +++ b/src/hardware/manson-hcs-3xxx/protocol.c @@ -15,15 +15,9 @@ * 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 . */ -/** @file - * Manson HCS-3xxx Series power supply driver - * @internal - */ - #include #include "protocol.h" @@ -56,10 +50,12 @@ SR_PRIV int hcs_send_cmd(struct sr_serial_dev_inst *serial, const char *cmd, ... /** * Read data from interface into buffer blocking until @a lines number of \\r chars * received. + * * @param serial Previously initialized serial port structure. * @param[in] lines Number of \\r-terminated lines to read (1-n). - * @param buf Buffer for result. Contents is NUL-terminated on success. + * @param buf Buffer for result. Contents is NUL-terminated on success. * @param[in] buflen Buffer length (>0). + * * @retval SR_OK Lines received and ending with "OK\r" (success). * @retval SR_ERR Error. * @retval SR_ERR_ARG Invalid argument. @@ -232,7 +228,7 @@ SR_PRIV int hcs_receive_data(int fd, int revents, void *cb_data) } if (sr_sw_limits_check(&devc->limits)) { - sdi->driver->dev_acquisition_stop(sdi); + sr_dev_acquisition_stop(sdi); return TRUE; }