├── .github └── workflows │ └── sync_issues.yml ├── Makefile ├── README.md ├── js.project ├── js.workspace ├── linkit ├── include │ ├── vmalarm.h │ ├── vmaudio.h │ ├── vmaudio_play.h │ ├── vmaudio_record.h │ ├── vmaudio_stream_play.h │ ├── vmbearer.h │ ├── vmboard.h │ ├── vmbt_cm.h │ ├── vmbt_gatt.h │ ├── vmbt_ns.h │ ├── vmbt_spp.h │ ├── vmchset.h │ ├── vmcmd.h │ ├── vmdatetime.h │ ├── vmdcl.h │ ├── vmdcl_adc.h │ ├── vmdcl_eint.h │ ├── vmdcl_gpio.h │ ├── vmdcl_i2c.h │ ├── vmdcl_kbd.h │ ├── vmdcl_pmu.h │ ├── vmdcl_pwm.h │ ├── vmdcl_sio.h │ ├── vmdcl_spi.h │ ├── vmdns.h │ ├── vmdrv_lcd.h │ ├── vmdrv_tp.h │ ├── vmfirmware.h │ ├── vmfs.h │ ├── vmgps.h │ ├── vmgraphic.h │ ├── vmgraphic_font.h │ ├── vmgraphic_image.h │ ├── vmgsm.h │ ├── vmgsm_cell.h │ ├── vmgsm_gprs.h │ ├── vmgsm_sim.h │ ├── vmgsm_sms.h │ ├── vmgsm_tel.h │ ├── vmhttps.h │ ├── vmkeypad.h │ ├── vmlog.h │ ├── vmmemory.h │ ├── vmpwr.h │ ├── vmres.h │ ├── vmsock.h │ ├── vmssl.h │ ├── vmstdlib.h │ ├── vmsystem.h │ ├── vmtag.h │ ├── vmtcp.h │ ├── vmthread.h │ ├── vmtimer.h │ ├── vmtouch.h │ ├── vmtype.h │ ├── vmudp.h │ ├── vmusb.h │ ├── vmwdt.h │ └── vmwlan.h └── lib │ ├── LINKIT10 │ ├── armgcc │ │ ├── percommon.a │ │ └── scat.ld │ └── src │ │ └── gccmain.c │ └── official.cfg ├── src ├── audio.c ├── gpio.c ├── gsm.c ├── i2c.c ├── lcd_sitronix_st7789s.c ├── lcd_sitronix_st7789s.h ├── main.c ├── retarget.c ├── screen.c ├── sj_prompt.c ├── sj_prompt.h ├── timer.c ├── tp_goodix_gt9xx.c ├── tp_goodix_gt9xx.h ├── tp_i2c.c ├── tp_i2c.h ├── v7.c └── v7.h └── tools ├── PackTag ├── PackTag.exe ├── PushTool ├── PushTool.exe └── packtag.py /.github/workflows/sync_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/.github/workflows/sync_issues.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/README.md -------------------------------------------------------------------------------- /js.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/js.project -------------------------------------------------------------------------------- /js.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/js.workspace -------------------------------------------------------------------------------- /linkit/include/vmalarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmalarm.h -------------------------------------------------------------------------------- /linkit/include/vmaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmaudio.h -------------------------------------------------------------------------------- /linkit/include/vmaudio_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmaudio_play.h -------------------------------------------------------------------------------- /linkit/include/vmaudio_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmaudio_record.h -------------------------------------------------------------------------------- /linkit/include/vmaudio_stream_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmaudio_stream_play.h -------------------------------------------------------------------------------- /linkit/include/vmbearer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmbearer.h -------------------------------------------------------------------------------- /linkit/include/vmboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmboard.h -------------------------------------------------------------------------------- /linkit/include/vmbt_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmbt_cm.h -------------------------------------------------------------------------------- /linkit/include/vmbt_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmbt_gatt.h -------------------------------------------------------------------------------- /linkit/include/vmbt_ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmbt_ns.h -------------------------------------------------------------------------------- /linkit/include/vmbt_spp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmbt_spp.h -------------------------------------------------------------------------------- /linkit/include/vmchset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmchset.h -------------------------------------------------------------------------------- /linkit/include/vmcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmcmd.h -------------------------------------------------------------------------------- /linkit/include/vmdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdatetime.h -------------------------------------------------------------------------------- /linkit/include/vmdcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_adc.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_eint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_eint.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_gpio.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_i2c.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_kbd.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_pmu.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_pwm.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_sio.h -------------------------------------------------------------------------------- /linkit/include/vmdcl_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdcl_spi.h -------------------------------------------------------------------------------- /linkit/include/vmdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdns.h -------------------------------------------------------------------------------- /linkit/include/vmdrv_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdrv_lcd.h -------------------------------------------------------------------------------- /linkit/include/vmdrv_tp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmdrv_tp.h -------------------------------------------------------------------------------- /linkit/include/vmfirmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmfirmware.h -------------------------------------------------------------------------------- /linkit/include/vmfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmfs.h -------------------------------------------------------------------------------- /linkit/include/vmgps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgps.h -------------------------------------------------------------------------------- /linkit/include/vmgraphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgraphic.h -------------------------------------------------------------------------------- /linkit/include/vmgraphic_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgraphic_font.h -------------------------------------------------------------------------------- /linkit/include/vmgraphic_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgraphic_image.h -------------------------------------------------------------------------------- /linkit/include/vmgsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgsm.h -------------------------------------------------------------------------------- /linkit/include/vmgsm_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgsm_cell.h -------------------------------------------------------------------------------- /linkit/include/vmgsm_gprs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgsm_gprs.h -------------------------------------------------------------------------------- /linkit/include/vmgsm_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgsm_sim.h -------------------------------------------------------------------------------- /linkit/include/vmgsm_sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgsm_sms.h -------------------------------------------------------------------------------- /linkit/include/vmgsm_tel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmgsm_tel.h -------------------------------------------------------------------------------- /linkit/include/vmhttps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmhttps.h -------------------------------------------------------------------------------- /linkit/include/vmkeypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmkeypad.h -------------------------------------------------------------------------------- /linkit/include/vmlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmlog.h -------------------------------------------------------------------------------- /linkit/include/vmmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmmemory.h -------------------------------------------------------------------------------- /linkit/include/vmpwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmpwr.h -------------------------------------------------------------------------------- /linkit/include/vmres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmres.h -------------------------------------------------------------------------------- /linkit/include/vmsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmsock.h -------------------------------------------------------------------------------- /linkit/include/vmssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmssl.h -------------------------------------------------------------------------------- /linkit/include/vmstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmstdlib.h -------------------------------------------------------------------------------- /linkit/include/vmsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmsystem.h -------------------------------------------------------------------------------- /linkit/include/vmtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmtag.h -------------------------------------------------------------------------------- /linkit/include/vmtcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmtcp.h -------------------------------------------------------------------------------- /linkit/include/vmthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmthread.h -------------------------------------------------------------------------------- /linkit/include/vmtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmtimer.h -------------------------------------------------------------------------------- /linkit/include/vmtouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmtouch.h -------------------------------------------------------------------------------- /linkit/include/vmtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmtype.h -------------------------------------------------------------------------------- /linkit/include/vmudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmudp.h -------------------------------------------------------------------------------- /linkit/include/vmusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmusb.h -------------------------------------------------------------------------------- /linkit/include/vmwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmwdt.h -------------------------------------------------------------------------------- /linkit/include/vmwlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/include/vmwlan.h -------------------------------------------------------------------------------- /linkit/lib/LINKIT10/armgcc/percommon.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/lib/LINKIT10/armgcc/percommon.a -------------------------------------------------------------------------------- /linkit/lib/LINKIT10/armgcc/scat.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/lib/LINKIT10/armgcc/scat.ld -------------------------------------------------------------------------------- /linkit/lib/LINKIT10/src/gccmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/lib/LINKIT10/src/gccmain.c -------------------------------------------------------------------------------- /linkit/lib/official.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/linkit/lib/official.cfg -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/gpio.c -------------------------------------------------------------------------------- /src/gsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/gsm.c -------------------------------------------------------------------------------- /src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/i2c.c -------------------------------------------------------------------------------- /src/lcd_sitronix_st7789s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/lcd_sitronix_st7789s.c -------------------------------------------------------------------------------- /src/lcd_sitronix_st7789s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/lcd_sitronix_st7789s.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/main.c -------------------------------------------------------------------------------- /src/retarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/retarget.c -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/sj_prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/sj_prompt.c -------------------------------------------------------------------------------- /src/sj_prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/sj_prompt.h -------------------------------------------------------------------------------- /src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/timer.c -------------------------------------------------------------------------------- /src/tp_goodix_gt9xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/tp_goodix_gt9xx.c -------------------------------------------------------------------------------- /src/tp_goodix_gt9xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/tp_goodix_gt9xx.h -------------------------------------------------------------------------------- /src/tp_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/tp_i2c.c -------------------------------------------------------------------------------- /src/tp_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/tp_i2c.h -------------------------------------------------------------------------------- /src/v7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/v7.c -------------------------------------------------------------------------------- /src/v7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/src/v7.h -------------------------------------------------------------------------------- /tools/PackTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/tools/PackTag -------------------------------------------------------------------------------- /tools/PackTag.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/tools/PackTag.exe -------------------------------------------------------------------------------- /tools/PushTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/tools/PushTool -------------------------------------------------------------------------------- /tools/PushTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/tools/PushTool.exe -------------------------------------------------------------------------------- /tools/packtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/JavaScript_for_RePhone/HEAD/tools/packtag.py --------------------------------------------------------------------------------