资源说明:SIM868 SDK 二次开发
├── SIM868M32_BT.bat
├── build
│ ├── Makefile
│ ├── app_build.mak
│ ├── option.mak
│ ├── user.mak
│ ├── user_1.mak
│ ├── user_2.mak
│ └── winmake
│ ├── appgen.exe
│ ├── cmp.exe
│ ├── cp.exe
│ ├── diff.exe
│ ├── gdate.exe
│ ├── gecho.exe
│ ├── ginstall.exe
│ ├── grep.exe
│ ├── make.exe
│ ├── mv.exe
│ ├── patch.exe
│ ├── pwd.exe
│ ├── rm.exe
│ ├── upx.exe
│ └── zip.exe
├── core
│ ├── SIM868M32_BT_EAT.cfg
│ ├── SIM868M32_BT_EMBEDDEDAT
│ │ ├── 1418B02SIM868M32_BT_EAT.cfg
│ │ ├── BPLGUInfoCustomAppSrcP_MT6261_S00_1418B02SIM868M32_BT_EAT
│ │ ├── COREAPI
│ │ ├── EXT_BOOTLOADER
│ │ ├── ROM
│ │ ├── ROM_VIVA
│ │ ├── SIM868M32_BT_EAT.cfg
│ │ ├── SIM868M32_BT_EAT_BOOTLOADER.bin
│ │ ├── SIM868M32_BT_EAT_PCB01_gprs_MT6261_S00.elf
│ │ ├── SIM868M32_BT_EAT_PCB01_gprs_MT6261_S00.sym
│ │ ├── SIM868M32_BT_EAT_PCB01_gprs_MT6261_S00_limit.sym
│ │ ├── SIM868M32_BT_EAT_core_only.cfg
│ │ ├── VIVA
│ │ ├── app
│ │ └── appnull
│ ├── core.lib
│ ├── inc
│ │ ├── app_interface.h
│ │ ├── eat_audio.h
│ │ ├── eat_clib_define.h
│ │ ├── eat_flash.h
│ │ ├── eat_fs.h
│ │ ├── eat_fs_errcode.h
│ │ ├── eat_fs_type.h
│ │ ├── eat_gps.h
│ │ ├── eat_interface.h
│ │ ├── eat_mem.h
│ │ ├── eat_modem.h
│ │ ├── eat_network.h
│ │ ├── eat_nvram.h
│ │ ├── eat_other.h
│ │ ├── eat_periphery.h
│ │ ├── eat_sim.h
│ │ ├── eat_soft_sim.h
│ │ ├── eat_timer.h
│ │ ├── eat_type.h
│ │ └── eat_uart.h
│ └── scat_SIM868M32_BT.txt
├── demo
│ ├── adc
│ │ ├── Makefile
│ │ ├── app_demo_adc.c
│ │ ├── app_demo_adc.h
│ │ └── main.c
│ ├── application
│ │ ├── Makefile
│ │ ├── Readme.txt
│ │ ├── app_at_cmd_envelope.c
│ │ ├── app_at_cmd_envelope.h
│ │ ├── app_custom.c
│ │ ├── app_custom.h
│ │ ├── app_sms.c
│ │ ├── app_sms.h
│ │ ├── app_tcpip.c
│ │ ├── app_tcpip.h
│ │ ├── app_utility.c
│ │ ├── app_utility.h
│ │ ├── main.c
│ │ └── platform.h
│ ├── audio
│ │ ├── Makefile
│ │ ├── app_demo_audio.c
│ │ └── audio_resource.c
│ ├── flash
│ │ ├── Makefile
│ │ ├── app.h
│ │ └── app_demo_flash.c
│ ├── fs
│ │ ├── Makefile
│ │ ├── app_demo_fs.c
│ │ └── main.c
│ ├── ftp
│ │ ├── app_at_cmd_envelope.c
│ │ ├── app_at_cmd_envelope.h
│ │ ├── app_demo_ftp.c
│ │ ├── app_demo_ftp.h
│ │ ├── main.c
│ │ └── makefile
│ ├── gpio
│ │ ├── Makefile
│ │ └── app_demo_gpio.c
│ ├── gps
│ │ ├── Makefile
│ │ └── app_demo_gps.c
│ ├── hspi
│ │ ├── app_demo_hspi.c
│ │ └── makefile
│ ├── http
│ │ ├── app_at_cmd_envelope.c
│ │ ├── app_at_cmd_envelope.h
│ │ ├── app_demo_http.c
│ │ ├── app_demo_http.h
│ │ ├── main.c
│ │ └── makefile
│ ├── i2c
│ │ ├── Makefile
│ │ └── app_demo_i2c.c
│ ├── inputmethod
│ │ ├── IME_VC_demo
│ │ │ ├── IMETest.cpp
│ │ │ ├── SG_Common_Public.h
│ │ │ ├── SG_English_Public.cpp
│ │ │ ├── Sogou_IME_CNS.lib
│ │ │ ├── Sogou_IME_ENG.lib
│ │ │ ├── WD_Def.h
│ │ │ └── WD_PublicIme.cpp
│ │ ├── app_demo_inputmethod.c
│ │ └── app_demo_inputmethod_self.c
│ ├── interrupt
│ │ ├── Makefile
│ │ └── app_demo_eint.c
│ ├── key
│ │ ├── Makefile
│ │ ├── app_demo_key_main.c
│ │ ├── key.c
│ │ └── key.h
│ ├── other
│ │ ├── app_demo_other.c
│ │ └── makefile
│ ├── pwm
│ │ └── app_demo_pwm.c
│ ├── sim
│ │ ├── app_demo_sim.c
│ │ └── makefile
│ ├── sms
│ │ ├── app_at_cmd_envelope.c
│ │ ├── app_at_cmd_envelope.h
│ │ ├── app_demo_sms.c
│ │ ├── app_sms_pdu_decode.c
│ │ ├── app_sms_pdu_decode.h
│ │ ├── main.c
│ │ └── makefile
│ ├── smsapi
│ │ ├── app_demo_sms.c
│ │ └── makefile
│ ├── spi
│ │ ├── LcdDataFont.c
│ │ ├── LcdDataFont.h
│ │ ├── LcdDisplay.c
│ │ ├── LcdDisplay.h
│ │ ├── app_demo_spi.c
│ │ ├── lcd.c
│ │ └── lcd.h
│ ├── system
│ │ ├── Makefile
│ │ └── app_demo_sys.c
│ ├── tcpip
│ │ ├── app_at_cmd_envelope.c
│ │ ├── app_at_cmd_envelope.h
│ │ ├── app_demo_tcpip_main.c
│ │ └── makefile
│ ├── tcptest
│ │ ├── Makefile
│ │ └── app_demo_tcp.c
│ ├── timer
│ │ ├── Makefile
│ │ └── app_demo_timer.c
│ ├── uart
│ │ ├── Makefile
│ │ └── app_demo_uart.c
│ └── wmmp
│ ├── Makefile
│ ├── inc
│ │ ├── simcom_at_parser.h
│ │ ├── simcom_m2m_at_fun.h
│ │ ├── simcom_wmmp_nvram_define.h
│ │ ├── simcom_wmmp_sms.h
│ │ ├── simcom_wmmp_utility.h
│ │ ├── wmmp_api.h
│ │ ├── wmmp_interface.h
│ │ ├── wmmp_nvram_type.h
│ │ └── wmmp_typ.h
│ ├── main.c
│ ├── src
│ │ ├── simcom_wmmp_hdlr_ex.c
│ │ ├── simcom_wmmp_nvram.c
│ │ ├── simcom_wmmp
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。