25mW Tx with TSA6057 PLL

Everything technical about radio can be discussed here, whether it's transmitting or receiving. Guides, charts, diagrams, etc. are all welcome.
Post Reply
1608cc
who u callin ne guy bruv
who u callin ne guy bruv
Posts: 37
Joined: Wed Jan 24, 2018 8:54 pm
Location: Poland

25mW Tx with TSA6057 PLL

Post by 1608cc » Thu Apr 08, 2021 7:59 pm

My first exciter with PLL :D Seiler oscillator on BF240, then BF960 buffer amp, and BFR91 final stage. Output power is 25mW @ 50ohms. PLL is old philips I2C controlled TSA6057. Programming via Attiny13 with memory of 4 various freq.
1.jpg
2.jpg
schematic.png
TX 25mW.zip
You do not have the required permissions to view the files attached to this post.

User avatar
Bton-FM
tower block dreamin
tower block dreamin
Posts: 463
Joined: Sun Jun 16, 2019 2:55 pm
Location: Beside the seaside

Re: 25mW Tx with TSA6057 PLL

Post by Bton-FM » Thu Apr 08, 2021 8:37 pm

Nice work 1608cc! I like how you’ve included a screen between the PLL section and the oscillator.

I also use an ATtiny in my board, but an SMD version. So far I’ve written code for the TSA5511, MC145170, LMX2306 and SAA1057. I need to test the last two out but my TSA5511 code and MC145170 code both work fine.

PICs are nice and powerful, but expensive! You don’t need a powerful MCU for controlling PLLs, it’s a simple task.

User avatar
Zozo
tower block dreamin
tower block dreamin
Posts: 256
Joined: Sun Feb 14, 2021 9:33 am
Location: 3rd rock from the Sun

Re: 25mW Tx with TSA6057 PLL

Post by Zozo » Thu Apr 08, 2021 9:22 pm

That's great work 1608cc, the construction is so neat and tidy. :tup I would like to have a go at building this soon.

I've never used the TSA6057 before or an ATtiny, so this will be all new to me.

EDIT Sorry if this is a bit cheeky to ask, But is it possible for you to share the Gerber Files? I have no way of etching boards at home now, and I like to avoid using such chemicals
Give me a AM transmitter with things that glow any day.

User avatar
sinus trouble
proppa neck!
proppa neck!
Posts: 1410
Joined: Fri Aug 22, 2014 11:34 pm

Re: 25mW Tx with TSA6057 PLL

Post by sinus trouble » Thu Apr 08, 2021 11:29 pm

Excellent work 1068cc :)

Very tidy and a great vintage look!

It seems both of your varicaps are fed from the control voltage loop? Do you achieve a better tuning range that way, and does it compromise your audio in any way?
I am as stupid as I look! :|

1608cc
who u callin ne guy bruv
who u callin ne guy bruv
Posts: 37
Joined: Wed Jan 24, 2018 8:54 pm
Location: Poland

Re: 25mW Tx with TSA6057 PLL

Post by 1608cc » Fri Apr 09, 2021 1:00 am

Bton-FM wrote: Thu Apr 08, 2021 8:37 pm Nice work 1608cc! I like how you’ve included a screen between the PLL section and the oscillator.

I also use an ATtiny in my board, but an SMD version. So far I’ve written code for the TSA5511, MC145170, LMX2306 and SAA1057. I need to test the last two out but my TSA5511 code and MC145170 code both work fine.

PICs are nice and powerful, but expensive! You don’t need a powerful MCU for controlling PLLs, it’s a simple task.
I don't need LCD and 256kB uC - small microcontroller with 8 pins do same job 8-) , especially if the the frequency doesn't change 10 times per minute - dip sw is enough. I use AVRs, because they are much cheaper than PICs. Also programmer isn't costful, and there are way more tutorials for avr's. Whats weird 99% RDS encoders are based on PICs :lol: I have some 5511 and 1057 too so I will use them in next projects. TSA6057 is fine, but on the high charge pump current (450uA) there is lot of noise produced. On the low 5uA everything is OK. SAA1057 should be better choice (it was originally purposed for this project) because has more charge pump current values to choose.
Zozo wrote: Thu Apr 08, 2021 9:22 pm EDIT Sorry if this is a bit cheeky to ask, But is it possible for you to share the Gerber Files? I have no way of etching boards at home now, and I like to avoid using such chemicals
sure, I will attach gerbers when I get access to my PC
sinus trouble wrote: Thu Apr 08, 2021 11:29 pm It seems both of your varicaps are fed from the control voltage loop? Do you achieve a better tuning range that way, and does it compromise your audio in any way?
Modulation circuit design (these two varicaps and LC filter at the top) is coming from factory transmitter. It give really clean sound without noise, and ensure same loud on 88 and 108. I checked and with values from my schematic it allow to tune from 60MHz to 120MHz (0-12V), so lets guess what will happen if we will use full 30V varicap voltage :D I also noticed that BFR final stage can very easly start interferencing (you will hear cyclical popping in audio) - probably to much gain, additional wall between its base and collector can help, or decrease 1k resistor in its collector

