Skip to content

Commit 0521679

Browse files
fix the rtlsdr source on android again
1 parent 6fc41a8 commit 0521679

File tree

1 file changed

+1
-1
lines changed
  • source_modules/rtl_sdr_source/src

1 file changed

+1
-1
lines changed

source_modules/rtl_sdr_source/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ class RTLSDRSourceModule : public ModuleManager::Instance {
285285
#ifndef __ANDROID__
286286
int oret = rtlsdr_open(&_this->openDev, _this->devId);
287287
#else
288-
int oret = rtlsdr_open_fd(&_this->openDev, _this->devFd);
288+
int oret = rtlsdr_open_sys_dev(&_this->openDev, _this->devFd);
289289
#endif
290290

291291
if (oret < 0) {

0 commit comments

Comments
 (0)