blob: 587479e728a9f73372691034946560971d0ad7c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# compiling required libraries
see makefile target 'compile'
# compiling rtlsdr-flarm
get the rtlsdr-flarm-0.1.2 source
apply the patch rtlsdr-flarm-android.diff
go to rtlsdr-flarm-0.1.2 directory
create the android binary make -f Makefile.android rtlsdr-flarm-android
# debug android binary
see 'make debug' target in Makefile.android
setup adb port-forward, e.g. 'adb forward tcp:5000 tcp:5000'
run: ../toolchain/bin/arm-linux-androideabi-gdb rtlsdr-flarm-android
call: target remote :5000
|