X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=libsigrok-internal.h;h=048ed74f398f6e2efa60d203d8b1e8ecbaf5b418;hb=4afdfd4628e9955af02a3ea619ecdfe469f9a9e2;hp=ea77b90875e7020aeffebbfc3e6b95b7ca7e835f;hpb=5635705c8330d243ec566e15373eb47eb5b0fd9c;p=libsigrok.git diff --git a/libsigrok-internal.h b/libsigrok-internal.h index ea77b908..048ed74f 100644 --- a/libsigrok-internal.h +++ b/libsigrok-internal.h @@ -113,6 +113,7 @@ SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial); /*--- hwdriver.c ------------------------------------------------------------*/ SR_PRIV void sr_hw_cleanup_all(void); +SR_PRIV struct sr_config *sr_config_make(int key, const void *value); SR_PRIV int sr_source_remove(int fd); SR_PRIV int sr_source_add(int fd, int events, int timeout, sr_receive_data_callback_t cb, void *cb_data); @@ -122,6 +123,14 @@ SR_PRIV int sr_source_add(int fd, int events, int timeout, SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi, const struct sr_datafeed_packet *packet); +/*--- std.c -----------------------------------------------------------------*/ + +SR_PRIV int std_hw_init(struct sr_context *sr_ctx, struct sr_dev_driver *di, + const char *prefix); + +SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi, + const char *prefix); + /*--- hardware/common/serial.c ----------------------------------------------*/ enum { @@ -226,7 +235,7 @@ SR_PRIV int sr_metex14_parse(const uint8_t *buf, float *floatval, #define RS9LCD_PACKET_SIZE 9 /* Dummy info struct. The parser does not use it. */ -struct rs9lcd_info {}; +struct rs9lcd_info { int dummy; }; SR_PRIV gboolean sr_rs9lcd_packet_valid(const uint8_t *buf); SR_PRIV int sr_rs9lcd_parse(const uint8_t *buf, float *floatval,