Author Topic: CFW for KSGER/Quicko STM32 Soldering Stations  (Read 873298 times)

0 Members and 2 Guests are viewing this topic.

Offline Chris02

  • Contributor
  • Posts: 36
  • Country: de
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4225 on: September 24, 2024, 05:50:02 pm »
I know this problem very well :-) Step by step I'll countinue and I'm sure I'll also need my time ;)

Sometime ago I read a post from you that is it possible e.g. to run a 12V Iron at 24V by setting PWM. Am I right? Is there any documentation how to do it at the station. I guess you have to halve the duty cycle.

Running C470 @48V/6,6A is working pretty well. Now I want to try to use AT420 (tweezer) with two C245 cartridge @48V. So it will be possible to use one power supply für C470/C245.
The Problem will be two C245 parallel (3,2Ω||3,2Ω=1,6Ω) will result a peak current of 30A. Antiparallel PWM, for every cartdrige, can solve the problem. But I'm not able to adapt your code. Maybe a big cap will solve it too.

Are there any other software parameters I can try to solve this problem? I guess "Power" and "PMW Multiplier" can solve it.

Is the Smart Active feature for soldering big ground planes to get faster temperature reaction on the fron of the tip?
« Last Edit: September 24, 2024, 06:03:06 pm by Chris02 »
 

Offline Chris02

  • Contributor
  • Posts: 36
  • Country: de
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4226 on: September 24, 2024, 05:53:29 pm »
And a small picture for modding and flashing T12-955 (v3.3)
 

Offline DavidAlfa

  • Super Contributor
  • ***
  • Posts: 6225
  • Country: es
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4227 on: September 24, 2024, 06:01:36 pm »
Sometime ago I read a post from you that is it possible e.g. to run a 12V Iron at 24V by setting PWM.
It can be done by setting the nominal power in iron settings. The firmware will automatically adjust the PWM based on the voltage reading.
For JBC, increase the PWM frequency to 100Hz so the power delivery is smoother, 5ms ADC delay should be enough.

But 48V looks a bit crazy for C245, not sure if the heater will survive for long with those 15A / 700W pulses!
You could use a 24+24 transformer and switch the secondaries in series or parallel with a relay, toggled by the firmware when choosing C245 o C470 profiles.
« Last Edit: September 24, 2024, 06:03:35 pm by DavidAlfa »
Hantek DSO2x1x            Drive        FAQ          DON'T BUY HANTEK! (Aka HALF-MADE)
Stm32 Soldering FW      Forum      Github      Donate
 

Offline Chris02

  • Contributor
  • Posts: 36
  • Country: de
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4228 on: September 24, 2024, 08:10:20 pm »
Thanks for your reply.

I don't know the inrush current, but I can measure it. That's the smallest problem :-) ATM I'm using a modified Quicko station like this one (https://github.com/deividAlfa/stm32_soldering_iron_controller/tree/master/BOARDS/Quicko/Schematic).
Was very easy to get it working with C470:

 - making normal JBC mod
 - Using a normal T240 handle with C470
 - adjusting voltage reference for ADC
 - replacing "power" mosfet
 - replacing caps (I did after they blow away after first power, coz I forgot it  :-DD)
 - using Meanwell RSP-320-48 Powersupply insead of the internal one

So nominal current of RSP320-48 is 6,7A. Inrush current will be much higher of course. Will firmware calculate right PWM even if the voltage measurement is modfied and I'll also devide every by 2? µC measures 24V instead of 48 because of the adapted voltage divider.

At the moment I'm waiting for Bender Jack to connect the tweezer to the station.

ps: enjoy your cerveza :-)
 

Offline DavidAlfa

  • Super Contributor
  • ***
  • Posts: 6225
  • Country: es
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4229 on: September 24, 2024, 10:16:17 pm »
It's a resistive load, there's no inrush current!
But keep in mind you can't just connect 48V to a t12 board, you'll blow it up.

- The fet is usually rated for 30 or 55V.
- The regulators, capacitors, etc won't be happy.
- The fet driving circuitry is designed for 24V.

The best you can do is to reduce the voltage to 24V and use that for the board, connecting 48V only to the fet.

For tweezers, see this:
https://github.com/deividAlfa/stm32_soldering_iron_controller/discussions/128
« Last Edit: September 24, 2024, 10:19:03 pm by DavidAlfa »
Hantek DSO2x1x            Drive        FAQ          DON'T BUY HANTEK! (Aka HALF-MADE)
Stm32 Soldering FW      Forum      Github      Donate
 

Offline Chris02

  • Contributor
  • Posts: 36
  • Country: de
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4230 on: September 25, 2024, 05:36:16 am »
You are right, there should be no inrush current, was too late yesterday.

As I already said. You need to change just a few parts and the controll unit will work without any problems.
And C470 cartdirges are rated to work with 48V (not 24V!). It is the heavy duty series.

- DC/DC regulator is a XLSEMI XL7005A, rated up to 80V
- Caps are replaced with 63V Caps
- Fet is replaced with AOD409 (60V)
- Voltage divider for ADC voltage measurement R9= 4k7; (R10= still 100k), so it will measure the half


At the end of this week I'll get the jack for the tweezer and start playing with the tweezer. And forgett 48V for the tweezer. It will be a nice to have if you doesn't need a second power supply. But I'll start with 24V.

https://jopl.eu/solderingtweezers.php
That's exactly what I mean. Even with software mod. I just want to do it with and add on PCB, so you don't need to pick and place a complete new pcb.
My problem is, that I'm not able to modify your firmware, that it will work with your latest version. But will check if I can adapt my 955 controll uni with I2C Display.
« Last Edit: September 25, 2024, 05:49:59 am by Chris02 »
 

