├── .gitignore ├── .vscode └── settings.json ├── README.md ├── attack ├── CMakeLists.txt ├── attack.c └── pico_sdk_import.cmake ├── dump.py ├── img ├── BPExample.png ├── DataRetention.png ├── PowerGlitching.png └── showcase.gif └── target ├── Makefile ├── entry.S ├── main.c └── ram.ld /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/README.md -------------------------------------------------------------------------------- /attack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/attack/CMakeLists.txt -------------------------------------------------------------------------------- /attack/attack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/attack/attack.c -------------------------------------------------------------------------------- /attack/pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/attack/pico_sdk_import.cmake -------------------------------------------------------------------------------- /dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/dump.py -------------------------------------------------------------------------------- /img/BPExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/img/BPExample.png -------------------------------------------------------------------------------- /img/DataRetention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/img/DataRetention.png -------------------------------------------------------------------------------- /img/PowerGlitching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/img/PowerGlitching.png -------------------------------------------------------------------------------- /img/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/img/showcase.gif -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/target/entry.S -------------------------------------------------------------------------------- /target/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/target/main.c -------------------------------------------------------------------------------- /target/ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTXz/stm32f1-picopwner/HEAD/target/ram.ld --------------------------------------------------------------------------------