diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-03-20 17:58:25 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-03-21 23:20:06 +0100 |
commit | 29dad0ac4acd7174cee00556f6104594497fe970 (patch) | |
tree | 595db8018aa1652c7f8551adb60d27e90569119e /controller.c | |
parent | 8ad6e500312084cd4ae43c7bda476cc7370cda20 (diff) | |
download | libsigrokdecode-29dad0ac4acd7174cee00556f6104594497fe970.tar.gz libsigrokdecode-29dad0ac4acd7174cee00556f6104594497fe970.zip |
srd/cli/qt: s/srd_session_feed/srd_session_send/.
Diffstat (limited to 'controller.c')
-rw-r--r-- | controller.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/controller.c b/controller.c index 5979c34..4ba4de1 100644 --- a/controller.c +++ b/controller.c @@ -740,7 +740,7 @@ SRD_API int srd_session_start(int num_probes, int unitsize, uint64_t samplerate) } /** - * Feed a chunk of logic sample data to a running decoder session. + * Send a chunk of logic sample data to a running decoder session. * * @param start_samplenum The sample number of the first sample in this chunk. * @param inbuf Pointer to sample data. @@ -748,7 +748,7 @@ SRD_API int srd_session_start(int num_probes, int unitsize, uint64_t samplerate) * * @return SRD_OK upon success, a (negative) error code otherwise. */ -SRD_API int srd_session_feed(uint64_t start_samplenum, const uint8_t *inbuf, +SRD_API int srd_session_send(uint64_t start_samplenum, const uint8_t *inbuf, uint64_t inbuflen) { GSList *d; |