Offline DavidAlfa

  • Super Contributor
  • ***
  • Posts: 6225
  • Country: es
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4231 on: September 25, 2024, 01:11:21 pm »
Toggling pins, modifying adc factors... I will help for such simple stuff, what I meant yesterday is that I won't spend 5 hours programming someones's custom board...!  :)
Maybe using an adjustable DC/DC converter that allows 48/24V on the fly?
Hantek DSO2x1x            Drive        FAQ          DON'T BUY HANTEK! (Aka HALF-MADE)
Stm32 Soldering FW      Forum      Github      Donate
 

Offline Chris02

  • Contributor
  • Posts: 36
  • Country: de
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4232 on: September 27, 2024, 12:31:59 pm »
I'm sure it is not only someones (my 's), even the community would like it, I'm sure. Using a tweezer makes SMD soldering much more comfortable. Maybe one day you will finde the time :-)  :popcorn:

A DC/DC converter for ~350W coast mostly the same as a 24W 320W Mean Well Power supply. But thanks for your suggestion.
Do you know, if there is any soldering station, which will work with your CFW, and already comes with JBC Hirose jack? I din't find one.
 

Offline DavidAlfa

  • Super Contributor
  • ***
  • Posts: 6225
  • Country: es
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4233 on: September 27, 2024, 01:20:31 pm »
I don't know any...
Hantek DSO2x1x            Drive        FAQ          DON'T BUY HANTEK! (Aka HALF-MADE)
Stm32 Soldering FW      Forum      Github      Donate
 

Offline elektryk

  • Regular Contributor
  • *
  • Posts: 104
  • Country: pl
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4234 on: September 27, 2024, 08:40:35 pm »
Do you know, if there is any soldering station, which will work with your CFW, and already comes with JBC Hirose jack? I din't find one.

You can use stand with Hirose connector and use it as GX12<->Hirose adapter.
 

Offline nokin

  • Regular Contributor
  • *
  • Posts: 61
  • Country: vn
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4235 on: September 28, 2024, 01:18:11 am »
Hi,
I've got some faulty boards of these soldering station front panel, 1.3" Oled. PCB layout revision looks compatible with CFW but these were used chips not STM32.
So I'm going to replace them with STM32 and flash new CFW, maybe it work ?

The original firmware only used with T12 tips.

/sorry for small attached pic.
« Last Edit: October 01, 2024, 03:59:39 am by nokin »
 

Offline DavidAlfa

  • Super Contributor
  • ***
  • Posts: 6225
  • Country: es
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4236 on: September 28, 2024, 12:58:52 pm »
Yes
Hantek DSO2x1x            Drive        FAQ          DON'T BUY HANTEK! (Aka HALF-MADE)
Stm32 Soldering FW      Forum      Github      Donate
 
The following users thanked this post: nokin

Offline nokin

  • Regular Contributor
  • *
  • Posts: 61
  • Country: vn
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4237 on: October 01, 2024, 03:54:02 am »
These board were Ksger v3_4 fw v2.1s but "re-branded" by Wlida sticker and re flashed boot image.
Controller is ARM MM32.

All were broken diode from input power to LDO. Now they are all repaired.
« Last Edit: October 01, 2024, 04:00:34 am by nokin »
 

Offline Chris02

  • Contributor
  • Posts: 36
  • Country: de
Re: CFW for STM32 OLED Digital Soldering Station with T12 Handle
« Reply #4238 on: October 04, 2024, 07:32:53 am »
Edit: It's similar to the KSGER v2.1 but seems to have some differences?

The display, encoder, PWM seem to be the same as the KSGER v2.1, but there are pins with unclear connections.

I didn't find anything about the CEIAH IC.
Seems  to be an independent voltage regulator for the analog? Or at least it sems to power only the op-amp and the stm32 VDDA.
I don't see the NTC anywhere, it's probaby in the handle like the KSGER. Or it might use the internal stm32 sensor.

I see the earth (PE, R25) is joined to the internal ground with a solder bridge. At least in mine, this causes a big reading offset > 70ºC.
I left the original 100K resistor there.

As a reference, check the v2.1 64 pin schematic.
https://github.com/dreamcat4/t12-t245-controllers-docs/blob/master/controllers/stm32-t12-oled/v2.1s-and-Ve2.1S/KSGER%20STM32%20Ver2_1S%20schematic%20rev%202_floobydust.pdf

Don't compare the pin numbers, but the pin names.
Ex.  PA2 is pin 12 in 48-pin package or pin 16 in 64-pin. If the same signal go to to PA2 in both, the firmware would work right away.



Any one who knows which Step Down U1 "W539" is? Mine is marked also with W539.
 

Offline DavidAlfa

  • Super Contributor
  • ***
  • Posts: 6225
  • Country: es
Hantek DSO2x1x            Drive        FAQ          DON'T BUY HANTEK! (Aka HALF-MADE)
Stm32 Soldering FW      Forum      Github      Donate
 

Offline itscoldoutside

  • Contributor
  • Posts: 11
  • Country: gb
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4240 on: October 04, 2024, 07:56:41 pm »
I noticed the custom firmware has a note 'Dedicated Stand input where supported (T12-958 v2 has this).' does anyone know how this works (magnet?) or if you need a special stand.
 

Offline DavidAlfa

  • Super Contributor
  • ***
  • Posts: 6225
  • Country: es
Re: CFW for KSGER/Quicko STM32 Soldering Stations
« Reply #4241 on: October 04, 2024, 08:28:39 pm »
Detected when that pin is connected to ground, left floating when the handle is released.
Hantek DSO2x1x            Drive        FAQ          DON'T BUY HANTEK! (Aka HALF-MADE)
Stm32 Soldering FW      Forum      Github      Donate
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf