Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- Nanovna-Users
- Messages
Search
Re: Are there any firmware releases supporting calibration kits?
Dr. David Kirkby from Kirkby Microwave Ltd
On Mon, 7 Oct 2019 at 16:36, <erik@...> wrote:
Adding setting the three parametersThat would be useful. Note for many of the kits, the male and female components have different parameters. Could there be a few user-defined kits? In an ideal world, a few of the common calibration kits owned by several members on this list (85032B, 85033D/E), as well as a few user-defined ones. I have * 85050B APC7 * 85032B 3.5 mm * 85054B N * 85038A 7-16 * 85039B (75 ohm, type F) *None of those are popular,* so I would not suggest they need to be in the firmware. Depending on memory/space on the screen, the 85052B / 85052D would be nice to have on the menu, but those use exactly the same coefficients as the 85033D and 85033E. As strange as it may seem, the 85039A and 85039B type F 75 ohm kits seem quite popular on eBay. The whole idea of a VNA calibration kit for the F connector strokes me as a bit odd, but there does seem to be a lot of them sold. But being 75 ohm, supporting them would no doubt need changes in several places, and I can't imagine many NanoVNA users wanting to test devices with F connectors on them. A few user-defined kits, ideally which one can name, but if not CALKIT 0, CALKIT 1 etc would be fine. Dave -- Dr David Kirkby Ph.D C.Eng MIET Kirkby Microwave Ltd Registered office: Stokes Hall Lodge, Burnham Rd, Althorne, CHELMSFORD, Essex, CM3 6DT, United Kingdom. Registered in England and Wales as company number 08914892 Tel 01621-680100 / +44 1621-680100 |
Re: Command to set maximum fundamental SI5351 frequency implemented
edy555's 0.2.3 release does NOT lock-up with the capture command.
toggle quoted message
Show quoted text
When I run capture from the command prompt, I get a 2 page dump of non-printing output to the terminal, then I get the ch> prompt back I assume it's a binary display buffer dump. The attached file is my teraterm terminal.tty dump:? in console, I hit return twice, then version, then info, then capture, then exit On Monday, October 7, 2019, 11:37:49 a.m. GMT-4, <erik@...> wrote:
@Larry Can you try the edy555 0.2.3 release and see if that also locks up on capture? |
Re: Are there any firmware releases supporting calibration kits?
Can someone specify how these should be added to the calibration correction calculation?
This is the current code where "measured" is the raw data that gets corrected void apply_error_term_at(int i) { // S11m' = S11m - Ed // S11a = S11m' / (Er + Es S11m') float s11mr = measured[0][i][0] - cal_data[ETERM_ED][i][0]; float s11mi = measured[0][i][1] - cal_data[ETERM_ED][i][1]; float err = cal_data[ETERM_ER][i][0] + s11mr * cal_data[ETERM_ES][i][0] - s11mi * cal_data[ETERM_ES][i][1]; float eri = cal_data[ETERM_ER][i][1] + s11mr * cal_data[ETERM_ES][i][1] + s11mi * cal_data[ETERM_ES][i][0]; float sq = err*err + eri*eri; float s11ar = (s11mr * err + s11mi * eri) / sq; float s11ai = (s11mi * err - s11mr * eri) / sq; measured[0][i][0] = s11ar; measured[0][i][1] = s11ai; // CAUTION: Et is inverted for efficiency // S21m' = S21m - Ex // S21a = S21m' (1-EsS11a)Et float s21mr = measured[1][i][0] - cal_data[ETERM_EX][i][0]; float s21mi = measured[1][i][1] - cal_data[ETERM_EX][i][1]; float esr = 1 - (cal_data[ETERM_ES][i][0] * s11ar - cal_data[ETERM_ES][i][1] * s11ai); float esi = - (cal_data[ETERM_ES][i][1] * s11ar + cal_data[ETERM_ES][i][0] * s11ai); float etr = esr * cal_data[ETERM_ET][i][0] - esi * cal_data[ETERM_ET][i][1]; float eti = esr * cal_data[ETERM_ET][i][1] + esi * cal_data[ETERM_ET][i][0]; float s21ar = s21mr * etr - s21mi * eti; float s21ai = s21mi * etr + s21mr * eti; measured[1][i][0] = s21ar; measured[1][i][1] = s21ai; } Adding setting the three parameters * offset delay of the open * offset delay of the short. * C0 of the open and saving them as part of a config or calibration dataset I know how to do |
Re: Latest edy555 firmware release with dfu file
Seems to work well.
One small request - Could the velocity factor that has been used please be added to the TDR marker text, or displayed in some other way, so that it's more obvious if you have used the wrong value for the type of cable being measured. Regards, Martin - G8JNJ |
Latest edy555 firmware release with dfu file
Hot off the presses, folks:
Version 0.2.3 edy555 released this 1 hour ago -change toggle behavior of trace menu and marker menu -add transform command to change mode of TDR - add threadshold command -remove cal glitch between different harmonic modes -NanoVNA-saver in multisegment mode shall work well ** Needs touch calibration and save it after flashing firmware. Regards, Larry |
File updated in [email protected]
[email protected] Notification
Hello, This email message is a notification to let you know that the following files have been updated in the Files area of the [email protected] group. Uploaded By: Larry Rothman <nlroth@...> Description: Cheers, |
Are there any firmware releases supporting calibration kits?
Dr. David Kirkby from Kirkby Microwave Ltd
Are there any *firmware* releases that have support for *proper*
calibration kits? By that I minimum of * offset delay of the open * offset delay of the short. * C0 of the open More parameters would be useful, especially of lower quality kits, but the above would be a start Dave -- Dr. David Kirkby, Kirkby Microwave Ltd, drkirkby@... Telephone 01621-680100./ +44 1621 680100 Registered in England & Wales, company number 08914892. Registered office: Stokes Hall Lodge, Burnham Rd, Althorne, Chelmsford, Essex, CM3 6DT, United Kingdom |
Re: Inductor S21 measurement using nanoVNA
On Mon, Oct 7, 2019 at 04:03 AM, Kurt Poulsen wrote:
Kurt, Thanks for your more detailed explanation. I think I understand the "trick" you are suggesting more thoroughly. It certainly makes a difference if you want to more precisely characterize the 13 micro-Henry inductor at higher frequencies like 30 MHz to 100 MHz. -- Bryan, WA5VAH
|
Re: Command to set maximum fundamental SI5351 frequency implemented
Erik,
toggle quoted message
Show quoted text
Your release 0.2.2_1 may have a bug with the 'capture' console command - device locks-up when I try to use capture. Regards, Larry On Saturday, October 5, 2019, 4:01:44 p.m. GMT-4, <erik@...> wrote:
Edy555 has implemented in his GitHub nanoVNA repository a command to set the threshold for switching to harmonics mode Command threshold {Frequency in Hz} The default is 300MHz. After changing you can use the save configuration command to permanently store the new value This greatly simplifies testing if your SI5351 has difficult reaching 300MHz and if so, provides a easy workaround I can not test now. Maybe tomorrow |
Re: errors of "error" models
Good afternoon nikolitsa oe3zgn|sv7dmc & petros oe3zzp|sv7bax @ arg iaoi nfi;
As I stated in an earlier post, our communications get somewhat contaminated in translation. Please understand that you have my unreserved agreement on your definition. My use of quotation marks encompassing any... i.e. ¡°any¡± VNA was intended to communicate that I am not all knowing with respect to the architectural differences employed by various equipment manufacturers. In the context of our discussions, I also believe that the hardware choice is not relevant, and that it is your desire to focus on the software independent of the hardware choice in the evaluation of the derived measurement uncertainties. My overtly verbose description was an attempt to separate the hardware from the software, to ensure my understanding of the point that the hardware employed for the measurements is irrelevant. I have not yet read your response in its entirety. I sensed a priority to put your mind at ease, and respond immediately in that regard. I will comment on anything I feel unclear about your response after giving it my undivided attention. 73 Gary, N3GO agreement -- 73 Gary, N3GO |
Re: Upgrade Firmware
I have been unable to upgrade the firmware on my NanoVNA on Windows. Every approach I try ends up with the DFU tool claiming that the file I'm trying to program is the wrong format. I pointed to several different .dfu files, and also tried to use the DFU file manager to read the file, with the same error. I got the same issue on two different Windows laptops, both running Windows 10. Maybe there is a driver step I'm overlooking, or that is assumed in the instructions?
However, I was able to program my NanoVNA on the first try on my Mac, using the same .dfu files. Ralph |
Re: Annotated nanoVNA menu diagram
Hi W5DXP:
How about this?I notice that your PNG lacks recent TRANSFORM update. Tricky CSS in automagically draws menu tree leaves, branches and twigs by redefining relatively simple HTML (<dl><dt><dt>, <ul><li>, <p> <tt>) that reflects menu structure and which markup is relatively easy to revise and supplement with tool tips and links. I lack wit or ambition to invent CSS that dynamically optimizes path generation. I reject JavaScript, based on traumatic stress as Unix system administrator when enterprise IT released pathological proxy.pac. I lost sleep last night, pondering Stan's suggestion for CSS changes which may result in overall cleaner (if not smaller) diagrams. I still think it better to first complete adding more help links and tool tips for recent firmware extensions. |
Re: Upgrade Firmware
Please remember that with rapid S/W development, there will always be some kind of niggling issues somewhere in the code.
toggle quoted message
Show quoted text
To be safe, you can stick with releases from either edy555 or hugen. Erik also has some cutting edge releases that are based on the 2 sources above. Check out the firmware folder in FILES. edy555 is at 0.2.2 and erik has just released 0.2.2_1The last Oct 2 release from hugen had some issues. Read the Oct 2 userguide for flashing instructions - EVERYTHING you need is in the WIKI or FILES sections. Now play! On Monday, October 7, 2019, 8:49:27 a.m. GMT-4, Leith Cullen <leithacullen@...> wrote:
When I heard there was the ability to extent the range to 2.5 GHz, I got over exited.? Because I'm not forking out $800 bucks for a Analyzer.? So which build do you recommend? |
Re: Upgrade Firmware
How would I go about upgrading the firmware safely?IMO, most danger comes from potential static discharge when jumpering DFU contacts. Firmware bugs may leave nanoVNA in hung state at power on, so forcing hardware DFU is an ongoing requirement. I and others added a switch, e.g. There are several DFU articles linked in Wiki and Files, e.g. |
Re: Upgrade Firmware
Please DO NOT use that firmware - it was purely experimental and was indicated as such when Erik talked about it.There will be no support if you have any issues.
toggle quoted message
Show quoted text
However, it you DO want to play with it,?/g/nanovna-users/files/Firmware/NanoVNA%20firmware%20build%20by%20Erik On Monday, October 7, 2019, 7:48:20 a.m. GMT-4, Leith Cullen <leithacullen@...> wrote:
Sorry for the stupid question.? But a recently saw a firmware update with the ability to go up to 2.5GHz freq.? But I can't seem to find a solid wait to upgrade on windows. How would I go about upgrading the firmware safely? 73 |
to navigate to use esc to dismiss