实例介绍
已经在ubuntu linux 11.04 上编译测试无问题
【实例截图】
【核心代码】
c8b7b88b-c8c2-4c0f-bb71-cb4c11d7f366
└── osmocom-bb
├── doc
│ ├── calypso-block.svg
│ ├── calypso-gsm-notes.txt
│ ├── calypso-signals.txt
│ └── gsmdevboard-block.svg
├── include
│ ├── l1ctl_proto.h
│ └── osmocore
│ ├── rsl.h
│ └── utils.h
├── osmocom.cfg
├── pre-built
│ ├── compal_e86.bin
│ ├── compal_e88.bin
│ ├── compal_e99.bin
│ ├── gta0x.bin
│ ├── pirelli.bin
│ └── se_j100.bin
└── src
├── host
│ ├── calypso_pll
│ │ └── pll.pl
│ ├── fb_tools
│ │ └── bdf_to_c.py
│ ├── gsmmap
│ │ ├── aclocal.m4
│ │ ├── autom4te.cache
│ │ │ ├── output.0
│ │ │ ├── output.1
│ │ │ ├── requests
│ │ │ ├── traces.0
│ │ │ └── traces.1
│ │ ├── config.log
│ │ ├── config.status
│ │ ├── configure
│ │ ├── configure.ac
│ │ ├── depcomp
│ │ ├── geo.c
│ │ ├── geo.h
│ │ ├── geo.o
│ │ ├── git-version-gen
│ │ ├── gsmmap
│ │ ├── gsmmap.c
│ │ ├── gsmmap.o
│ │ ├── install-sh
│ │ ├── locate.c
│ │ ├── locate.h
│ │ ├── locate.o
│ │ ├── log.c
│ │ ├── logging.o
│ │ ├── log.h
│ │ ├── log.o
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── missing
│ │ ├── networks.o
│ │ └── sysinfo.o
│ ├── layer23
│ │ ├── aclocal.m4
│ │ ├── autom4te.cache
│ │ │ ├── output.0
│ │ │ ├── output.1
│ │ │ ├── requests
│ │ │ ├── traces.0
│ │ │ └── traces.1
│ │ ├── config.log
│ │ ├── config.status
│ │ ├── configure
│ │ ├── configure.ac
│ │ ├── COPYING
│ │ ├── depcomp
│ │ ├── include
│ │ │ ├── l1ctl_proto.h
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ └── osmocom
│ │ │ ├── bb
│ │ │ │ ├── common
│ │ │ │ │ ├── gps.h
│ │ │ │ │ ├── l1ctl.h
│ │ │ │ │ ├── l1l2_interface.h
│ │ │ │ │ ├── l23_app.h
│ │ │ │ │ ├── logging.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── networks.h
│ │ │ │ │ ├── osmocom_data.h
│ │ │ │ │ ├── sap_interface.h
│ │ │ │ │ ├── sim.h
│ │ │ │ │ └── sysinfo.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── misc
│ │ │ │ │ ├── cell_log.h
│ │ │ │ │ ├── layer3.h
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── rslms.h
│ │ │ │ │ └── xcch.h
│ │ │ │ └── mobile
│ │ │ │ ├── app_mobile.h
│ │ │ │ ├── gsm322.h
│ │ │ │ ├── gsm411_sms.h
│ │ │ │ ├── gsm480_ss.h
│ │ │ │ ├── gsm48_cc.h
│ │ │ │ ├── gsm48_mm.h
│ │ │ │ ├── gsm48_rr.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── mncc.h
│ │ │ │ ├── mncc_sock.h
│ │ │ │ ├── settings.h
│ │ │ │ ├── subscriber.h
│ │ │ │ ├── support.h
│ │ │ │ ├── transaction.h
│ │ │ │ ├── voice.h
│ │ │ │ └── vty.h
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ └── Makefile.in
│ │ ├── install-sh
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── missing
│ │ ├── README
│ │ └── src
│ │ ├── common
│ │ │ ├── gps.c
│ │ │ ├── gps.o
│ │ │ ├── l1ctl.c
│ │ │ ├── l1ctl_lapdm_glue.c
│ │ │ ├── l1ctl_lapdm_glue.o
│ │ │ ├── l1ctl.o
│ │ │ ├── l1l2_interface.c
│ │ │ ├── l1l2_interface.o
│ │ │ ├── liblayer23.a
│ │ │ ├── logging.c
│ │ │ ├── logging.o
│ │ │ ├── main.c
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── networks.c
│ │ │ ├── networks.o
│ │ │ ├── sap_interface.c
│ │ │ ├── sap_interface.o
│ │ │ ├── sim.c
│ │ │ ├── sim.o
│ │ │ ├── sysinfo.c
│ │ │ └── sysinfo.o
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── misc
│ │ │ ├── app_bcch_scan.c
│ │ │ ├── app_bcch_scan.o
│ │ │ ├── app_cbch_sniff.c
│ │ │ ├── app_ccch_scan.c
│ │ │ ├── app_ccch_scan.o
│ │ │ ├── app_ccch_scan_old.c
│ │ │ ├── app_cell_log.c
│ │ │ ├── app_cell_log.o
│ │ │ ├── app_echo_test.c
│ │ │ ├── arfcn_sort
│ │ │ ├── assignment.c
│ │ │ ├── assignment.h
│ │ │ ├── bcch_scan
│ │ │ ├── bcch_scan.c
│ │ │ ├── bcch_scan.o
│ │ │ ├── ccch_scan
│ │ │ ├── cellid.c
│ │ │ ├── cell_log
│ │ │ ├── cell_log.c
│ │ │ ├── cell_log.o
│ │ │ ├── geo.o
│ │ │ ├── main.o
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── osmocom.log
│ │ │ ├── rslms.c
│ │ │ ├── rslms.o
│ │ │ ├── run_ccch_scan.sh
│ │ │ ├── xcch.c
│ │ │ └── xcch.o
│ │ └── mobile
│ │ ├── app_mobile.c
│ │ ├── app_mobile.o
│ │ ├── gsm322.c
│ │ ├── gsm322.o
│ │ ├── gsm411_sms.c
│ │ ├── gsm411_sms.o
│ │ ├── gsm480_ss.c
│ │ ├── gsm480_ss.o
│ │ ├── gsm48_cc.c
│ │ ├── gsm48_cc.o
│ │ ├── gsm48_mm.c
│ │ ├── gsm48_mm.o
│ │ ├── gsm48_rr.c
│ │ ├── gsm48_rr.o
│ │ ├── libmobile.a
│ │ ├── main.c
│ │ ├── main.o
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mnccms.c
│ │ ├── mnccms.o
│ │ ├── mncc_sock.c
│ │ ├── mncc_sock.o
│ │ ├── mobile
│ │ ├── settings.c
│ │ ├── settings.o
│ │ ├── subscriber.c
│ │ ├── subscriber.o
│ │ ├── support.c
│ │ ├── support.o
│ │ ├── transaction.c
│ │ ├── transaction.o
│ │ ├── voice.c
│ │ ├── voice.o
│ │ ├── vty_interface.c
│ │ └── vty_interface.o
│ ├── osmocon
│ │ ├── aclocal.m4
│ │ ├── autom4te.cache
│ │ │ ├── output.0
│ │ │ ├── output.1
│ │ │ ├── requests
│ │ │ ├── traces.0
│ │ │ └── traces.1
│ │ ├── compal_loader.bin
│ │ ├── config.log
│ │ ├── config.status
│ │ ├── configure
│ │ ├── configure.ac
│ │ ├── COPYING
│ │ ├── depcomp
│ │ ├── git-version-gen
│ │ ├── install-sh
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── memdump_convert.pl
│ │ ├── missing
│ │ ├── osmocon
│ │ ├── osmocon.c
│ │ ├── osmocon.o
│ │ ├── osmoload
│ │ ├── osmoload.c
│ │ ├── osmoload.o
│ │ ├── sercomm.o
│ │ ├── tpu_debug.c
│ │ └── tpu_debug.o
│ └── rita_pll
│ ├── mtk_pll.pl
│ ├── mtk_pll.txt
│ ├── rita_pll_notes.txt
│ ├── rita_pll.pl
│ └── rita_pll.txt
├── Makefile
├── README.building
├── README.development
├── shared
│ ├── libosmocore
│ │ ├── aclocal.m4
│ │ ├── autom4te.cache
│ │ │ ├── output.0
│ │ │ ├── output.1
│ │ │ ├── output.2
│ │ │ ├── requests
│ │ │ ├── traces.0
│ │ │ ├── traces.1
│ │ │ └── traces.2
│ │ ├── build-host
│ │ │ ├── config.h
│ │ │ ├── config.log
│ │ │ ├── config.status
│ │ │ ├── Doxyfile.codec
│ │ │ ├── Doxyfile.gsm
│ │ │ ├── Doxyfile.vty
│ │ │ ├── include
│ │ │ │ ├── Makefile
│ │ │ │ └── osmocom
│ │ │ │ ├── codec
│ │ │ │ │ └── Makefile
│ │ │ │ ├── core
│ │ │ │ │ ├── crc16gen.h
│ │ │ │ │ ├── crc32gen.h
│ │ │ │ │ ├── crc64gen.h
│ │ │ │ │ ├── crc8gen.h
│ │ │ │ │ └── Makefile
│ │ │ │ ├── crypt
│ │ │ │ │ └── Makefile
│ │ │ │ ├── gsm
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── protocol
│ │ │ │ │ └── Makefile
│ │ │ │ ├── Makefile
│ │ │ │ └── vty
│ │ │ │ └── Makefile
│ │ │ ├── libosmocodec.pc
│ │ │ ├── libosmocore.pc
│ │ │ ├── libosmogsm.pc
│ │ │ ├── libosmovty.pc
│ │ │ ├── libtool
│ │ │ ├── Makefile
│ │ │ ├── src
│ │ │ │ ├── application.lo
│ │ │ │ ├── application.o
│ │ │ │ ├── backtrace.lo
│ │ │ │ ├── backtrace.o
│ │ │ │ ├── bits.lo
│ │ │ │ ├── bits.o
│ │ │ │ ├── bitvec.lo
│ │ │ │ ├── bitvec.o
│ │ │ │ ├── codec
│ │ │ │ │ ├── gsm610.lo
│ │ │ │ │ ├── gsm610.o
│ │ │ │ │ ├── gsm620.lo
│ │ │ │ │ ├── gsm620.o
│ │ │ │ │ ├── gsm660.lo
│ │ │ │ │ ├── gsm660.o
│ │ │ │ │ ├── gsm690.lo
│ │ │ │ │ ├── gsm690.o
│ │ │ │ │ ├── libosmocodec.la
│ │ │ │ │ └── Makefile
│ │ │ │ ├── conv.lo
│ │ │ │ ├── conv.o
│ │ │ │ ├── crc16gen.c
│ │ │ │ ├── crc16gen.lo
│ │ │ │ ├── crc16gen.o
│ │ │ │ ├── crc16.lo
│ │ │ │ ├── crc16.o
│ │ │ │ ├── crc32gen.c
│ │ │ │ ├── crc32gen.lo
│ │ │ │ ├── crc32gen.o
│ │ │ │ ├── crc64gen.c
│ │ │ │ ├── crc64gen.lo
│ │ │ │ ├── crc64gen.o
│ │ │ │ ├── crc8gen.c
│ │ │ │ ├── crc8gen.lo
│ │ │ │ ├── crc8gen.o
│ │ │ │ ├── gsm
│ │ │ │ │ ├── a5.lo
│ │ │ │ │ ├── a5.o
│ │ │ │ │ ├── abis_nm.lo
│ │ │ │ │ ├── abis_nm.o
│ │ │ │ │ ├── aes-encblock.lo
│ │ │ │ │ ├── aes-encblock.o
│ │ │ │ │ ├── aes-internal-enc.lo
│ │ │ │ │ ├── aes-internal-enc.o
│ │ │ │ │ ├── aes-internal.lo
│ │ │ │ │ ├── aes-internal.o
│ │ │ │ │ ├── auth_comp128v1.lo
│ │ │ │ │ ├── auth_comp128v1.o
│ │ │ │ │ ├── auth_core.lo
│ │ │ │ │ ├── auth_core.o
│ │ │ │ │ ├── auth_milenage.lo
│ │ │ │ │ ├── auth_milenage.o
│ │ │ │ │ ├── comp128.lo
│ │ │ │ │ ├── comp128.o
│ │ │ │ │ ├── gprs_cipher_core.lo
│ │ │ │ │ ├── gprs_cipher_core.o
│ │ │ │ │ ├── gsm0411_smc.lo
│ │ │ │ │ ├── gsm0411_smc.o
│ │ │ │ │ ├── gsm0411_smr.lo
│ │ │ │ │ ├── gsm0411_smr.o
│ │ │ │ │ ├── gsm0411_utils.lo
│ │ │ │ │ ├── gsm0411_utils.o
│ │ │ │ │ ├── gsm0480.lo
│ │ │ │ │ ├── gsm0480.o
│ │ │ │ │ ├── gsm0502.lo
│ │ │ │ │ ├── gsm0502.o
│ │ │ │ │ ├── gsm0808.lo
│ │ │ │ │ ├── gsm0808.o
│ │ │ │ │ ├── gsm48_ie.lo
│ │ │ │ │ ├── gsm48_ie.o
│ │ │ │ │ ├── gsm48.lo
│ │ │ │ │ ├── gsm48.o
│ │ │ │ │ ├── gsm_utils.lo
│ │ │ │ │ ├── gsm_utils.o
│ │ │ │ │ ├── lapd_core.lo
│ │ │ │ │ ├── lapd_core.o
│ │ │ │ │ ├── lapdm.lo
│ │ │ │ │ ├── lapdm.o
│ │ │ │ │ ├── libosmogsm.la
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── milenage.lo
│ │ │ │ │ ├── milenage.o
│ │ │ │ │ ├── rsl.lo
│ │ │ │ │ ├── rsl.o
│ │ │ │ │ ├── rxlev_stat.lo
│ │ │ │ │ ├── rxlev_stat.o
│ │ │ │ │ ├── sysinfo.lo
│ │ │ │ │ ├── sysinfo.o
│ │ │ │ │ ├── tlv_parser.lo
│ │ │ │ │ └── tlv_parser.o
│ │ │ │ ├── gsmtap_util.lo
│ │ │ │ ├── gsmtap_util.o
│ │ │ │ ├── libosmocore.la
│ │ │ │ ├── logging.lo
│ │ │ │ ├── logging.o
│ │ │ │ ├── logging_syslog.lo
│ │ │ │ ├── logging_syslog.o
│ │ │ │ ├── Makefile
│ │ │ │ ├── msgb.lo
│ │ │ │ ├── msgb.o
│ │ │ │ ├── msgfile.lo
│ │ │ │ ├── msgfile.o
│ │ │ │ ├── panic.lo
│ │ │ │ ├── panic.o
│ │ │ │ ├── plugin.lo
│ │ │ │ ├── plugin.o
│ │ │ │ ├── rate_ctr.lo
│ │ │ │ ├── rate_ctr.o
│ │ │ │ ├── rbtree.lo
│ │ │ │ ├── rbtree.o
│ │ │ │ ├── select.lo
│ │ │ │ ├── select.o
│ │ │ │ ├── serial.lo
│ │ │ │ ├── serial.o
│ │ │ │ ├── signal.lo
│ │ │ │ ├── signal.o
│ │ │ │ ├── socket.lo
│ │ │ │ ├── socket.o
│ │ │ │ ├── statistics.lo
│ │ │ │ ├── statistics.o
│ │ │ │ ├── talloc.lo
│ │ │ │ ├── talloc.o
│ │ │ │ ├── timer.lo
│ │ │ │ ├── timer.o
│ │ │ │ ├── utils.lo
│ │ │ │ ├── utils.o
│ │ │ │ ├── vty
│ │ │ │ │ ├── buffer.lo
│ │ │ │ │ ├── buffer.o
│ │ │ │ │ ├── command.lo
│ │ │ │ │ ├── command.o
│ │ │ │ │ ├── libosmovty.la
│ │ │ │ │ ├── logging_vty.lo
│ │ │ │ │ ├── logging_vty.o
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── telnet_interface.lo
│ │ │ │ │ ├── telnet_interface.o
│ │ │ │ │ ├── utils.lo
│ │ │ │ │ ├── utils.o
│ │ │ │ │ ├── vector.lo
│ │ │ │ │ ├── vector.o
│ │ │ │ │ ├── vty.lo
│ │ │ │ │ └── vty.o
│ │ │ │ ├── write_queue.lo
│ │ │ │ └── write_queue.o
│ │ │ ├── stamp-h1
│ │ │ ├── tests
│ │ │ │ ├── a5
│ │ │ │ │ ├── a5_test
│ │ │ │ │ ├── a5_test.o
│ │ │ │ │ └── Makefile
│ │ │ │ ├── atconfig
│ │ │ │ ├── auth
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── milenage_test
│ │ │ │ │ └── milenage_test.o
│ │ │ │ ├── bits
│ │ │ │ │ ├── bitrev_test
│ │ │ │ │ ├── bitrev_test.o
│ │ │ │ │ └── Makefile
│ │ │ │ ├── conv
│ │ │ │ │ ├── conv_test
│ │ │ │ │ ├── conv_test.o
│ │ │ │ │ └── Makefile
│ │ │ │ ├── gsm0808
│ │ │ │ │ ├── gsm0808_test
│ │ │ │ │ ├── gsm0808_test.o
│ │ │ │ │ └── Makefile
│ │ │ │ ├── lapd
│ │ │ │ │ ├── lapd_test
│ │ │ │ │ ├── lapd_test.o
│ │ │ │ │ └── Makefile
│ │ │ │ ├── Makefile
│ │ │ │ ├── msgfile
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── msgfile_test
│ │ │ │ │ └── msgfile_test.o
│ │ │ │ ├── sms
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── sms_test
│ │ │ │ │ └── sms_test.o
│ │ │ │ ├── smscb
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── smscb_test
│ │ │ │ │ └── smscb_test.o
│ │ │ │ ├── timer
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── timer_test
│ │ │ │ │ └── timer_test.o
│ │ │ │ └── ussd
│ │ │ │ ├── Makefile
│ │ │ │ ├── ussd_test
│ │ │ │ └── ussd_test.o
│ │ │ └── utils
│ │ │ ├── Makefile
│ │ │ ├── osmo-arfcn
│ │ │ ├── osmo-arfcn.o
│ │ │ ├── osmo-auc-gen
│ │ │ └── osmo-auc-gen.o
│ │ ├── build-target
│ │ │ ├── config.h
│ │ │ ├── config.log
│ │ │ ├── config.status
│ │ │ ├── Doxyfile.codec
│ │ │ ├── Doxyfile.gsm
│ │ │ ├── Doxyfile.vty
│ │ │ ├── include
│ │ │ │ ├── Makefile
│ │ │ │ └── osmocom
│ │ │ │ ├── codec
│ │ │ │ │ └── Makefile
│ │ │ │ ├── core
│ │ │ │ │ ├── crc16gen.h
│ │ │ │ │ ├── crc32gen.h
│ │ │ │ │ ├── crc64gen.h
│ │ │ │ │ ├── crc8gen.h
│ │ │ │ │ └── Makefile
│ │ │ │ ├── crypt
│ │ │ │ │ └── Makefile
│ │ │ │ ├── gsm
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── protocol
│ │ │ │ │ └── Makefile
│ │ │ │ ├── Makefile
│ │ │ │ └── vty
│ │ │ │ └── Makefile
│ │ │ ├── libosmocodec.pc
│ │ │ ├── libosmocore.pc
│ │ │ ├── libosmogsm.pc
│ │ │ ├── libosmovty.pc
│ │ │ ├── libtool
│ │ │ ├── Makefile
│ │ │ ├── src
│ │ │ │ ├── application.lo
│ │ │ │ ├── application.o
│ │ │ │ ├── backtrace.lo
│ │ │ │ ├── backtrace.o
│ │ │ │ ├── bits.lo
│ │ │ │ ├── bits.o
│ │ │ │ ├── bitvec.lo
│ │ │ │ ├── bitvec.o
│ │ │ │ ├── codec
│ │ │ │ │ ├── gsm610.lo
│ │ │ │ │ ├── gsm610.o
│ │ │ │ │ ├── gsm620.lo
│ │ │ │ │ ├── gsm620.o
│ │ │ │ │ ├── gsm660.lo
│ │ │ │ │ ├── gsm660.o
│ │ │ │ │ ├── gsm690.lo
│ │ │ │ │ ├── gsm690.o
│ │ │ │ │ ├── libosmocodec.la
│ │ │ │ │ └── Makefile
│ │ │ │ ├── conv.lo
│ │ │ │ ├── conv.o
│ │ │ │ ├── crc16gen.c
│ │ │ │ ├── crc16gen.lo
│ │ │ │ ├── crc16gen.o
│ │ │ │ ├── crc16.lo
│ │ │ │ ├── crc16.o
│ │ │ │ ├── crc32gen.c
│ │ │ │ ├── crc32gen.lo
│ │ │ │ ├── crc32gen.o
│ │ │ │ ├── crc64gen.c
│ │ │ │ ├── crc64gen.lo
│ │ │ │ ├── crc64gen.o
│ │ │ │ ├── crc8gen.c
│ │ │ │ ├── crc8gen.lo
│ │ │ │ ├── crc8gen.o
│ │ │ │ ├── gsm
│ │ │ │ │ ├── a5.lo
│ │ │ │ │ ├── a5.o
│ │ │ │ │ ├── abis_nm.lo
│ │ │ │ │ ├── abis_nm.o
│ │ │ │ │ ├── aes-encblock.lo
│ │ │ │ │ ├── aes-encblock.o
│ │ │ │ │ ├── aes-internal-enc.lo
│ │ │ │ │ ├── aes-internal-enc.o
│ │ │ │ │ ├── aes-internal.lo
│ │ │ │ │ ├── aes-internal.o
│ │ │ │ │ ├── auth_comp128v1.lo
│ │ │ │ │ ├── auth_comp128v1.o
│ │ │ │ │ ├── auth_core.lo
│ │ │ │ │ ├── auth_core.o
│ │ │ │ │ ├── auth_milenage.lo
│ │ │ │ │ ├── auth_milenage.o
│ │ │ │ │ ├── comp128.lo
│ │ │ │ │ ├── comp128.o
│ │ │ │ │ ├── gprs_cipher_core.lo
│ │ │ │ │ ├── gprs_cipher_core.o
│ │ │ │ │ ├── gsm0411_smc.lo
│ │ │ │ │ ├── gsm0411_smc.o
│ │ │ │ │ ├── gsm0411_smr.lo
│ │ │ │ │ ├── gsm0411_smr.o
│ │ │ │ │ ├── gsm0411_utils.lo
│ │ │ │ │ ├── gsm0411_utils.o
│ │ │ │ │ ├── gsm0480.lo
│ │ │ │ │ ├── gsm0480.o
│ │ │ │ │ ├── gsm0502.lo
│ │ │ │ │ ├── gsm0502.o
│ │ │ │ │ ├── gsm0808.lo
│ │ │ │ │ ├── gsm0808.o
│ │ │ │ │ ├── gsm48_ie.lo
│ │ │ │ │ ├── gsm48_ie.o
│ │ │ │ │ ├── gsm48.lo
│ │ │ │ │ ├── gsm48.o
│ │ │ │ │ ├── gsm_utils.lo
│ │ │ │ │ ├── gsm_utils.o
│ │ │ │ │ ├── lapd_core.lo
│ │ │ │ │ ├── lapd_core.o
│ │ │ │ │ ├── lapdm.lo
│ │ │ │ │ ├── lapdm.o
│ │ │ │ │ ├── libosmogsm.la
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── milenage.lo
│ │ │ │ │ ├── milenage.o
│ │ │ │ │ ├── rsl.lo
│ │ │ │ │ ├── rsl.o
│ │ │ │ │ ├── rxlev_stat.lo
│ │ │ │ │ ├── rxlev_stat.o
│ │ │ │ │ ├── sysinfo.lo
│ │ │ │ │ ├── sysinfo.o
│ │ │ │ │ ├── tlv_parser.lo
│ │ │ │ │ └── tlv_parser.o
│ │ │ │ ├── gsmtap_util.lo
│ │ │ │ ├── gsmtap_util.o
│ │ │ │ ├── libosmocore.la
│ │ │ │ ├── logging.lo
│ │ │ │ ├── logging.o
│ │ │ │ ├── logging_syslog.lo
│ │ │ │ ├── logging_syslog.o
│ │ │ │ ├── Makefile
│ │ │ │ ├── msgb.lo
│ │ │ │ ├── msgb.o
│ │ │ │ ├── panic.lo
│ │ │ │ ├── panic.o
│ │ │ │ ├── rate_ctr.lo
│ │ │ │ ├── rate_ctr.o
│ │ │ │ ├── rbtree.lo
│ │ │ │ ├── rbtree.o
│ │ │ │ ├── select.lo
│ │ │ │ ├── select.o
│ │ │ │ ├── signal.lo
│ │ │ │ ├── signal.o
│ │ │ │ ├── socket.lo
│ │ │ │ ├── socket.o
│ │ │ │ ├── statistics.lo
│ │ │ │ ├── statistics.o
│ │ │ │ ├── timer.lo
│ │ │ │ ├── timer.o
│ │ │ │ ├── utils.lo
│ │ │ │ ├── utils.o
│ │ │ │ ├── vty
│ │ │ │ │ └── Makefile
│ │ │ │ ├── write_queue.lo
│ │ │ │ └── write_queue.o
│ │ │ ├── stamp-h1
│ │ │ ├── tests
│ │ │ │ ├── a5
│ │ │ │ │ └── Makefile
│ │ │ │ ├── atconfig
│ │ │ │ ├── auth
│ │ │ │ │ └── Makefile
│ │ │ │ ├── bits
│ │ │ │ │ └── Makefile
│ │ │ │ ├── conv
│ │ │ │ │ └── Makefile
│ │ │ │ ├── gsm0808
│ │ │ │ │ └── Makefile
│ │ │ │ ├── lapd
│ │ │ │ │ └── Makefile
│ │ │ │ ├── Makefile
│ │ │ │ ├── msgfile
│ │ │ │ │ └── Makefile
│ │ │ │ ├── sms
│ │ │ │ │ └── Makefile
│ │ │ │ ├── smscb
│ │ │ │ │ └── Makefile
│ │ │ │ ├── timer
│ │ │ │ │ └── Makefile
│ │ │ │ └── ussd
│ │ │ │ └── Makefile
│ │ │ └── utils
│ │ │ └── Makefile
│ │ ├── config.guess
│ │ ├── config.h.in
│ │ ├── config.sub
│ │ ├── configure
│ │ ├── configure.ac
│ │ ├── COPYING
│ │ ├── debian
│ │ │ ├── changelog
│ │ │ ├── compat
│ │ │ ├── control
│ │ │ ├── copyright
│ │ │ ├── docs
│ │ │ ├── libosmocore-dbg.debhelper.log
│ │ │ ├── libosmocore-dbg.dirs
│ │ │ ├── libosmocore-dbg.install
│ │ │ ├── libosmocore-dev.dirs
│ │ │ ├── libosmocore-dev.install
│ │ │ ├── libosmocore.dirs
│ │ │ ├── libosmocore.install
│ │ │ ├── patches
│ │ │ │ ├── debian-changes-0.1.17-1
│ │ │ │ └── series
│ │ │ ├── rules
│ │ │ └── source
│ │ │ └── format
│ │ ├── depcomp
│ │ ├── doc
│ │ ├── Doxyfile.codec.in
│ │ ├── Doxyfile.core.in
│ │ ├── Doxyfile.gsm.in
│ │ ├── Doxyfile.vty.in
│ │ ├── git-version-gen
│ │ ├── include
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ └── osmocom
│ │ │ ├── codec
│ │ │ │ ├── codec.h
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── core
│ │ │ │ ├── application.h
│ │ │ │ ├── backtrace.h
│ │ │ │ ├── bits.h
│ │ │ │ ├── bitvec.h
│ │ │ │ ├── conv.h
│ │ │ │ ├── crc16.h
│ │ │ │ ├── crcgen.h
│ │ │ │ ├── crcXXgen.h.tpl
│ │ │ │ ├── gsmtap.h
│ │ │ │ ├── gsmtap_util.h
│ │ │ │ ├── linuxlist.h
│ │ │ │ ├── linuxrbtree.h
│ │ │ │ ├── logging.h
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── msgb.h
│ │ │ │ ├── msgfile.h
│ │ │ │ ├── panic.h
│ │ │ │ ├── plugin.h
│ │ │ │ ├── prim.h
│ │ │ │ ├── process.h
│ │ │ │ ├── rate_ctr.h
│ │ │ │ ├── select.h
│ │ │ │ ├── serial.h
│ │ │ │ ├── signal.h
│ │ │ │ ├── socket.h
│ │ │ │ ├── statistics.h
│ │ │ │ ├── talloc.h
│ │ │ │ ├── timer_compat.h
│ │ │ │ ├── timer.h
│ │ │ │ ├── utils.h
│ │ │ │ └── write_queue.h
│ │ │ ├── crypt
│ │ │ │ ├── auth.h
│ │ │ │ ├── gprs_cipher.h
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── gsm
│ │ │ │ ├── a5.h
│ │ │ │ ├── abis_nm.h
│ │ │ │ ├── comp128.h
│ │ │ │ ├── gsm0411_smc.h
│ │ │ │ ├── gsm0411_smr.h
│ │ │ │ ├── gsm0411_utils.h
│ │ │ │ ├── gsm0480.h
│ │ │ │ ├── gsm0502.h
│ │ │ │ ├── gsm0808.h
│ │ │ │ ├── gsm48.h
│ │ │ │ ├── gsm48_ie.h
│ │ │ │ ├── gsm_utils.h
│ │ │ │ ├── lapd_core.h
│ │ │ │ ├── lapdm.h
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── mncc.h
│ │ │ │ ├── prim.h
│ │ │ │ ├── protocol
│ │ │ │ │ ├── gsm_03_41.h
│ │ │ │ │ ├── gsm_04_08.h
│ │ │ │ │ ├── gsm_04_11.h
│ │ │ │ │ ├── gsm_04_12.h
│ │ │ │ │ ├── gsm_04_80.h
│ │ │ │ │ ├── gsm_08_08.h
│ │ │ │ │ ├── gsm_08_58.h
│ │ │ │ │ ├── gsm_12_21.h
│ │ │ │ │ ├── gsm_44_318.h
│ │ │ │ │ ├── ipaccess.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ └── Makefile.in
│ │ │ │ ├── rsl.h
│ │ │ │ ├── rxlev_stat.h
│ │ │ │ ├── sysinfo.h
│ │ │ │ └── tlv.h
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ └── vty
│ │ │ ├── buffer.h
│ │ │ ├── command.h
│ │ │ ├── logging.h
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── misc.h
│ │ │ ├── telnet_interface.h
│ │ │ ├── vector.h
│ │ │ └── vty.h
│ │ ├── install-sh
│ │ ├── libosmocodec.pc.in
│ │ ├── libosmocore.pc.in
│ │ ├── libosmogsm.pc.in
│ │ ├── libosmovty.pc.in
│ │ ├── ltmain.sh
│ │ ├── m4
│ │ │ ├── DUMMY
│ │ │ ├── libtool.m4
│ │ │ ├── lt~obsolete.m4
│ │ │ ├── ltoptions.m4
│ │ │ ├── ltsugar.m4
│ │ │ └── ltversion.m4
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── missing
│ │ ├── src
│ │ │ ├── application.c
│ │ │ ├── backtrace.c
│ │ │ ├── bits.c
│ │ │ ├── bitvec.c
│ │ │ ├── codec
│ │ │ │ ├── gsm610.c
│ │ │ │ ├── gsm620.c
│ │ │ │ ├── gsm660.c
│ │ │ │ ├── gsm690.c
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── conv.c
│ │ │ ├── crc16.c
│ │ │ ├── crcXXgen.c.tpl
│ │ │ ├── gsm
│ │ │ │ ├── a5.c
│ │ │ │ ├── abis_nm.c
│ │ │ │ ├── auth_comp128v1.c
│ │ │ │ ├── auth_core.c
│ │ │ │ ├── auth_milenage.c
│ │ │ │ ├── comp128.c
│ │ │ │ ├── gprs_cipher_core.c
│ │ │ │ ├── gsm0411_smc.c
│ │ │ │ ├── gsm0411_smr.c
│ │ │ │ ├── gsm0411_utils.c
│ │ │ │ ├── gsm0480.c
│ │ │ │ ├── gsm0502.c
│ │ │ │ ├── gsm0808.c
│ │ │ │ ├── gsm48.c
│ │ │ │ ├── gsm48_ie.c
│ │ │ │ ├── gsm_utils.c
│ │ │ │ ├── lapd_core.c
│ │ │ │ ├── lapdm.c
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── milenage
│ │ │ │ │ ├── aes-encblock.c
│ │ │ │ │ ├── aes.h
│ │ │ │ │ ├── aes_i.h
│ │ │ │ │ ├── aes-internal.c
│ │ │ │ │ ├── aes-internal-enc.c
│ │ │ │ │ ├── aes_wrap.h
│ │ │ │ │ ├── common.h
│ │ │ │ │ ├── crypto.h
│ │ │ │ │ ├── includes.h
│ │ │ │ │ ├── milenage.c
│ │ │ │ │ └── milenage.h
│ │ │ │ ├── rsl.c
│ │ │ │ ├── rxlev_stat.c
│ │ │ │ ├── sysinfo.c
│ │ │ │ └── tlv_parser.c
│ │ │ ├── gsmtap_util.c
│ │ │ ├── logging.c
│ │ │ ├── logging_syslog.c
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── msgb.c
│ │ │ ├── msgfile.c
│ │ │ ├── panic.c
│ │ │ ├── plugin.c
│ │ │ ├── rate_ctr.c
│ │ │ ├── rbtree.c
│ │ │ ├── select.c
│ │ │ ├── serial.c
│ │ │ ├── signal.c
│ │ │ ├── socket.c
│ │ │ ├── statistics.c
│ │ │ ├── talloc.c
│ │ │ ├── timer.c
│ │ │ ├── utils.c
│ │ │ ├── vty
│ │ │ │ ├── buffer.c
│ │ │ │ ├── command.c
│ │ │ │ ├── logging_vty.c
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── telnet_interface.c
│ │ │ │ ├── utils.c
│ │ │ │ ├── vector.c
│ │ │ │ └── vty.c
│ │ │ └── write_queue.c
│ │ ├── tests
│ │ │ ├── a5
│ │ │ │ ├── a5_test.c
│ │ │ │ ├── a5_test.ok
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── auth
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── milenage_test.c
│ │ │ │ └── milenage_test.ok
│ │ │ ├── bits
│ │ │ │ ├── bitrev_test.c
│ │ │ │ ├── bitrev_test.ok
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── conv
│ │ │ │ ├── conv_test.c
│ │ │ │ ├── conv_test.ok
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── gsm0808
│ │ │ │ ├── gsm0808_test.c
│ │ │ │ ├── gsm0808_test.ok
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── lapd
│ │ │ │ ├── lapd_test.c
│ │ │ │ ├── lapd_test.ok
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── msgfile
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── msgconfig.cfg
│ │ │ │ ├── msgfile_test.c
│ │ │ │ └── msgfile_test.ok
│ │ │ ├── sms
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── sms_test.c
│ │ │ │ └── sms_test.ok
│ │ │ ├── smscb
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── smscb_test.c
│ │ │ │ └── smscb_test.ok
│ │ │ ├── testsuite.at
│ │ │ ├── timer
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── timer_test.c
│ │ │ │ └── timer_test.ok
│ │ │ └── ussd
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── ussd_test.c
│ │ │ └── ussd_test.ok
│ │ └── utils
│ │ ├── gen_website_doc_tree.sh
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── osmo-arfcn.c
│ │ └── osmo-auc-gen.c
│ └── update-libosmocore.sh
├── target
│ ├── firmware
│ │ ├── abb
│ │ │ ├── twl3025.c
│ │ │ ├── twl3025.lst
│ │ │ ├── twl3025.o
│ │ │ └── twl3025.p
│ │ ├── apps
│ │ │ ├── chainload
│ │ │ │ ├── main.c
│ │ │ │ ├── main.lst
│ │ │ │ ├── main.o
│ │ │ │ └── main.p
│ │ │ ├── compal_dsp_dump
│ │ │ │ ├── main.c
│ │ │ │ ├── main.lst
│ │ │ │ ├── main.o
│ │ │ │ └── main.p
│ │ │ ├── hello_world
│ │ │ │ ├── main.c
│ │ │ │ ├── main.lst
│ │ │ │ ├── main.o
│ │ │ │ └── main.p
│ │ │ ├── layer1
│ │ │ │ ├── main.c
│ │ │ │ ├── main.lst
│ │ │ │ ├── main.o
│ │ │ │ └── main.p
│ │ │ ├── loader
│ │ │ │ ├── main.c
│ │ │ │ ├── main.lst
│ │ │ │ ├── main.o
│ │ │ │ ├── main.p
│ │ │ │ └── protocol.h
│ │ │ ├── loader_mtk
│ │ │ │ ├── main.c
│ │ │ │ ├── main.lst
│ │ │ │ ├── main.o
│ │ │ │ └── main.p
│ │ │ ├── rssi
│ │ │ │ ├── main.c
│ │ │ │ ├── main.lst
│ │ │ │ ├── main.o
│ │ │ │ └── main.p
│ │ │ └── simtest
│ │ │ └── main.c
│ │ ├── battery
│ │ │ ├── compal_e88.c
│ │ │ ├── compal_e88.lst
│ │ │ ├── compal_e88.o
│ │ │ ├── compal_e88.p
│ │ │ ├── dummy.c
│ │ │ ├── dummy.lst
│ │ │ ├── dummy.o
│ │ │ └── dummy.p
│ │ ├── board
│ │ │ ├── common
│ │ │ │ ├── calypso_pwl.lst
│ │ │ │ ├── calypso_pwl.o
│ │ │ │ ├── calypso_pwl.p
│ │ │ │ ├── calypso_pwl.S
│ │ │ │ ├── calypso_uart.lst
│ │ │ │ ├── calypso_uart.o
│ │ │ │ ├── calypso_uart.p
│ │ │ │ └── calypso_uart.S
│ │ │ ├── compal
│ │ │ │ ├── exceptions_redirected.lst
│ │ │ │ ├── exceptions_redirected.o
│ │ │ │ ├── exceptions_redirected.p
│ │ │ │ ├── exceptions_redirected.S
│ │ │ │ ├── exceptions_redirect.lst
│ │ │ │ ├── exceptions_redirect.o
│ │ │ │ ├── exceptions_redirect.p
│ │ │ │ ├── exceptions_redirect.S
│ │ │ │ ├── handlers.lst
│ │ │ │ ├── handlers.o
│ │ │ │ ├── handlers.p
│ │ │ │ ├── handlers.S
│ │ │ │ ├── header.lst
│ │ │ │ ├── header.o
│ │ │ │ ├── header.p
│ │ │ │ ├── header.S
│ │ │ │ ├── highram.lds
│ │ │ │ ├── LINKAGE.txt
│ │ │ │ ├── macros.S
│ │ │ │ ├── ram.lds
│ │ │ │ ├── rffe_dualband.c
│ │ │ │ ├── rffe_dualband.lst
│ │ │ │ ├── rffe_dualband.o
│ │ │ │ ├── rffe_dualband.p
│ │ │ │ ├── rf_power.c
│ │ │ │ ├── rf_power.lst
│ │ │ │ ├── rf_power.o
│ │ │ │ ├── rf_power.p
│ │ │ │ ├── start.ram.lst
│ │ │ │ ├── start.ram.o
│ │ │ │ ├── start.ram.p
│ │ │ │ ├── start.ram.S
│ │ │ │ ├── start.rom.lst
│ │ │ │ ├── start.rom.o
│ │ │ │ ├── start.rom.p
│ │ │ │ └── start.rom.S
│ │ │ ├── compal_e86
│ │ │ │ ├── chainload.compalram.bin
│ │ │ │ ├── chainload.compalram.elf
│ │ │ │ ├── chainload.compalram.manifest.o
│ │ │ │ ├── chainload.compalram.manifest.p
│ │ │ │ ├── chainload.compalram.map
│ │ │ │ ├── chainload.compalram.size
│ │ │ │ ├── chainload.highram.bin
│ │ │ │ ├── chainload.highram.elf
│ │ │ │ ├── chainload.highram.manifest.o
│ │ │ │ ├── chainload.highram.manifest.p
│ │ │ │ ├── chainload.highram.map
│ │ │ │ ├── chainload.highram.size
│ │ │ │ ├── compal_dsp_dump.compalram.bin
│ │ │ │ ├── compal_dsp_dump.compalram.elf
│ │ │ │ ├── compal_dsp_dump.compalram.manifest.o
│ │ │ │ ├── compal_dsp_dump.compalram.manifest.p
│ │ │ │ ├── compal_dsp_dump.compalram.map
│ │ │ │ ├── compal_dsp_dump.compalram.size
│ │ │ │ ├── compal_dsp_dump.highram.bin
│ │ │ │ ├── compal_dsp_dump.highram.elf
│ │ │ │ ├── compal_dsp_dump.highram.manifest.o
│ │ │ │ ├── compal_dsp_dump.highram.manifest.p
│ │ │ │ ├── compal_dsp_dump.highram.map
│ │ │ │ ├── compal_dsp_dump.highram.size
│ │ │ │ ├── hello_world.compalram.bin
│ │ │ │ ├── hello_world.compalram.elf
│ │ │ │ ├── hello_world.compalram.manifest.o
│ │ │ │ ├── hello_world.compalram.manifest.p
│ │ │ │ ├── hello_world.compalram.map
│ │ │ │ ├── hello_world.compalram.size
│ │ │ │ ├── hello_world.highram.bin
│ │ │ │ ├── hello_world.highram.elf
│ │ │ │ ├── hello_world.highram.manifest.o
│ │ │ │ ├── hello_world.highram.manifest.p
│ │ │ │ ├── hello_world.highram.map
│ │ │ │ ├── hello_world.highram.size
│ │ │ │ ├── init.c
│ │ │ │ ├── init.lst
│ │ │ │ ├── init.o
│ │ │ │ ├── init.p
│ │ │ │ ├── layer1.compalram.bin
│ │ │ │ ├── layer1.compalram.elf
│ │ │ │ ├── layer1.compalram.manifest.o
│ │ │ │ ├── layer1.compalram.manifest.p
│ │ │ │ ├── layer1.compalram.map
│ │ │ │ ├── layer1.compalram.size
│ │ │ │ ├── layer1.highram.bin
│ │ │ │ ├── layer1.highram.elf
│ │ │ │ ├── layer1.highram.manifest.o
│ │ │ │ ├── layer1.highram.manifest.p
│ │ │ │ ├── layer1.highram.map
│ │ │ │ ├── layer1.highram.size
│ │ │ │ ├── loader.compalram.bin
│ │ │ │ ├── loader.compalram.elf
│ │ │ │ ├── loader.compalram.manifest.o
│ │ │ │ ├── loader.compalram.manifest.p
│ │ │ │ ├── loader.compalram.map
│ │ │ │ ├── loader.compalram.size
│ │ │ │ ├── loader.highram.bin
│ │ │ │ ├── loader.highram.elf
│ │ │ │ ├── loader.highram.manifest.o
│ │ │ │ ├── loader.highram.manifest.p
│ │ │ │ ├── loader.highram.map
│ │ │ │ ├── loader.highram.size
│ │ │ │ ├── rffe_dualband_e86.c
│ │ │ │ ├── rffe_dualband_e86.lst
│ │ │ │ ├── rffe_dualband_e86.o
│ │ │ │ ├── rffe_dualband_e86.p
│ │ │ │ ├── rssi.compalram.bin
│ │ │ │ ├── rssi.compalram.elf
│ │ │ │ ├── rssi.compalram.manifest.o
│ │ │ │ ├── rssi.compalram.manifest.p
│ │ │ │ ├── rssi.compalram.map
│ │ │ │ ├── rssi.compalram.size
│ │ │ │ ├── rssi.highram.bin
│ │ │ │ ├── rssi.highram.elf
│ │ │ │ ├── rssi.highram.manifest.o
│ │ │ │ ├── rssi.highram.manifest.p
│ │ │ │ ├── rssi.highram.map
│ │ │ │ └── rssi.highram.size
│ │ │ ├── compal_e88
│ │ │ │ ├── chainload.compalram.bin
│ │ │ │ ├── chainload.compalram.elf
│ │ │ │ ├── chainload.compalram.manifest.o
│ │ │ │ ├── chainload.compalram.manifest.p
│ │ │ │ ├── chainload.compalram.map
│ │ │ │ ├── chainload.compalram.size
│ │ │ │ ├── chainload.e88flash.bin
│ │ │ │ ├── chainload.e88flash.elf
│ │ │ │ ├── chainload.e88flash.manifest.o
│ │ │ │ ├── chainload.e88flash.manifest.p
│ │ │ │ ├── chainload.e88flash.map
│ │ │ │ ├── chainload.e88flash.size
│ │ │ │ ├── chainload.e88loader.bin
│ │ │ │ ├── chainload.e88loader.elf
│ │ │ │ ├── chainload.e88loader.manifest.o
│ │ │ │ ├── chainload.e88loader.manifest.p
│ │ │ │ ├── chainload.e88loader.map
│ │ │ │ ├── chainload.e88loader.size
│ │ │ │ ├── chainload.highram.bin
│ │ │ │ ├── chainload.highram.elf
│ │ │ │ ├── chainload.highram.manifest.o
│ │ │ │ ├── chainload.highram.manifest.p
│ │ │ │ ├── chainload.highram.map
│ │ │ │ ├── chainload.highram.size
│ │ │ │ ├── compal_dsp_dump.compalram.bin
│ │ │ │ ├── compal_dsp_dump.compalram.elf
│ │ │ │ ├── compal_dsp_dump.compalram.manifest.o
│ │ │ │ ├── compal_dsp_dump.compalram.manifest.p
│ │ │ │ ├── compal_dsp_dump.compalram.map
│ │ │ │ ├── compal_dsp_dump.compalram.size
│ │ │ │ ├── compal_dsp_dump.e88flash.bin
│ │ │ │ ├── compal_dsp_dump.e88flash.elf
│ │ │ │ ├── compal_dsp_dump.e88flash.manifest.o
│ │ │ │ ├── compal_dsp_dump.e88flash.manifest.p
│ │ │ │ ├── compal_dsp_dump.e88flash.map
│ │ │ │ ├── compal_dsp_dump.e88flash.size
│ │ │ │ ├── compal_dsp_dump.e88loader.bin
│ │ │ │ ├── compal_dsp_dump.e88loader.elf
│ │ │ │ ├── compal_dsp_dump.e88loader.manifest.o
│ │ │ │ ├── compal_dsp_dump.e88loader.manifest.p
│ │ │ │ ├── compal_dsp_dump.e88loader.map
│ │ │ │ ├── compal_dsp_dump.e88loader.size
│ │ │ │ ├── compal_dsp_dump.highram.bin
│ │ │ │ ├── compal_dsp_dump.highram.elf
│ │ │ │ ├── compal_dsp_dump.highram.manifest.o
│ │ │ │ ├── compal_dsp_dump.highram.manifest.p
│ │ │ │ ├── compal_dsp_dump.highram.map
│ │ │ │ ├── compal_dsp_dump.highram.size
│ │ │ │ ├── flash.lds
│ │ │ │ ├── hello_world.compalram.bin
│ │ │ │ ├── hello_world.compalram.elf
│ │ │ │ ├── hello_world.compalram.manifest.o
│ │ │ │ ├── hello_world.compalram.manifest.p
│ │ │ │ ├── hello_world.compalram.map
│ │ │ │ ├── hello_world.compalram.size
│ │ │ │ ├── hello_world.e88flash.bin
│ │ │ │ ├── hello_world.e88flash.elf
│ │ │ │ ├── hello_world.e88flash.manifest.o
│ │ │ │ ├── hello_world.e88flash.manifest.p
│ │ │ │ ├── hello_world.e88flash.map
│ │ │ │ ├── hello_world.e88flash.size
│ │ │ │ ├── hello_world.e88loader.bin
│ │ │ │ ├── hello_world.e88loader.elf
│ │ │ │ ├── hello_world.e88loader.manifest.o
│ │ │ │ ├── hello_world.e88loader.manifest.p
│ │ │ │ ├── hello_world.e88loader.map
│ │ │ │ ├── hello_world.e88loader.size
│ │ │ │ ├── hello_world.highram.bin
│ │ │ │ ├── hello_world.highram.elf
│ │ │ │ ├── hello_world.highram.manifest.o
│ │ │ │ ├── hello_world.highram.manifest.p
│ │ │ │ ├── hello_world.highram.map
│ │ │ │ ├── hello_world.highram.size
│ │ │ │ ├── init.c
│ │ │ │ ├── init.lst
│ │ │ │ ├── init.o
│ │ │ │ ├── init.p
│ │ │ │ ├── layer1.compalram.bin
│ │ │ │ ├── layer1.compalram.elf
│ │ │ │ ├── layer1.compalram.manifest.o
│ │ │ │ ├── layer1.compalram.manifest.p
│ │ │ │ ├── layer1.compalram.map
│ │ │ │ ├── layer1.compalram.size
│ │ │ │ ├── layer1.e88flash.bin
│ │ │ │ ├── layer1.e88flash.elf
│ │ │ │ ├── layer1.e88flash.manifest.o
│ │ │ │ ├── layer1.e88flash.manifest.p
│ │ │ │ ├── layer1.e88flash.map
│ │ │ │ ├── layer1.e88flash.size
│ │ │ │ ├── layer1.e88loader.bin
│ │ │ │ ├── layer1.e88loader.elf
│ │ │ │ ├── layer1.e88loader.manifest.o
│ │ │ │ ├── layer1.e88loader.manifest.p
│ │ │ │ ├── layer1.e88loader.map
│ │ │ │ ├── layer1.e88loader.size
│ │ │ │ ├── layer1.highram.bin
│ │ │ │ ├── layer1.highram.elf
│ │ │ │ ├── layer1.highram.manifest.o
│ │ │ │ ├── layer1.highram.manifest.p
│ │ │ │ ├── layer1.highram.map
│ │ │ │ ├── layer1.highram.size
│ │ │ │ ├── LINKAGE.txt
│ │ │ │ ├── loader.compalram.bin
│ │ │ │ ├── loader.compalram.elf
│ │ │ │ ├── loader.compalram.manifest.o
│ │ │ │ ├── loader.compalram.manifest.p
│ │ │ │ ├── loader.compalram.map
│ │ │ │ ├── loader.compalram.size
│ │ │ │ ├── loader.e88flash.bin
│ │ │ │ ├── loader.e88flash.elf
│ │ │ │ ├── loader.e88flash.manifest.o
│ │ │ │ ├── loader.e88flash.manifest.p
│ │ │ │ ├── loader.e88flash.map
│ │ │ │ ├── loader.e88flash.size
│ │ │ │ ├── loader.e88loader.bin
│ │ │ │ ├── loader.e88loader.elf
│ │ │ │ ├── loader.e88loader.manifest.o
│ │ │ │ ├── loader.e88loader.manifest.p
│ │ │ │ ├── loader.e88loader.map
│ │ │ │ ├── loader.e88loader.size
│ │ │ │ ├── loader.highram.bin
│ │ │ │ ├── loader.highram.elf
│ │ │ │ ├── loader.highram.manifest.o
│ │ │ │ ├── loader.highram.manifest.p
│ │ │ │ ├── loader.highram.map
│ │ │ │ ├── loader.highram.size
│ │ │ │ ├── loader.lds
│ │ │ │ ├── MEMORY_MAP.txt
│ │ │ │ ├── rssi.compalram.bin
│ │ │ │ ├── rssi.compalram.elf
│ │ │ │ ├── rssi.compalram.manifest.o
│ │ │ │ ├── rssi.compalram.manifest.p
│ │ │ │ ├── rssi.compalram.map
│ │ │ │ ├── rssi.compalram.size
│ │ │ │ ├── rssi.e88flash.bin
│ │ │ │ ├── rssi.e88flash.elf
│ │ │ │ ├── rssi.e88flash.manifest.o
│ │ │ │ ├── rssi.e88flash.manifest.p
│ │ │ │ ├── rssi.e88flash.map
│ │ │ │ ├── rssi.e88flash.size
│ │ │ │ ├── rssi.e88loader.bin
│ │ │ │ ├── rssi.e88loader.elf
│ │ │ │ ├── rssi.e88loader.manifest.o
│ │ │ │ ├── rssi.e88loader.manifest.p
│ │ │ │ ├── rssi.e88loader.map
│ │ │ │ ├── rssi.e88loader.size
│ │ │ │ ├── rssi.highram.bin
│ │ │ │ ├── rssi.highram.elf
│ │ │ │ ├── rssi.highram.manifest.o
│ │ │ │ ├── rssi.highram.manifest.p
│ │ │ │ ├── rssi.highram.map
│ │ │ │ └── rssi.highram.size
│ │ │ ├── compal_e99
│ │ │ │ ├── chainload.compalram.bin
│ │ │ │ ├── chainload.compalram.elf
│ │ │ │ ├── chainload.compalram.manifest.o
│ │ │ │ ├── chainload.compalram.manifest.p
│ │ │ │ ├── chainload.compalram.map
│ │ │ │ ├── chainload.compalram.size
│ │ │ │ ├── chainload.highram.bin
│ │ │ │ ├── chainload.highram.elf
│ │ │ │ ├── chainload.highram.manifest.o
│ │ │ │ ├── chainload.highram.manifest.p
│ │ │ │ ├── chainload.highram.map
│ │ │ │ ├── chainload.highram.size
│ │ │ │ ├── compal_dsp_dump.compalram.bin
│ │ │ │ ├── compal_dsp_dump.compalram.elf
│ │ │ │ ├── compal_dsp_dump.compalram.manifest.o
│ │ │ │ ├── compal_dsp_dump.compalram.manifest.p
│ │ │ │ ├── compal_dsp_dump.compalram.map
│ │ │ │ ├── compal_dsp_dump.compalram.size
│ │ │ │ ├── compal_dsp_dump.highram.bin
│ │ │ │ ├── compal_dsp_dump.highram.elf
│ │ │ │ ├── compal_dsp_dump.highram.manifest.o
│ │ │ │ ├── compal_dsp_dump.highram.manifest.p
│ │ │ │ ├── compal_dsp_dump.highram.map
│ │ │ │ ├── compal_dsp_dump.highram.size
│ │ │ │ ├── hello_world.compalram.bin
│ │ │ │ ├── hello_world.compalram.elf
│ │ │ │ ├── hello_world.compalram.manifest.o
│ │ │ │ ├── hello_world.compalram.manifest.p
│ │ │ │ ├── hello_world.compalram.map
│ │ │ │ ├── hello_world.compalram.size
│ │ │ │ ├── hello_world.highram.bin
│ │ │ │ ├── hello_world.highram.elf
│ │ │ │ ├── hello_world.highram.manifest.o
│ │ │ │ ├── hello_world.highram.manifest.p
│ │ │ │ ├── hello_world.highram.map
│ │ │ │ ├── hello_world.highram.size
│ │ │ │ ├── init.c
│ │ │ │ ├── init.lst
│ │ │ │ ├── init.o
│ │ │ │ ├── init.p
│ │ │ │ ├── layer1.compalram.bin
│ │ │ │ ├── layer1.compalram.elf
│ │ │ │ ├── layer1.compalram.manifest.o
│ │ │ │ ├── layer1.compalram.manifest.p
│ │ │ │ ├── layer1.compalram.map
│ │ │ │ ├── layer1.compalram.size
│ │ │ │ ├── layer1.highram.bin
│ │ │ │ ├── layer1.highram.elf
│ │ │ │ ├── layer1.highram.manifest.o
│ │ │ │ ├── layer1.highram.manifest.p
│ │ │ │ ├── layer1.highram.map
│ │ │ │ ├── layer1.highram.size
│ │ │ │ ├── loader.compalram.bin
│ │ │ │ ├── loader.compalram.elf
│ │ │ │ ├── loader.compalram.manifest.o
│ │ │ │ ├── loader.compalram.manifest.p
│ │ │ │ ├── loader.compalram.map
│ │ │ │ ├── loader.compalram.size
│ │ │ │ ├── loader.highram.bin
│ │ │ │ ├── loader.highram.elf
│ │ │ │ ├── loader.highram.manifest.o
│ │ │ │ ├── loader.highram.manifest.p
│ │ │ │ ├── loader.highram.map
│ │ │ │ ├── loader.highram.size
│ │ │ │ ├── rssi.compalram.bin
│ │ │ │ ├── rssi.compalram.elf
│ │ │ │ ├── rssi.compalram.manifest.o
│ │ │ │ ├── rssi.compalram.manifest.p
│ │ │ │ ├── rssi.compalram.map
│ │ │ │ ├── rssi.compalram.size
│ │ │ │ ├── rssi.highram.bin
│ │ │ │ ├── rssi.highram.elf
│ │ │ │ ├── rssi.highram.manifest.o
│ │ │ │ ├── rssi.highram.manifest.p
│ │ │ │ ├── rssi.highram.map
│ │ │ │ └── rssi.highram.size
│ │ │ ├── gta0x
│ │ │ │ ├── chainload.highram.bin
│ │ │ │ ├── chainload.highram.elf
│ │ │ │ ├── chainload.highram.manifest.o
│ │ │ │ ├── chainload.highram.manifest.p
│ │ │ │ ├── chainload.highram.map
│ │ │ │ ├── chainload.highram.size
│ │ │ │ ├── compal_dsp_dump.highram.bin
│ │ │ │ ├── compal_dsp_dump.highram.elf
│ │ │ │ ├── compal_dsp_dump.highram.manifest.o
│ │ │ │ ├── compal_dsp_dump.highram.manifest.p
│ │ │ │ ├── compal_dsp_dump.highram.map
│ │ │ │ ├── compal_dsp_dump.highram.size
│ │ │ │ ├── hello_world.highram.bin
│ │ │ │ ├── hello_world.highram.elf
│ │ │ │ ├── hello_world.highram.manifest.o
│ │ │ │ ├── hello_world.highram.manifest.p
│ │ │ │ ├── hello_world.highram.map
│ │ │ │ ├── hello_world.highram.size
│ │ │ │ ├── init.c
│ │ │ │ ├── init.lst
│ │ │ │ ├── init.o
│ │ │ │ ├── init.p
│ │ │ │ ├── layer1.highram.bin
│ │ │ │ ├── layer1.highram.elf
│ │ │ │ ├── layer1.highram.manifest.o
│ │ │ │ ├── layer1.highram.manifest.p
│ │ │ │ ├── layer1.highram.map
│ │ │ │ ├── layer1.highram.size
│ │ │ │ ├── loader.highram.bin
│ │ │ │ ├── loader.highram.elf
│ │ │ │ ├── loader.highram.manifest.o
│ │ │ │ ├── loader.highram.manifest.p
│ │ │ │ ├── loader.highram.map
│ │ │ │ ├── loader.highram.size
│ │ │ │ ├── rffe_gta0x_triband.c
│ │ │ │ ├── rffe_gta0x_triband.lst
│ │ │ │ ├── rffe_gta0x_triband.o
│ │ │ │ ├── rffe_gta0x_triband.p
│ │ │ │ ├── rf_power.c
│ │ │ │ ├── rf_power.lst
│ │ │ │ ├── rf_power.o
│ │ │ │ ├── rf_power.p
│ │ │ │ ├── rssi.highram.bin
│ │ │ │ ├── rssi.highram.elf
│ │ │ │ ├── rssi.highram.manifest.o
│ │ │ │ ├── rssi.highram.manifest.p
│ │ │ │ ├── rssi.highram.map
│ │ │ │ └── rssi.highram.size
│ │ │ ├── manifest.c
│ │ │ ├── mediatek
│ │ │ │ ├── macros.S
│ │ │ │ ├── ram.lds
│ │ │ │ ├── start.ram.lst
│ │ │ │ ├── start.ram.o
│ │ │ │ ├── start.ram.p
│ │ │ │ ├── start.ram.S
│ │ │ │ ├── uart.c
│ │ │ │ ├── uart.lst
│ │ │ │ ├── uart.o
│ │ │ │ └── uart.p
│ │ │ ├── mt62xx
│ │ │ │ ├── init.c
│ │ │ │ ├── init.lst
│ │ │ │ ├── init.o
│ │ │ │ ├── init.p
│ │ │ │ ├── loader_mtk.mtkram.bin
│ │ │ │ ├── loader_mtk.mtkram.elf
│ │ │ │ ├── loader_mtk.mtkram.manifest.o
│ │ │ │ ├── loader_mtk.mtkram.manifest.p
│ │ │ │ ├── loader_mtk.mtkram.map
│ │ │ │ └── loader_mtk.mtkram.size
│ │ │ ├── pirelli_dpl10
│ │ │ │ ├── chainload.highram.bin
│ │ │ │ ├── chainload.highram.elf
│ │ │ │ ├── chainload.highram.manifest.o
│ │ │ │ ├── chainload.highram.manifest.p
│ │ │ │ ├── chainload.highram.map
│ │ │ │ ├── chainload.highram.size
│ │ │ │ ├── compal_dsp_dump.highram.bin
│ │ │ │ ├── compal_dsp_dump.highram.elf
│ │ │ │ ├── compal_dsp_dump.highram.manifest.o
│ │ │ │ ├── compal_dsp_dump.highram.manifest.p
│ │ │ │ ├── compal_dsp_dump.highram.map
│ │ │ │ ├── compal_dsp_dump.highram.size
│ │ │ │ ├── hello_world.highram.bin
│ │ │ │ ├── hello_world.highram.elf
│ │ │ │ ├── hello_world.highram.manifest.o
│ │ │ │ ├── hello_world.highram.manifest.p
│ │ │ │ ├── hello_world.highram.map
│ │ │ │ ├── hello_world.highram.size
│ │ │ │ ├── init.c
│ │ │ │ ├── init.lst
│ │ │ │ ├── init.o
│ │ │ │ ├── init.p
│ │ │ │ ├── layer1.highram.bin
│ │ │ │ ├── layer1.highram.elf
│ │ │ │ ├── layer1.highram.manifest.o
│ │ │ │ ├── layer1.highram.manifest.p
│ │ │ │ ├── layer1.highram.map
│ │ │ │ ├── layer1.highram.size
│ │ │ │ ├── loader.highram.bin
│ │ │ │ ├── loader.highram.elf
│ │ │ │ ├── loader.highram.manifest.o
│ │ │ │ ├── loader.highram.manifest.p
│ │ │ │ ├── loader.highram.map
│ │ │ │ ├── loader.highram.size
│ │ │ │ ├── rffe_dpl10_triband.c
│ │ │ │ ├── rffe_dpl10_triband.lst
│ │ │ │ ├── rffe_dpl10_triband.o
│ │ │ │ ├── rffe_dpl10_triband.p
│ │ │ │ ├── rf_power.c
│ │ │ │ ├── rf_power.lst
│ │ │ │ ├── rf_power.o
│ │ │ │ ├── rf_power.p
│ │ │ │ ├── rssi.highram.bin
│ │ │ │ ├── rssi.highram.elf
│ │ │ │ ├── rssi.highram.manifest.o
│ │ │ │ ├── rssi.highram.manifest.p
│ │ │ │ ├── rssi.highram.map
│ │ │ │ └── rssi.highram.size
│ │ │ └── se_j100
│ │ │ ├── chainload.compalram.bin
│ │ │ ├── chainload.compalram.elf
│ │ │ ├── chainload.compalram.manifest.o
│ │ │ ├── chainload.compalram.manifest.p
│ │ │ ├── chainload.compalram.map
│ │ │ ├── chainload.compalram.size
│ │ │ ├── chainload.highram.bin
│ │ │ ├── chainload.highram.elf
│ │ │ ├── chainload.highram.manifest.o
│ │ │ ├── chainload.highram.manifest.p
│ │ │ ├── chainload.highram.map
│ │ │ ├── chainload.highram.size
│ │ │ ├── compal_dsp_dump.compalram.bin
│ │ │ ├── compal_dsp_dump.compalram.elf
│ │ │ ├── compal_dsp_dump.compalram.manifest.o
│ │ │ ├── compal_dsp_dump.compalram.manifest.p
│ │ │ ├── compal_dsp_dump.compalram.map
│ │ │ ├── compal_dsp_dump.compalram.size
│ │ │ ├── compal_dsp_dump.highram.bin
│ │ │ ├── compal_dsp_dump.highram.elf
│ │ │ ├── compal_dsp_dump.highram.manifest.o
│ │ │ ├── compal_dsp_dump.highram.manifest.p
│ │ │ ├── compal_dsp_dump.highram.map
│ │ │ ├── compal_dsp_dump.highram.size
│ │ │ ├── hello_world.compalram.bin
│ │ │ ├── hello_world.compalram.elf
│ │ │ ├── hello_world.compalram.manifest.o
│ │ │ ├── hello_world.compalram.manifest.p
│ │ │ ├── hello_world.compalram.map
│ │ │ ├── hello_world.compalram.size
│ │ │ ├── hello_world.highram.bin
│ │ │ ├── hello_world.highram.elf
│ │ │ ├── hello_world.highram.manifest.o
│ │ │ ├── hello_world.highram.manifest.p
│ │ │ ├── hello_world.highram.map
│ │ │ ├── hello_world.highram.size
│ │ │ ├── init.c
│ │ │ ├── init.lst
│ │ │ ├── init.o
│ │ │ ├── init.p
│ │ │ ├── layer1.compalram.bin
│ │ │ ├── layer1.compalram.elf
│ │ │ ├── layer1.compalram.manifest.o
│ │ │ ├── layer1.compalram.manifest.p
│ │ │ ├── layer1.compalram.map
│ │ │ ├── layer1.compalram.size
│ │ │ ├── layer1.highram.bin
│ │ │ ├── layer1.highram.elf
│ │ │ ├── layer1.highram.manifest.o
│ │ │ ├── layer1.highram.manifest.p
│ │ │ ├── layer1.highram.map
│ │ │ ├── layer1.highram.size
│ │ │ ├── loader.compalram.bin
│ │ │ ├── loader.compalram.elf
│ │ │ ├── loader.compalram.manifest.o
│ │ │ ├── loader.compalram.manifest.p
│ │ │ ├── loader.compalram.map
│ │ │ ├── loader.compalram.size
│ │ │ ├── loader.highram.bin
│ │ │ ├── loader.highram.elf
│ │ │ ├── loader.highram.manifest.o
│ │ │ ├── loader.highram.manifest.p
│ │ │ ├── loader.highram.map
│ │ │ ├── loader.highram.size
│ │ │ ├── rssi.compalram.bin
│ │ │ ├── rssi.compalram.elf
│ │ │ ├── rssi.compalram.manifest.o
│ │ │ ├── rssi.compalram.manifest.p
│ │ │ ├── rssi.compalram.map
│ │ │ ├── rssi.compalram.size
│ │ │ ├── rssi.highram.bin
│ │ │ ├── rssi.highram.elf
│ │ │ ├── rssi.highram.manifest.o
│ │ │ ├── rssi.highram.manifest.p
│ │ │ ├── rssi.highram.map
│ │ │ └── rssi.highram.size
│ │ ├── calypso
│ │ │ ├── arm.c
│ │ │ ├── arm.lst
│ │ │ ├── arm.o
│ │ │ ├── arm.p
│ │ │ ├── backlight.c
│ │ │ ├── backlight.lst
│ │ │ ├── backlight.o
│ │ │ ├── backlight.p
│ │ │ ├── buzzer.c
│ │ │ ├── buzzer.lst
│ │ │ ├── buzzer.o
│ │ │ ├── buzzer.p
│ │ │ ├── clock.c
│ │ │ ├── clock.lst
│ │ │ ├── clock.o
│ │ │ ├── clock.p
│ │ │ ├── dma.c
│ │ │ ├── dma.lst
│ │ │ ├── dma.o
│ │ │ ├── dma.p
│ │ │ ├── dsp_bootcode.c
│ │ │ ├── dsp.c
│ │ │ ├── dsp_dumpcode.c
│ │ │ ├── dsp.lst
│ │ │ ├── dsp.o
│ │ │ ├── dsp.p
│ │ │ ├── dsp_params.c
│ │ │ ├── dsp_sniffcode.c
│ │ │ ├── du.c
│ │ │ ├── du.lst
│ │ │ ├── du.o
│ │ │ ├── du.p
│ │ │ ├── i2c.c
│ │ │ ├── i2c.lst
│ │ │ ├── i2c.o
│ │ │ ├── i2c.p
│ │ │ ├── irq.c
│ │ │ ├── irq.lst
│ │ │ ├── irq.o
│ │ │ ├── irq.p
│ │ │ ├── keypad.c
│ │ │ ├── keypad.lst
│ │ │ ├── keypad.o
│ │ │ ├── keypad.p
│ │ │ ├── libcalypso.a
│ │ │ ├── Makefile
│ │ │ ├── misc.c
│ │ │ ├── misc.lst
│ │ │ ├── misc.o
│ │ │ ├── misc.p
│ │ │ ├── rtc.c
│ │ │ ├── rtc.lst
│ │ │ ├── rtc.o
│ │ │ ├── rtc.p
│ │ │ ├── sim.c
│ │ │ ├── sim.lst
│ │ │ ├── sim.o
│ │ │ ├── sim.p
│ │ │ ├── spi.c
│ │ │ ├── spi.lst
│ │ │ ├── spi.o
│ │ │ ├── spi.p
│ │ │ ├── timer.c
│ │ │ ├── timer.lst
│ │ │ ├── timer.o
│ │ │ ├── timer.p
│ │ │ ├── tpu.c
│ │ │ ├── tpu.lst
│ │ │ ├── tpu.o
│ │ │ ├── tpu.p
│ │ │ ├── tsp.c
│ │ │ ├── tsp.lst
│ │ │ ├── tsp.o
│ │ │ ├── tsp.p
│ │ │ ├── uart.c
│ │ │ ├── uart.lst
│ │ │ ├── uart.o
│ │ │ ├── uart.p
│ │ │ ├── uwire.c
│ │ │ ├── uwire.lst
│ │ │ ├── uwire.o
│ │ │ └── uwire.p
│ │ ├── comm
│ │ │ ├── libcomm.a
│ │ │ ├── Makefile
│ │ │ ├── msgb.c
│ │ │ ├── msgb.lst
│ │ │ ├── msgb.o
│ │ │ ├── msgb.p
│ │ │ ├── sercomm.c
│ │ │ ├── sercomm_cons.c
│ │ │ ├── sercomm_cons.lst
│ │ │ ├── sercomm_cons.o
│ │ │ ├── sercomm_cons.p
│ │ │ ├── sercomm.lst
│ │ │ ├── sercomm.o
│ │ │ ├── sercomm.p
│ │ │ ├── timer.c
│ │ │ ├── timer.lst
│ │ │ ├── timer.o
│ │ │ └── timer.p
│ │ ├── COPYING
│ │ ├── fb
│ │ │ ├── 4x6.c
│ │ │ ├── 5x8.c
│ │ │ ├── c64.c
│ │ │ ├── c64.lst
│ │ │ ├── c64.o
│ │ │ ├── c64.p
│ │ │ ├── fb_bw8.c
│ │ │ ├── fb_bw8.lst
│ │ │ ├── fb_bw8.o
│ │ │ ├── fb_bw8.p
│ │ │ ├── fb_dummy.c
│ │ │ ├── fb_dummy.lst
│ │ │ ├── fb_dummy.o
│ │ │ ├── fb_dummy.p
│ │ │ ├── fb_rgb332.c
│ │ │ ├── fb_rgb332.lst
│ │ │ ├── fb_rgb332.o
│ │ │ ├── fb_rgb332.p
│ │ │ ├── fb_s6b33b1x.c
│ │ │ ├── fb_s6b33b1x.lst
│ │ │ ├── fb_s6b33b1x.o
│ │ │ ├── fb_s6b33b1x.p
│ │ │ ├── fb_ssd1783.c
│ │ │ ├── fb_ssd1783.lst
│ │ │ ├── fb_ssd1783.o
│ │ │ ├── fb_ssd1783.p
│ │ │ ├── fb_ssd1963.c
│ │ │ ├── fb_ssd1963.lst
│ │ │ ├── fb_ssd1963.o
│ │ │ ├── fb_ssd1963.p
│ │ │ ├── fb_st7558.c
│ │ │ ├── fb_st7558.lst
│ │ │ ├── fb_st7558.o
│ │ │ ├── fb_st7558.p
│ │ │ ├── fb_td014.c
│ │ │ ├── fb_td014.lst
│ │ │ ├── fb_td014.o
│ │ │ ├── fb_td014.p
│ │ │ ├── font.c
│ │ │ ├── font.lst
│ │ │ ├── font.o
│ │ │ ├── font.p
│ │ │ ├── framebuffer.c
│ │ │ ├── framebuffer.lst
│ │ │ ├── framebuffer.o
│ │ │ ├── framebuffer.p
│ │ │ ├── helvB08.c
│ │ │ ├── helvB14.c
│ │ │ ├── helvB14.lst
│ │ │ ├── helvB14.o
│ │ │ ├── helvB14.p
│ │ │ ├── helvB24.c
│ │ │ ├── helvR08.c
│ │ │ ├── helvR08.lst
│ │ │ ├── helvR08.o
│ │ │ ├── helvR08.p
│ │ │ ├── helvR14.c
│ │ │ ├── helvR24.c
│ │ │ ├── symbols.c
│ │ │ ├── symbols.lst
│ │ │ ├── symbols.o
│ │ │ └── symbols.p
│ │ ├── flash
│ │ │ ├── cfi_flash.c
│ │ │ ├── cfi_flash.lst
│ │ │ ├── cfi_flash.o
│ │ │ └── cfi_flash.p
│ │ ├── include
│ │ │ ├── abb
│ │ │ │ └── twl3025.h
│ │ │ ├── arm.h
│ │ │ ├── arpa
│ │ │ │ └── inet.h
│ │ │ ├── asm
│ │ │ │ ├── assembler.h
│ │ │ │ ├── atomic.h
│ │ │ │ ├── bitops.h
│ │ │ │ ├── div64.h
│ │ │ │ ├── linkage.h
│ │ │ │ ├── ptrace.h
│ │ │ │ ├── swab.h
│ │ │ │ └── system.h
│ │ │ ├── battery
│ │ │ │ ├── battery.h
│ │ │ │ └── compal_e88.h
│ │ │ ├── board.h
│ │ │ ├── byteorder.h
│ │ │ ├── calypso
│ │ │ │ ├── backlight.h
│ │ │ │ ├── buzzer.h
│ │ │ │ ├── clock.h
│ │ │ │ ├── dma.h
│ │ │ │ ├── dsp_api.h
│ │ │ │ ├── dsp.h
│ │ │ │ ├── du.h
│ │ │ │ ├── irq.h
│ │ │ │ ├── l1_environment.h
│ │ │ │ ├── misc.h
│ │ │ │ ├── rtc.h
│ │ │ │ ├── sim.h
│ │ │ │ ├── timer.h
│ │ │ │ ├── tpu.h
│ │ │ │ └── tsp.h
│ │ │ ├── comm
│ │ │ │ ├── msgb.h
│ │ │ │ ├── sercomm_cons.h
│ │ │ │ ├── sercomm.h
│ │ │ │ └── timer.h
│ │ │ ├── console.h
│ │ │ ├── ctors.h
│ │ │ ├── ctype.h
│ │ │ ├── debug.h
│ │ │ ├── defines.h
│ │ │ ├── delay.h
│ │ │ ├── fb
│ │ │ │ ├── fb_bw8.h
│ │ │ │ ├── fb_rgb332.h
│ │ │ │ ├── font.h
│ │ │ │ └── framebuffer.h
│ │ │ ├── flash
│ │ │ │ └── cfi_flash.h
│ │ │ ├── i2c.h
│ │ │ ├── inttypes.h
│ │ │ ├── keypad.h
│ │ │ ├── layer1
│ │ │ │ ├── afc.h
│ │ │ │ ├── agc.h
│ │ │ │ ├── apc.h
│ │ │ │ ├── async.h
│ │ │ │ ├── avg.h
│ │ │ │ ├── l23_api.h
│ │ │ │ ├── mframe_sched.h
│ │ │ │ ├── prim.h
│ │ │ │ ├── rfch.h
│ │ │ │ ├── sched_gsmtime.h
│ │ │ │ ├── sync.h
│ │ │ │ ├── tdma_sched.h
│ │ │ │ ├── toa.h
│ │ │ │ └── tpu_window.h
│ │ │ ├── manifest.h
│ │ │ ├── memory.h
│ │ │ ├── mtk
│ │ │ │ ├── bfe.h
│ │ │ │ ├── bpi.h
│ │ │ │ ├── bsi.h
│ │ │ │ ├── emi.h
│ │ │ │ ├── mt6139.h
│ │ │ │ ├── mt6235.h
│ │ │ │ ├── mt6235_sciphone_g2.h
│ │ │ │ ├── system.h
│ │ │ │ └── tdma_timer.h
│ │ │ ├── rf
│ │ │ │ └── trf6151.h
│ │ │ ├── rffe.h
│ │ │ ├── spi.h
│ │ │ ├── stdint.h
│ │ │ ├── stdio.h
│ │ │ ├── string.h
│ │ │ ├── swab.h
│ │ │ ├── uart.h
│ │ │ └── uwire.h
│ │ ├── layer1
│ │ │ ├── afc.c
│ │ │ ├── afc.lst
│ │ │ ├── afc.o
│ │ │ ├── afc.p
│ │ │ ├── agc.c
│ │ │ ├── agc.lst
│ │ │ ├── agc.o
│ │ │ ├── agc.p
│ │ │ ├── apc.c
│ │ │ ├── apc.lst
│ │ │ ├── apc.o
│ │ │ ├── apc.p
│ │ │ ├── async.c
│ │ │ ├── async.lst
│ │ │ ├── async.o
│ │ │ ├── async.p
│ │ │ ├── avg.c
│ │ │ ├── avg.lst
│ │ │ ├── avg.o
│ │ │ ├── avg.p
│ │ │ ├── init.c
│ │ │ ├── init.lst
│ │ │ ├── init.o
│ │ │ ├── init.p
│ │ │ ├── l23_api.c
│ │ │ ├── l23_api.lst
│ │ │ ├── l23_api.o
│ │ │ ├── l23_api.p
│ │ │ ├── liblayer1.a
│ │ │ ├── Makefile
│ │ │ ├── mframe_sched.c
│ │ │ ├── mframe_sched.lst
│ │ │ ├── mframe_sched.o
│ │ │ ├── mframe_sched.p
│ │ │ ├── prim_fbsb.c
│ │ │ ├── prim_fbsb.lst
│ │ │ ├── prim_fbsb.o
│ │ │ ├── prim_fbsb.p
│ │ │ ├── prim_freq.c
│ │ │ ├── prim_freq.lst
│ │ │ ├── prim_freq.o
│ │ │ ├── prim_freq.p
│ │ │ ├── prim_pm.c
│ │ │ ├── prim_pm.lst
│ │ │ ├── prim_pm.o
│ │ │ ├── prim_pm.p
│ │ │ ├── prim_rach.c
│ │ │ ├── prim_rach.lst
│ │ │ ├── prim_rach.o
│ │ │ ├── prim_rach.p
│ │ │ ├── prim_rx_nb.c
│ │ │ ├── prim_rx_nb.lst
│ │ │ ├── prim_rx_nb.o
│ │ │ ├── prim_rx_nb.p
│ │ │ ├── prim_sniff.c
│ │ │ ├── prim_sniff.lst
│ │ │ ├── prim_sniff.o
│ │ │ ├── prim_sniff.p
│ │ │ ├── prim_tch.c
│ │ │ ├── prim_tch.lst
│ │ │ ├── prim_tch.o
│ │ │ ├── prim_tch.p
│ │ │ ├── prim_tx_nb.c
│ │ │ ├── prim_tx_nb.lst
│ │ │ ├── prim_tx_nb.o
│ │ │ ├── prim_tx_nb.p
│ │ │ ├── prim_utils.c
│ │ │ ├── prim_utils.lst
│ │ │ ├── prim_utils.o
│ │ │ ├── prim_utils.p
│ │ │ ├── rfch.c
│ │ │ ├── rfch.lst
│ │ │ ├── rfch.o
│ │ │ ├── rfch.p
│ │ │ ├── sched_gsmtime.c
│ │ │ ├── sched_gsmtime.lst
│ │ │ ├── sched_gsmtime.o
│ │ │ ├── sched_gsmtime.p
│ │ │ ├── sync.c
│ │ │ ├── sync.lst
│ │ │ ├── sync.o
│ │ │ ├── sync.p
│ │ │ ├── tdma_sched.c
│ │ │ ├── tdma_sched.lst
│ │ │ ├── tdma_sched.o
│ │ │ ├── tdma_sched.p
│ │ │ ├── toa.c
│ │ │ ├── toa.lst
│ │ │ ├── toa.o
│ │ │ ├── toa.p
│ │ │ ├── tpu_window.c
│ │ │ ├── tpu_window.lst
│ │ │ ├── tpu_window.o
│ │ │ └── tpu_window.p
│ │ ├── lib
│ │ │ ├── bitops.h
│ │ │ ├── changebit.lst
│ │ │ ├── changebit.o
│ │ │ ├── changebit.p
│ │ │ ├── changebit.S
│ │ │ ├── clearbit.lst
│ │ │ ├── clearbit.o
│ │ │ ├── clearbit.p
│ │ │ ├── clearbit.S
│ │ │ ├── console.c
│ │ │ ├── console.lst
│ │ │ ├── console.o
│ │ │ ├── console.p
│ │ │ ├── copy_template.S
│ │ │ ├── ctors.c
│ │ │ ├── ctors.lst
│ │ │ ├── ctors.o
│ │ │ ├── ctors.p
│ │ │ ├── ctype.c
│ │ │ ├── ctype.lst
│ │ │ ├── ctype.o
│ │ │ ├── ctype.p
│ │ │ ├── delay.c
│ │ │ ├── delay.lst
│ │ │ ├── delay.o
│ │ │ ├── delay.p
│ │ │ ├── div64.lst
│ │ │ ├── div64.o
│ │ │ ├── div64.p
│ │ │ ├── div64.S
│ │ │ ├── lib1funcs.lst
│ │ │ ├── lib1funcs.o
│ │ │ ├── lib1funcs.p
│ │ │ ├── lib1funcs.S
│ │ │ ├── libmini.a
│ │ │ ├── Makefile
│ │ │ ├── memcpy.lst
│ │ │ ├── memcpy.o
│ │ │ ├── memcpy.p
│ │ │ ├── memcpy.S
│ │ │ ├── memset.lst
│ │ │ ├── memset.o
│ │ │ ├── memset.p
│ │ │ ├── memset.S
│ │ │ ├── printf.c
│ │ │ ├── printf.lst
│ │ │ ├── printf.o
│ │ │ ├── printf.p
│ │ │ ├── setbit.lst
│ │ │ ├── setbit.o
│ │ │ ├── setbit.p
│ │ │ ├── setbit.S
│ │ │ ├── string.c
│ │ │ ├── string.lst
│ │ │ ├── string.o
│ │ │ ├── string.p
│ │ │ ├── testchangebit.lst
│ │ │ ├── testchangebit.o
│ │ │ ├── testchangebit.p
│ │ │ ├── testchangebit.S
│ │ │ ├── testclearbit.lst
│ │ │ ├── testclearbit.o
│ │ │ ├── testclearbit.p
│ │ │ ├── testclearbit.S
│ │ │ ├── testsetbit.lst
│ │ │ ├── testsetbit.o
│ │ │ ├── testsetbit.p
│ │ │ ├── testsetbit.S
│ │ │ ├── vsprintf.c
│ │ │ ├── vsprintf.lst
│ │ │ ├── vsprintf.o
│ │ │ └── vsprintf.p
│ │ ├── Makefile
│ │ ├── Makefile.inc
│ │ ├── Makefile.mtk
│ │ └── rf
│ │ ├── mt6139.c
│ │ ├── trf6151.c
│ │ ├── trf6151.lst
│ │ ├── trf6151.o
│ │ └── trf6151.p
│ └── ui-experiment
│ ├── display.h
│ ├── font.h
│ ├── image.h
│ ├── menu.h
│ ├── pixel.h
│ ├── png2tiny.c
│ ├── README
│ ├── screen.h
│ ├── sdl.c
│ ├── sdl.h
│ └── ui.h
├── target_dsp
│ └── calypso
│ ├── bin2cfile.py
│ ├── bl_stage3.S
│ ├── dsp_dump.lds
│ ├── dsp_patch.lds
│ ├── dsp_sniff.S
│ ├── dump2coff.py
│ ├── ida
│ │ ├── ndb.h
│ │ ├── README.txt
│ │ └── tms320c54.cfg
│ └── Makefile
└── wireshark
├── gsmtap.patch
└── smscb.patch
160 directories, 1911 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论