Podcasting since 2005! Listen to Latest SolderSmoke
Tuesday, October 6, 2020
TRGHS -- My First SW Receiver Offered FREE for Pickup -- The Lafayette HA-600A (Looking for Globe VFO Deluxe)
Sunday, September 27, 2020
A Suitcase Portable 40 Meter CW Station from 1951
Wow. Check this out:
http://www.skywaves.ar88.net/homebrew/W9FKC.pdf
A very nice rig built by an amazing homebrewer
And thanks to Al Klase N3FRQ for putting that wonderful web site together.
Thursday, September 24, 2020
Global Specialties Corporation 6000 Frequency Counter -- Anyone have a Plessey SP8630B Chip?
Continuing my effort to improve my workbench and its test gear, this week I turned to an old frequency counter that I picked up at the Kempton Park Radio Rally in London many years ago. It was not working when I got it, but long-time SolderSmoke listeners will recall the tale of woe that resulted from my having soldered a replacement IC (that Tony Fishpool G4WIF had sent me) UPSIDE down. Tough times my friends, tough times.
Well, I'm working on it again. First I converted it from 220 to 110 power. I had a transformer in the junk box that fit nicely, both electrically and mechanically. In the course of doing this, I learned something about this counter that I did not know: As long as it is plugged in, even if you turn it off, the time-base oscillator keeps running. And get this Color Burst Liberation Army members: The oscillator runs at 3.579545 MHz. TRGHS.
With sunspots scarce and with Pete pessimistic about the solar cycle, VHF and UHF now seem more interesting. I need to have more test gear for the higher frequencies. This counter works up to 650 MHz. Yea!
When I first fixed this thing, I was quite pleased to get it going with "Input A -- 5 Hz to 100 MHz." But now I want to get "Input B -- 40 MHz to 650 MHz" working also. I used a 50 MHz signal from my newly repaired HP-8640B to trouble shoot Input B. I think one of the divider chips is bad. It is a Plessey SP 8630B. Does anyone have one of these chips in their junk box?
Wednesday, September 23, 2020
Wisdom from AA0ZZ: NO LIBRARIES! ASSEMBLER CODE ONLY! -- "Digital Crap" -- "No Magic Fruit" What qualifies as a real rig? Si570 vs. Si5351
Bill,
Why do you guys make your Soldersmoke podcasts so darn intriguing such that I can’t listen to them in the background while I’m doing something else? Good grief! I start listening and before long you make me stop and chase down a rabbit hole to find something new that you mentioned that I had no clue was out there. Before long I’m doodling out a new sketch or playing with at a new design for something I really need to experiment with or build “next” or something I need to try. It is taking too much of my time!! J
I’ve been listening to your podcasts for years. Way back, before I knew you and before I knew you were doing these Soldersmoke blogs with Mike, KL7R, and just before he was so tragically killed, I was collaborating with him on a simple frequency counter project using a PIC microcontroller. We were making good progress on a neat design. I later completed the project but always kept his contributions noted as part of the source code.
I’ve been making PIC-based VFOs for years – dating back to about 2000 – aiming them at builders who were looking for something to go along with Rick Campbell’s (KK7B) receivers. Rick is a good friend now, after we met in the Kanga booth at Dayton where we both were demonstrating our stuff. (Bill Kelsey (N8ET) of Kanga, was the “marketer” for my kits as well as Rick’s for many years.) My original VFO kits used a DDS (high-end AD9854) that simultaneously produced I and Q signals which made it perfect for Rick’s phasing gear. Rick is a big supporter of my work but he still kids me about polluting his beautiful analog world with my “digital crap” (copyright KK7B term). When I came out with a newer version VFO using a Silicon Labs Si570 PPLL (I can hear already Pete Juliano groaning) it was a big improvement over the AD9854 in noise/spur reduction. I documented this all in a QEX article in about 2011 and Rick (and Wes Hayward) were very supportive/appreciative of my work.
I have used the Si5351 also and I understand Pete’s point of view. It’s “plenty good” for most amateur projects. However, it remains a fact that the Si570 is a better part and produces a cleaner signal. That’s the reason why the Elecraft KX3 uses a Si570. Granted, the newer Elecraft KX2 uses a Si5351 but it’s most likely because they wanted to preserve battery life (the Si570 uses more power but not nearly as much as the AD9854) and also to reduce the cost. I do understand! I also fully understand the ability of the Si5351 to produce I and Q signals via different channels. I’ve had extensive conversations about this with Hans Summers, at Dayton and online. I use a pair of Flip-Flops on the output of the Si570 instead. My PIC code driving the Si570 is ALL written in ASSEMBLER code. Yep! I’m an EE but have had a career mainly in software development and much of it was writing assembler code. I dare say there aren’t too many gluttons for punishment that do it this way. I do it because I want to understand every line of code don’t want to be dependent on anyone else’s libraries. Every line of code in my VFO’s and Signal Generators is MINE so I know I can debug it and it can’t get changed out from under me. (This problem bit Ashar Farhan hard on the Raduino of his BitX. Tuning clicks appeared because the Si5351 libraries he used changed between the time he tested it and released it. I was really appalled when I dug into this and resolved to NEVER use libraries that I didn’t write myself. Similarly, this also makes me have some distaste for Arduino sketches. I would rather see ALL of the code including the initialization code, the serial routines, etc, rather than having them hidden and get pulled in from Arduino libraries. That’s similar to the reason why Hans Summers didn’t use an Arduino in his QCX. He used the same Atmel microprocessor but developed/debugged it as “C” code with the full Atmel IDE/debugger.
By the way, Pete mentioned the Phaser FT8 transceiver by Dave, K1SWL, in a recent podcast. Dave is a very close friend, even though I haven’t met him in person since about 2000. We Email at least daily and some of it is even about radio. J I did the PIC code for the tiny PIC that controls the Si5351 in the Phaser. Yes, it’s written entirely in Assembler again! I do know how to do it for a Si5351. That Si5351 code is not nearly as much “fun”, though. I know, this will make very little difference to guys who write Arduino “C” code to control it but under the covers it’s a world of difference. It takes me about 15 serial, sequential, math operations to generate the parameters for the Si5351. None of them can be table driven and they all have to be performed sequentially. (This is all hidden in about 5 lines of complex, Arduino “C” code but the operations are all there in the compiled assembler code.) In contrast, my Si570 code is almost all table driven. I just have to do one large (48-bit) division operation at the end to generate the parameters. Yes, that’s a bit of trickery to do in ASM. There are no libraries do this.
I will point out one more advantage of the Si570 in comparison to the Si5351. It has the ability to self-calibrate via software instead of relying on an external frequency standard. In my Si570 app I can read up the exact parameters for the crystal embedded inside the Si570, run my frequency-generating algorithm “backwards” and determine the exact crystal frequency (within tolerances, of course) for that particular Si570. Then I update all the internal tables using that crystal frequency and from then on all generated frequencies are “exact”. I love this! Frequency often moves by about 6 kHz on 40M.
Oh yes, I must mention the difference of home solderability of the si570 vs the Si5351. Those little Si5351 buggers are terribly difficult to solder at home while the Si570 is a breeze. I know, many folks will just buy the AdaFruit Si5351 board and it’s already soldered on but, again, I like to do it all myself. No “magic Fruit” for me.
Now that I retired a couple of years ago and am getting out of the VFO kitting business I can finally build complete rigs instead of just making the next-generation VFO’s for everyone else to use. I recently build a tiny, Direct Conversion rig with a Si570 signal generator (of course) and a diode ring mixer (ADE-1). Look at my web page, www.aa0zz.com to see it, along with my VFO projects that I’ve been building in the past. As you well know, Direct Conversion is fun to build and the sound is astounding; however, they are rather a pain to use! Yes, I did make it qualify as a real rig by making several contacts all over the country. (Wes Hayward gave me the criteria: he told me that I must put any new rig on the air and make at least one contact before it qualifies as a real rig.)
The new rig that’s on my workbench is my own version of a phasing rig, experimenting with a Quadrature Sampling Detector (QSD, sometimes called a “Tayloe” mixer), using some ideas from Rick’s R2 and R2Pro receivers and many innovations of my own. At present my new higher-end Signal Generator works great, the QSD receiver works great (extremely quiet and MDS of -130 dB on 40 meters) and the transmitter is putting out about 16 watts with two RD16HHF1’s in push-pull. You can take away my “QRP-Only-Forever” badge too, not that I’ve ever subscribed to that concept! Still more tweaking to do with the TX but now I’m also working on the “glue” circuitry and the T/R switch. The SigGen, RX and TX are all on separate boards that plug into a base board which has the interconnections between boards and the jacks on the back. I’ve built DOZENS of variations of each of these boards. Fortunately they all fall within the size limit criteria to get them from China at the incredible price of $5 for 10 boards (plus $18 shipping) with about 1 week turnaround. Cost isn’t really an object at this point but it’s more of getting a hardware education that I sadly missed while I concentrated on software for so many years. it’s certainly nice to have willing mentors such as Rick, Wes, Dave (K1SWL), Don (W6JL) and many others to bounce my crazy ideas off. Yes, I’m having a ball!
I was licensed in 1964 but out of radio completely from 1975 to 1995. Do you like the picture of my DX-100 on my web page? My buddy in the 60’s had a Drake 2B and I drooled over it but couldn’t afford one.
Now I must finish this rig before you guys send me down another rabbit hole. Too many fascinating things to think about! I literally have a “priority list” on the my computer’s desktop screen. Every time I come up with a new project idea – something I really want to play with such as a Raspberry Pi, SDR, etc, I pull out the priority list and decide where it fits and what I want to slide down to accommodate it. That’s my reality check!
Take care, Bill. Thanks for taking the time to give us many inspiring thoughts and ideas.
73,
-Craig, AA0ZZ
Monday, September 21, 2020
HP8640B Internal Frequency Counter Fixed (More Repairs Pending)
Saturday, September 19, 2020
SolderSmoke Podcast #225: Mars, uSDX, G-QRP, HP8640B, DX-390, Rotary Tools, Walla Walla SDR, MAILBAG
SolderSmoke Podcast #225 is available
http://soldersmoke.com/soldersmoke225.mp3
Mars, West Coast smoke.
Friday, September 18, 2020
Mixer Insights using Propellers and Cameras -- From Walla Walla University. And SDR Design Info.
Monday, September 14, 2020
A Regen Receiver Made with Homebrew Tubes
Sunday, September 13, 2020
HP8640B -- Fault Found! A very TINY and Hard-to-Fix Fault
The switches that VE3EAC wrote about are just below the ribbon cable near the center front. I could see the little springs that he was discussing on the switches. They appear MUCH more delicate than the rotator on a standard rotary switch. And I didn't see any of them lying around below the switch. But when I tried to flip the HP8640B over, something in there moved and caught my eye. I pulled out some tweezers and pulled this out:
Friday, September 11, 2020
HP8640B Counter Repair --- Discretion? Or Valor?
Inspired by BH1RBG, I cracked open the HP8640B to have a look at the counter circuitry. Above is the view that greeted me. That is the main counter board after I pulled it out of its socket. You can see the seven little red LED display modules.
It is not as bad as it looks. In fact, I found the construction and accessibility of the HP8640B to be quite impressive (much better than the Tek 465 with all its flaky plug-in transistors). The manual has good, detailed info on how to get into the various compartments, and even as you work, instructions on which screws to remove or loosen appear on the tops of each RF-tight compartment. Nice. This thing was obviously built with the needs of a future repairman in mind.
Thursday, September 10, 2020
The Agony of Troubleshooting -- From China
I became hopeless, and ordered several LM732,and waiting delivery for days. This beast frustrate me so deeply, changed the LM723 does not help anything. And i almost desoldering everything in the board!
Oh man, I've been there. Several times while in the throes of a troubleshooting battle I have actually had dreams of removing all the parts from a troublesome PC board.
BH1RBG has a very interesting site with lots of ham radio projects:
https://sites.google.com/site/linuxdigitallab/rf-ham-radio?authuser=0
Wednesday, September 9, 2020
Dalibor Farny: Making Nixie Tubes in a Castle in the Czech Republic
“Our customers are interested in technology – some people buy paintings for their wall; our customers buy a technical piece of art. I think they appreciate the fact that someone is keeping old technology alive and they want to support us."
Dalibor Farny is manufacturing Nixie tubes and devices that use them. He is working out of a castle in the Czech Republic. Above is a video about his renovation of his workshop. It was nice that he involved his kids in the project.
This article tells his story:
https://hackspace.raspberrypi.org/articles/meet-the-maker-dalibor-farny
Here is his website: https://www.daliborfarny.com/
YouTube Channel: https://www.youtube.com/channel/UC0IY1BQiMehWMvezqWLyk4g
Tuesday, September 8, 2020
Builds Oscilloscope at age 12! Nick has THE KNACK
Thanks to Grayson Evans for sending us this very encouraging video.
It is from Tektronix; I wonder if Alan W2AEW provided some ideas and inspiration?
More stories like this: https://www.tek.com/stories
Sunday, September 6, 2020
Twenty-nine S-38s on Craig's List
This is almost like a nightmare. I guess it could be worse -- they could all be E models.
https://boston.craigslist.org/gbs/ele/d/arlington-twenty-nine-29-variouss/7188621508.html
Thanks to Jim W3BH for alerting us to this, uh, opportunity.
Marc Verdiell Has The Knack
Here is Marc Verdiell, the "Curious Marc" who repaired the Soyuz Clock (shown in yesterday's blog post).
Really cool. Many SolderSmoke fans will completely understand Marc and his passion for
electronics.
Saturday, September 5, 2020
Taming Glitches in a Soyuz Space Clock (Plus -- Inside a Logic Chip and How Crystals Work)
Thanks to Bob KD4EBM for sending this.
There is so much good info in this video: They crack open a logic chip and look at the internal construction (it is entirely understandable by mortal minds). They use cool test gear to troubleshoot the clock from a Soyuz spacecraft. They explain very clearly the series and parallel resonances of quartz crystals, then display these resonances on a very nice spectrum analyzer.
The creator of the video is CuriousMarc. He has many other interesting projects:
https://www.youtube.com/c/CuriousMarc/featured
https://www.curiousmarc.com/
Monday, August 31, 2020
Global Collaboration: The uSDX -- A Multi-Mode QCX
Sunday, August 30, 2020
Friday, August 28, 2020
Andreas Spiess (The Guy with Swiss Accent) -- Workshop Tips
Thanks to Paul Taylor VK3HN for alerting me to the YouTube channel of Andreas Spiess. There are lots of great projects there, including several videos on building an Oscar 100 ground station.
In the video above, Andreas talks about his lab/workshop. He is more focused on digital projects than I am, but I found many of his tips applicable to the analog world. And of course the more digitally oriented readers will find Andreas's observations especially useful.
I was sold on this video when Andreas reached to his book shelf and showed us Tracey Kidder's "Soul of the New Machine." That is the book that brought the word "soul" into the SolderSmoke lexicon.
There are many great videos on Andreas's channel. I found his Playlists page to be a good way to see the many different catergories of his projects:
https://www.youtube.com/c/AndreasSpiess/playlists
Thanks Andreas.
Thursday, August 27, 2020
A Song Fom Dexter ZL2DEX
'50 Ways':
"Get on the band, Stan,
Trigger the mic, Ike,
Tap your key, Lee,
Listen for me.
Paddle the bug, Doug,
Watch the waterfall, Paul,
Just QSO, Joe,
when conditions agree."
73
Dex, ZL2DEX
Chuck Adams K7QO's AMAZING Lab Notebook
Thanks to Tony G4WIF for alerting me to this amazing (and free!) e-book by QRP Master Builder Chuck Adams K7QO:
https://www.k7qo.com/lab.pdf
There is a lot of wisdom and tribal knowledge in that .pdf.
Thanks Chuck.
Wednesday, August 26, 2020
Mars is BACK! 2020 Opposition! Don't Miss it!
![]() |
2004 |
It was quite humid in Northern Virginia on the morning of 25 August 2020, but the skies were surprisingly clear. I stepped outside at about 0500 local time, coffee cup in hand. Venus was blazing in the east. Then I saw this big very bright red thing high in the southern sky. It seemed almost too bright and too high in the sky to be Mars. But a quick check with Stellarium showed that it was in fact the Red Planet. I pulled out my six inch Dobsonian reflector telescope and soon had Mars in the eyepiece.
For the first time in many years I could see surface features: It is springtime in the southern hemisphere of Mars, but the Southern Polar Cap (which recedes in the summer) was still very prominent (in my eyepiece it was near the top, as in the GIF above) . I could also see an albedo (dark on light) feature below the icecap.
I went out again on the morning of 26 August 2020. Again the Southern Polar Cap was very visible. Below it, near the center of the disc, I could make out a large albedo feature. I am pretty sure that is Mare Erythraeum.
Above is what Stellarium presented as Mars as viewed from Earth this morning. The Southern Polar Cap is much more prominent in my telescope (you can see it in the upper right in the image above). The large dark thing near the center of the disc is Erythraeum. In the Stellarium image you can see the enormous Vallis Marinaris canyon shooting off to the lower right (sadly I could not see this in my telescope).
The GIF at the top of this post gives a much better view than I get with my little six inch telescope. The GIF gives a good idea of what the albedo features and the ice cap look like.
This was a great time for me to see these things. I'm almost done with the second book in Kim Stanley Robinson's Mars Trilogy -- much of the story takes place in sanctuaries carved under the Southern ice cap, and in Hellas (which Robinson's colonists are filling with water). During the 2018 Earth-Mars opposition a big dust storm made it impossible for me to see anything on Mars; a similar storm takes place during book one of Robinson's Trilogy. And right now the Perseverance rover is on its way to Mars.
This 2020 opposition will be the best one until 2033. So don't miss it.

Here is a good article on observing Mars during the current opposition:
https://www.skyatnightmagazine.com/advice/skills/how-to-observe-mars/
Here are technical details on the 2020 opposition:
http://www.alpo-astronomy.org/jbeish/2020_MARS.htm
To see what side of Mars is facing us at any time, use Sky and Telescope's Mars Profiler:
https://skyandtelescope.org/observing/interactive-sky-watching-tools/mars-which-side-is-visible/#
Here is a very informative video about the 2020 opposition:
And remember: The Elser-Mathes Cup has still not been won.
Tuesday, August 25, 2020
Great Video on PC Board Techniques, with a Focus on Surface Mount
Wow, lots of wisdom in this video from Leo Fernekes. Great hints and kinks on prototyping with copper clad boards. I need a Dremel just so that I can make Leo's board cutter. And I can see that I need some of that liquid flux and isopropyl alcohol. Surf boards and headers! Who knew? Teflon coating for the wires -- gotta get it. Glad to see that Leo is also a fan of copper tape.
His emphasis on the importance of stage-by-stage construction and testing is right on the mark.
My only disagreement with Leo is about his use of steel wool. I've found that steel wool will inevitably cause little tiny "Murphy Whiskers" to float around your workbench. They will eventually settle onto the most inconvenient and damaging place on your board. So I have banished steel wool from my workshop. Those green, non-metallic Scotch Brite pads work just as well and don't cause shorts.
Three cheers for Leo. He is based in Thailand. He has an interesting background and some really amazing projects and insights:
http://www.luminati.aero/leofernekes
http://www.fernekes.com/blog/
https://www.youtube.com/channel/UCe1bjEcBichpiAMhExh0NiQ/videos
Thanks to Tore LB4RG for alerting us to Leo's video.
Monday, August 24, 2020
Experimental Methods Book on Clearance sale -- $20
And it includes a .pdf copy of Solid State Design for the Radio Amateur.
Video on the Strange Tuning of the Radio Shack DX-390 Receiver
I'm more of a single conversion guy myself, but in working with the DX-390 I came to appreciate the benefits (especially regarding image rejection) of the double conversion technique.
While working on the DX-390, I discovered that the BFO control on the front panel DOES NOT change the BFO frequency. It was fun to try to figure out why the designers did it this way. It does make sense once you consider the limitation imposed by that PLL main tuning oscillator that only moves in 1 kHz steps. I hope the video explains things.
Here is the drawing I used in the video:
Sunday, August 23, 2020
Mike WU2D's Great Drake TR-3 Refurb Video -- Part 2
Mike WU2D made another very nice video about his Drake TR-3 refurb.
He cracked me up when he noticed that one of the calibration oscillators was 30 Hz off. "Let's pretend we care," said Mike. Indeed. But it was probably wise to tackle this problem, given how upset modern hams seem to get with 30 Hz discrepancies. Mike noted that the problem was casued by "aging cystals." Yikes! Another thing to worry about, along with the Southern Magnetic Anomaly.
Once again Mike has added a useful term to our lexicon: "The Dribble Method" of signal injection (or extraction): Just wrap a few turns of insulated wire around the tube or IF can and inject or measure away.
Neutralization! Now there's a blast from the Thermatron past. I haven't done that in a long time. I liked Mike's "reverse neutralization" method.
Mike's video featured some real Boatanchor eye candy. That Heathkit HR-10 receiver caught my eye, as did that HP signal generator.
Thanks Mike. One hand behind your back OM.
Saturday, August 22, 2020
Very Cool Vosworx AZ-EL Satellite Tracker
When I was in the Dominican Republic working the RS satellites, MIR and the Space Shuttle, I didn't have an elevation rotator. I could only move the antenna in the azimuth plane. So I just aimed it about 45 degrees above the horizon, spun it around, and hoped for the best. I also had no computer control of the azimuth heading -- I'd just watch the location of the satellite on my computer screen and operate the rotator control manually.
This device is a big improvement.