X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fstd.c;fp=src%2Fstd.c;h=cd3bdd0b33de3f4ec296d1e84e7ca18d8bafa3be;hb=c0aa074eb2d13c5d81e2caff8d243ca5f3feb3c6;hp=b6a0fc9c768e4071f7505743cdccf27fb9813159;hpb=e378e3a2d4d2b24464ab01d19000c8a39dfc29b8;p=libsigrok.git diff --git a/src/std.c b/src/std.c index b6a0fc9c..cd3bdd0b 100644 --- a/src/std.c +++ b/src/std.c @@ -937,3 +937,20 @@ SR_PRIV int std_cg_idx(const struct sr_channel_group *cg, struct sr_channel_grou return -1; } + +SR_PRIV int std_dummy_set_params(struct sr_serial_dev_inst *serial, + int baudrate, int bits, int parity, int stopbits, + int flowcontrol, int rts, int dtr) +{ + (void)serial; + (void)baudrate; + (void)bits; + (void)parity; + (void)stopbits; + (void)flowcontrol; + (void)rts; + (void)dtr; + + return SR_OK; +} +