├── FreeRTOS-Plus-CLI ├── FreeRTOS_CLI.c ├── FreeRTOS_CLI.h ├── History.txt ├── LICENSE_INFORMATION.txt ├── ReadMe.url └── readme.txt ├── Img ├── NanoVNA-F_PCB_V2.2_F.JPG ├── NanoVNA-F_样品谍照1.JPG ├── RF_Demo_Kit_Bot.jpg └── RF_Demo_Kit_Top.jpg ├── Inc ├── FreeRTOSConfig.h ├── fatfs.h ├── ffconf.h ├── main.h ├── stm32f1xx_hal_conf.h ├── stm32f1xx_it.h ├── usb_device.h ├── usbd_cdc_if.h ├── usbd_conf.h ├── usbd_desc.h └── user_diskio.h ├── LICENSE ├── Lib └── arm_cortexM3l_math.lib ├── MDK-ARM ├── NanoVNA-F.uvoptx ├── NanoVNA-F.uvprojx └── startup_stm32f103xe.s ├── NanoVNA-F.ioc ├── README.md ├── Src ├── fatfs.c ├── freertos.c ├── main.c ├── stm32f1xx_hal_msp.c ├── stm32f1xx_hal_timebase_TIM.c ├── stm32f1xx_it.c ├── system_stm32f1xx.c ├── usb_device.c ├── usbd_cdc_if.c ├── usbd_conf.c ├── usbd_desc.c └── user_diskio.c ├── Usr ├── Font.h ├── Font5x7.c ├── Fonthanzi24x24.c ├── Fontneep-iso8859-1-06x13.c ├── Fontneep-iso8859-1-08x15.c ├── Fontneep-iso8859-1-10x20.c ├── Fontneep-iso8859-1-12x24.c ├── Wav.c ├── aic3204.c ├── appcmd.c ├── appvna.c ├── board.c ├── board.h ├── cli_sample.c ├── dsp.c ├── flash.c ├── fs_funs.c ├── fs_funs.h ├── nanovna.h ├── nt35510.c ├── nt35510.h ├── numfont20x24.c ├── plot.c ├── serial.c ├── serial.h ├── si5351.c ├── si5351.h ├── si5351_low.c ├── spi_flash.c ├── spi_flash.h ├── system.h ├── touch_ctp.c ├── touch_ctp.h ├── touch_rtp.c ├── touch_rtp.h └── ui.c └── nanoVNA-F schematic_rev2.pdf /FreeRTOS-Plus-CLI/FreeRTOS_CLI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/FreeRTOS-Plus-CLI/FreeRTOS_CLI.c -------------------------------------------------------------------------------- /FreeRTOS-Plus-CLI/FreeRTOS_CLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/FreeRTOS-Plus-CLI/FreeRTOS_CLI.h -------------------------------------------------------------------------------- /FreeRTOS-Plus-CLI/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/FreeRTOS-Plus-CLI/History.txt -------------------------------------------------------------------------------- /FreeRTOS-Plus-CLI/LICENSE_INFORMATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/FreeRTOS-Plus-CLI/LICENSE_INFORMATION.txt -------------------------------------------------------------------------------- /FreeRTOS-Plus-CLI/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/FreeRTOS-Plus-CLI/ReadMe.url -------------------------------------------------------------------------------- /FreeRTOS-Plus-CLI/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/FreeRTOS-Plus-CLI/readme.txt -------------------------------------------------------------------------------- /Img/NanoVNA-F_PCB_V2.2_F.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Img/NanoVNA-F_PCB_V2.2_F.JPG -------------------------------------------------------------------------------- /Img/NanoVNA-F_样品谍照1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Img/NanoVNA-F_样品谍照1.JPG -------------------------------------------------------------------------------- /Img/RF_Demo_Kit_Bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Img/RF_Demo_Kit_Bot.jpg -------------------------------------------------------------------------------- /Img/RF_Demo_Kit_Top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Img/RF_Demo_Kit_Top.jpg -------------------------------------------------------------------------------- /Inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /Inc/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/fatfs.h -------------------------------------------------------------------------------- /Inc/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/ffconf.h -------------------------------------------------------------------------------- /Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/main.h -------------------------------------------------------------------------------- /Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /Inc/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/usb_device.h -------------------------------------------------------------------------------- /Inc/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/usbd_cdc_if.h -------------------------------------------------------------------------------- /Inc/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/usbd_conf.h -------------------------------------------------------------------------------- /Inc/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/usbd_desc.h -------------------------------------------------------------------------------- /Inc/user_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Inc/user_diskio.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/arm_cortexM3l_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Lib/arm_cortexM3l_math.lib -------------------------------------------------------------------------------- /MDK-ARM/NanoVNA-F.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/MDK-ARM/NanoVNA-F.uvoptx -------------------------------------------------------------------------------- /MDK-ARM/NanoVNA-F.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/MDK-ARM/NanoVNA-F.uvprojx -------------------------------------------------------------------------------- /MDK-ARM/startup_stm32f103xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/MDK-ARM/startup_stm32f103xe.s -------------------------------------------------------------------------------- /NanoVNA-F.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/NanoVNA-F.ioc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/README.md -------------------------------------------------------------------------------- /Src/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/fatfs.c -------------------------------------------------------------------------------- /Src/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/freertos.c -------------------------------------------------------------------------------- /Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/main.c -------------------------------------------------------------------------------- /Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /Src/stm32f1xx_hal_timebase_TIM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/stm32f1xx_hal_timebase_TIM.c -------------------------------------------------------------------------------- /Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /Src/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/usb_device.c -------------------------------------------------------------------------------- /Src/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/usbd_cdc_if.c -------------------------------------------------------------------------------- /Src/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/usbd_conf.c -------------------------------------------------------------------------------- /Src/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/usbd_desc.c -------------------------------------------------------------------------------- /Src/user_diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Src/user_diskio.c -------------------------------------------------------------------------------- /Usr/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/Font.h -------------------------------------------------------------------------------- /Usr/Font5x7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/Font5x7.c -------------------------------------------------------------------------------- /Usr/Fonthanzi24x24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/Fonthanzi24x24.c -------------------------------------------------------------------------------- /Usr/Fontneep-iso8859-1-06x13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/Fontneep-iso8859-1-06x13.c -------------------------------------------------------------------------------- /Usr/Fontneep-iso8859-1-08x15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/Fontneep-iso8859-1-08x15.c -------------------------------------------------------------------------------- /Usr/Fontneep-iso8859-1-10x20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/Fontneep-iso8859-1-10x20.c -------------------------------------------------------------------------------- /Usr/Fontneep-iso8859-1-12x24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/Fontneep-iso8859-1-12x24.c -------------------------------------------------------------------------------- /Usr/Wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/Wav.c -------------------------------------------------------------------------------- /Usr/aic3204.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/aic3204.c -------------------------------------------------------------------------------- /Usr/appcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/appcmd.c -------------------------------------------------------------------------------- /Usr/appvna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/appvna.c -------------------------------------------------------------------------------- /Usr/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/board.c -------------------------------------------------------------------------------- /Usr/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/board.h -------------------------------------------------------------------------------- /Usr/cli_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/cli_sample.c -------------------------------------------------------------------------------- /Usr/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/dsp.c -------------------------------------------------------------------------------- /Usr/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/flash.c -------------------------------------------------------------------------------- /Usr/fs_funs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/fs_funs.c -------------------------------------------------------------------------------- /Usr/fs_funs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/fs_funs.h -------------------------------------------------------------------------------- /Usr/nanovna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/nanovna.h -------------------------------------------------------------------------------- /Usr/nt35510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/nt35510.c -------------------------------------------------------------------------------- /Usr/nt35510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/nt35510.h -------------------------------------------------------------------------------- /Usr/numfont20x24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/numfont20x24.c -------------------------------------------------------------------------------- /Usr/plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/plot.c -------------------------------------------------------------------------------- /Usr/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/serial.c -------------------------------------------------------------------------------- /Usr/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/serial.h -------------------------------------------------------------------------------- /Usr/si5351.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/si5351.c -------------------------------------------------------------------------------- /Usr/si5351.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/si5351.h -------------------------------------------------------------------------------- /Usr/si5351_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/si5351_low.c -------------------------------------------------------------------------------- /Usr/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/spi_flash.c -------------------------------------------------------------------------------- /Usr/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/spi_flash.h -------------------------------------------------------------------------------- /Usr/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/system.h -------------------------------------------------------------------------------- /Usr/touch_ctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/touch_ctp.c -------------------------------------------------------------------------------- /Usr/touch_ctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/touch_ctp.h -------------------------------------------------------------------------------- /Usr/touch_rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/touch_rtp.c -------------------------------------------------------------------------------- /Usr/touch_rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/touch_rtp.h -------------------------------------------------------------------------------- /Usr/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/Usr/ui.c -------------------------------------------------------------------------------- /nanoVNA-F schematic_rev2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyoob/NanoVNA-F/HEAD/nanoVNA-F schematic_rev2.pdf --------------------------------------------------------------------------------