Enable rtlsdr bounce buffers on aarch64, too (thanks to @wiedehopf for the suggestion)

This commit is contained in:
Oliver Jowett 2021-08-11 17:28:47 +08:00
parent ef70374126
commit 0aac23e049
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
#include <rtl-sdr.h>
#ifdef __arm__
#if defined(__arm__) || defined(__aarch64__)
// Assume we need to use a bounce buffer to avoid performance problems on Pis running kernel 5.x and using zerocopy
# define USE_BOUNCE_BUFFER
#endif