├── .gitignore ├── LICENSE ├── README.md ├── assets ├── hw │ ├── mobo_pinout │ │ ├── diagram.png │ │ └── uart_v0.1_teensy2.0.hex │ ├── spiway │ │ ├── diagram.jpg │ │ └── spiway_v0.60_teensy2.0.hex │ ├── syscon_flasher │ │ ├── diagram.jpg │ │ ├── syscon_flasher_v2.02_teensy2.0.hex │ │ ├── syscon_flasher_v2.02_teensy4.0.hex │ │ └── syscon_flasher_v2.02_teensy4.1.hex │ └── syscon_reader │ │ ├── diagram.jpg │ │ ├── syscon_reader.hex │ │ └── syscon_reader.ino └── splash.png ├── config.ini ├── data ├── data.py ├── genData.py └── md5.txt ├── fws └── README.md ├── lang ├── _i18n_.py ├── en.py ├── es.py ├── pl.py ├── pt.py └── ru.py ├── ps4-wee-tools.py ├── run.bat ├── tools ├── AdvSFlashTools.py ├── AdvSysconTools.py ├── SFlashTools.py ├── SysconTools.py └── Tools.py └── utils ├── encdec.py ├── scflasher.py ├── serial.py ├── sflash.py ├── slb2.py ├── spiway.py ├── syscon.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/README.md -------------------------------------------------------------------------------- /assets/hw/mobo_pinout/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/mobo_pinout/diagram.png -------------------------------------------------------------------------------- /assets/hw/mobo_pinout/uart_v0.1_teensy2.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/mobo_pinout/uart_v0.1_teensy2.0.hex -------------------------------------------------------------------------------- /assets/hw/spiway/diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/spiway/diagram.jpg -------------------------------------------------------------------------------- /assets/hw/spiway/spiway_v0.60_teensy2.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/spiway/spiway_v0.60_teensy2.0.hex -------------------------------------------------------------------------------- /assets/hw/syscon_flasher/diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/syscon_flasher/diagram.jpg -------------------------------------------------------------------------------- /assets/hw/syscon_flasher/syscon_flasher_v2.02_teensy2.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/syscon_flasher/syscon_flasher_v2.02_teensy2.0.hex -------------------------------------------------------------------------------- /assets/hw/syscon_flasher/syscon_flasher_v2.02_teensy4.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/syscon_flasher/syscon_flasher_v2.02_teensy4.0.hex -------------------------------------------------------------------------------- /assets/hw/syscon_flasher/syscon_flasher_v2.02_teensy4.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/syscon_flasher/syscon_flasher_v2.02_teensy4.1.hex -------------------------------------------------------------------------------- /assets/hw/syscon_reader/diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/syscon_reader/diagram.jpg -------------------------------------------------------------------------------- /assets/hw/syscon_reader/syscon_reader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/syscon_reader/syscon_reader.hex -------------------------------------------------------------------------------- /assets/hw/syscon_reader/syscon_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/hw/syscon_reader/syscon_reader.ino -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/assets/splash.png -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | lang = en 2 | -------------------------------------------------------------------------------- /data/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/data/data.py -------------------------------------------------------------------------------- /data/genData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/data/genData.py -------------------------------------------------------------------------------- /data/md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/data/md5.txt -------------------------------------------------------------------------------- /fws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/fws/README.md -------------------------------------------------------------------------------- /lang/_i18n_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/lang/_i18n_.py -------------------------------------------------------------------------------- /lang/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/lang/en.py -------------------------------------------------------------------------------- /lang/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/lang/es.py -------------------------------------------------------------------------------- /lang/pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/lang/pl.py -------------------------------------------------------------------------------- /lang/pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/lang/pt.py -------------------------------------------------------------------------------- /lang/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/lang/ru.py -------------------------------------------------------------------------------- /ps4-wee-tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/ps4-wee-tools.py -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | py "%~dp0\ps4-wee-tools.py" %* 3 | pause -------------------------------------------------------------------------------- /tools/AdvSFlashTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/tools/AdvSFlashTools.py -------------------------------------------------------------------------------- /tools/AdvSysconTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/tools/AdvSysconTools.py -------------------------------------------------------------------------------- /tools/SFlashTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/tools/SFlashTools.py -------------------------------------------------------------------------------- /tools/SysconTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/tools/SysconTools.py -------------------------------------------------------------------------------- /tools/Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/tools/Tools.py -------------------------------------------------------------------------------- /utils/encdec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/utils/encdec.py -------------------------------------------------------------------------------- /utils/scflasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/utils/scflasher.py -------------------------------------------------------------------------------- /utils/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/utils/serial.py -------------------------------------------------------------------------------- /utils/sflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/utils/sflash.py -------------------------------------------------------------------------------- /utils/slb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/utils/slb2.py -------------------------------------------------------------------------------- /utils/spiway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/utils/spiway.py -------------------------------------------------------------------------------- /utils/syscon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/utils/syscon.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-man/ps4-wee-tools/HEAD/utils/utils.py --------------------------------------------------------------------------------