libiio를 사용하여 센서에서 샘플을 읽으려고 하는데 어떤 이유에서인지 애플리케이션을 다시 시작하지 않는 한 항상 동일한 샘플을 얻습니다.
다음은 최소한의 예입니다.
#include <stdio.h>
#include <iio.h>
#include <string.h>
#include <unistd.h>
#include <inttypes.h>
/* Global objects */
static struct iio_buffer *device_buffer = NULL;
static struct iio_channel *channel = NULL;
static struct iio_context *local_ctx = NULL;
static struct iio_device *dev = NULL;
static const char *dev_name = NULL;
static const char *channel_id = NULL;
static uint8_t *in_buf;
int main()
{
/* Getting local iio device context */
local_ctx = iio_create_local_context();
dev = iio_context_get_device(local_ctx, 0);
dev_name = iio_device_get_name(dev);
channel = iio_device_get_channel(dev, 0);
iio_channel_enable(channel);
if (iio_channel_is_enabled(channel))
return -1;
uint32_t sample_size = 3;
uint32_t buffer_length = 1;
struct iio_buffer *device_buffer =
iio_device_create_buffer(dev, buffer_length, false);
if (!device_buffer)
return -1;
while (true) {
ssize_t nbytes_rx = iio_buffer_refill(device_buffer);
if (nbytes_rx <= 0) {
printf("Error refilling buf %d\n", (int) nbytes_rx);
return -1;
}
in_buf = (uint8_t*)malloc(sample_size * buffer_length);
iio_channel_read(channel, device_buffer, in_buf, sample_size * buffer_length);
printf("%" PRIi32 "\n", ((int32_t *)in_buf));
free(in_buf);
}
}
실제 코드에서는 적절한 오류 검사를 수행하고 SIGINT를 처리하며 모든 버퍼를 삭제합니다. 모든 것이 정상입니다. 유일한 문제는 버퍼가 다시 채워지고 새 샘플이 인쇄된다고 가정하는 동안 동일한 샘플이 계속해서 인쇄된다는 것입니다.