User avatar
sinus trouble
proppa neck!
proppa neck!
Posts: 1410
Joined: Fri Aug 22, 2014 11:34 pm

Re: 25mW Tx with TSA6057 PLL

Post by sinus trouble » Fri Apr 09, 2021 1:37 am

Yeh it may just be me? The higher frequencies of my audio seem to roll off relative to the loop voltage or bias of the varicap?

If the voltage is too low? The sound is loud and crisp! If too high? The sound is dull! I dunno what it is but the sweet spot seems to be around 3 - 4V?
I am as stupid as I look! :|

1608cc
who u callin ne guy bruv
who u callin ne guy bruv
Posts: 37
Joined: Wed Jan 24, 2018 8:54 pm
Location: Poland

Re: 25mW Tx with TSA6057 PLL

Post by 1608cc » Fri Apr 09, 2021 9:44 am

I think 3V is safe border - under that voltage varicaps behave very nonlinear, and on lower voltages there is more noise produced. Mine is ~5V at 90 MHz. Also see, that input voltage in this modulation circuit can't be higher than tune voltage, because then first varicap will start conducting as normal diode, so these ~ 3V margin should be kept to avoid that.

Gerbers :
Tx.zip
You do not have the required permissions to view the files attached to this post.

User avatar
Zozo
tower block dreamin
tower block dreamin
Posts: 256
Joined: Sun Feb 14, 2021 9:33 am
Location: 3rd rock from the Sun

Re: 25mW Tx with TSA6057 PLL

Post by Zozo » Fri Apr 09, 2021 11:17 am

Thank you 1608cc, It's a very interesting project you've put together and I will enjoy building it. I will need to source and buy all the components first, before I get the PCB made.
Give me a AM transmitter with things that glow any day.

radium98
proppa neck!
proppa neck!
Posts: 907
Joined: Fri Aug 26, 2016 7:01 pm

Re: 25mW Tx with TSA6057 PLL

Post by radium98 » Sat Apr 10, 2021 5:46 pm

such a good work :)

MiXiN
proppa neck!
proppa neck!
Posts: 612
Joined: Sun Sep 07, 2014 4:20 pm

Re: 25mW Tx with TSA6057 PLL

Post by MiXiN » Sat Apr 10, 2021 9:29 pm

Very nice.

Some cracking work being done on here at the moment, presumably because of lockdown & heaps of spare time. :D

Keep up the good work.

Gigahertz
no manz can test innit
no manz can test innit
Posts: 249
Joined: Fri May 08, 2015 6:42 pm

Re: 25mW Tx with TSA6057 PLL

Post by Gigahertz » Tue Jul 27, 2021 12:05 pm

Thanks for sharing 1608cc!

Decided to order some boards and give it a try. Also give me some expericence with programming!
You do not have the required permissions to view the files attached to this post.

1608cc
who u callin ne guy bruv
who u callin ne guy bruv
Posts: 37
Joined: Wed Jan 24, 2018 8:54 pm
Location: Poland

Re: 25mW Tx with TSA6057 PLL

Post by 1608cc » Thu Jul 29, 2021 5:40 pm

Gigahertz wrote: Tue Jul 27, 2021 12:05 pm Thanks for sharing 1608cc!

Decided to order some boards and give it a try. Also give me some expericence with programming!
:tup

1608cc
who u callin ne guy bruv
who u callin ne guy bruv
Posts: 37
Joined: Wed Jan 24, 2018 8:54 pm
Location: Poland

Re: 25mW Tx with TSA6057 PLL

Post by 1608cc » Thu Jul 29, 2021 6:57 pm

I changed soft a bit - PLL current value is read from eeprom (00 is LOW, the rest values from range 01 to FF is HIGH), all 3 dip switches set frequency - there are 8 presets available now. SW in attachment
config.jpg
sw v1.1.zip
You do not have the required permissions to view the files attached to this post.

Post Reply