Skip to content

Very Tiny Handheld Vector Network Analyzer using STM32F303CCT6

Notifications You must be signed in to change notification settings

AA6KL/NanoVNA-F303

This branch is 36 commits ahead of, 115 commits behind ttrftech/NanoVNA:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

aef5562 · Jan 15, 2020
Sep 14, 2019
Oct 14, 2019
Sep 2, 2019
Sep 25, 2019
Nov 14, 2019
Sep 29, 2019
Nov 17, 2019
Jan 22, 2017
Oct 14, 2019
Sep 26, 2019
Nov 29, 2019
Nov 20, 2019
Nov 20, 2019
Oct 28, 2019
Jan 2, 2017
Nov 13, 2019
Dec 25, 2019
Oct 15, 2019
Aug 28, 2019
Sep 29, 2019
Oct 22, 2019
Sep 4, 2016
Nov 17, 2019
Oct 24, 2019
Oct 9, 2019
Oct 9, 2019
Jan 15, 2020
Nov 17, 2019
Oct 9, 2019
Dec 25, 2019
Nov 13, 2019
Dec 23, 2019
Oct 21, 2019
Jan 15, 2020
Sep 4, 2016
Dec 14, 2019
Nov 16, 2019
Oct 21, 2019
Jan 15, 2020
Sep 25, 2019
Sep 4, 2016

Repository files navigation

NanoVNA - Very tiny handheld Vector Network Analyzer

About

This is my attemp to port the STM32F303CCT6 to this popular NanoVNA project. The benefits are larger SRAM 40KB from 16KB, larger flash 256KB from 128KB, faster CPU clock 72MHz from 48MHz, and floating point accelerator. For detail information, please refer to the original project page by edy555.

https://github.com/ttrftech/NanoVNA

Preparation

Please refer to original NanoVNA page for detail preparation information.

The current test board has the MCU STM32F072CBT6 replaced by STM32F303CCT6. Also, the USB_DP pin has a 1.5K ohm pull up resistor connected to VDD (3.3V), and the USB_DP (PA12) is shorted with PA10. AT power-up, PA10 will pull down USB_DP then release to inform host a device is plugged in. Another way is to connect USB_DP to PA10 directly and use PA10 to control USB connect and disconnect.

Because edy555's ChibiOS/os/hal/ports/STM32/LLD/ADCv3/hal_adc_lld.c is not updated with ADCv3 protocol, I modified and name it as hal_adc_lld.c.fixed. To put the file at the correct location, do the following. I will find a nicer way to handle it later.

$ cp hal_adc_lld.c.fixed ./ChibiOS/os/hal/ports/STM32/LLD/ADCv3/hal_adc_lld.c

Compile

To compile for STM32F303CCT6, add TARGET=F303

$ make TARGET=F303

Since F303 doesn't support crystal-less DFU, a separate ST_Link is required to flash the firmware. Users need to solder the pins on the NanoVNA SWD port.

To flash firmware at Linux, refer to

https://github.com/texane/stlink

The flash firmware command at Linux(Ubuntu) is

$ st-flash write build/ch.bin 0x8000000

At Ubuntu, the shell can be accessed via

$ sudo screen /dev/ttyACM0 57600

Hardware mod candidates:

  • Add D2 Schottky diode to measure the battery voltage. Easy.
  • Add another 220nF cap parallel to C38 to solve the tlv320aic3204 fail-to-start issue. Easy.
  • Replace STM32F072CBT6 to STM32F303CCT6. Add 1.5K resistor between VDD and USB_DP. Short USB_DP (PA12) and PA10. Harder.
  • Add 8MHz chrystal to PCB. Better with PCB revision.

Status

Most of functions are working, except DFU via pull-down menu.

Credit

Thanks @edy555 for creating this tiny feature rich gadget. edy555 is also working on the F303 version of NanoVNA plus other new features, probably named NanoVNA-V2.

Thanks @hugen79 for providing the hardware for my porting work and debugging support.

About

Very Tiny Handheld Vector Network Analyzer using STM32F303CCT6

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 60.4%
  • Jupyter Notebook 33.1%
  • Objective-C 2.0%
  • Python 1.8%
  • C++ 1.4%
  • Makefile 1.0%
  • Other 0.3%