Open main menu

Changes

619 bytes added ,  14:09, 15 September 2025
no edit summary
Tracer8420AN/Tracer10420AN
|Solar Charge Controller
|[https://www.st.com/en/microcontrollers-microprocessors/stm32f051c8.html STM32F051C8T7]G4A36AFNNT[https://www.ti.com/lit/ds/symlink/tms320f28023.pdf TMS320F28023PT]
|J2
|-
Tracer3210AN/Tracer4210AN
|Solar Charge Controller
|[https://www.st.com/en/microcontrollers-microprocessors/stm32f030c8.html STM32F030C8T6]
|J6
|-
TRIRON4210N/TRIRON4215N
|Solar Charge Controller
|[https://www.st.com/en/microcontrollers-microprocessors/stm32f030c8.html STM32F030C8T6]
|J6
|-
XTRA3415N/XTRA4415N
|Solar Charge Controller
|[https://www.st.com/en/microcontrollers-microprocessors/stm32f030c8.html STM32F030C8T6]
|J6
|-
|
|-
|MT50/MT52
|Configuration Tool / Display
|[https://www.st.com/en/microcontrollers-microprocessors/stm32f051k8.html STM32F051K8]|F2/F9|-|MT52|Configuration Tool / Display|[https://www.st.com/en/microcontrollers-microprocessors/stm32f030c8.html STM32F030C8T6]
|F2/F9
|-
|PAL-ADP-50AN
|Synchronization Accessory
|[https://www.st.com/en/microcontrollers-microprocessors/stm32f030c8.html STM32F030C8T6]
|J1
|}
===Unlocking SWD===
<codesyntaxhighlight lang="bash">
openocd -s $(pwd) -f interface/stlink-dap.cfg -f target/stm32f0x.cfg
</code>
 
<code>
telnet localhost 4444
</code>
 
<code>
reset init
</code>
 
<code>
stm32f0x unlock 0
</code>
 
<code>
flash erase_address unlock 0x08000000 0x10000
</codesyntaxhighlight>
::Power cycle & reconnect st-link
<codesyntaxhighlight lang="bash">
flash write_image /path/to/dumped_firmware.bin 0x08000000
</code>
 
<code>
reset
</codesyntaxhighlight>
===Dumping Running RAM===
<codesyntaxhighlight lang="bash">
halt
</code>
 
<code>
dump_image /path/to/save/tracer6420an_running_ram.bin 0x20000000 0x2000
</code>
 
<code>
resume
</codesyntaxhighlight>
=== Protocol Documentation ===