├── README.md ├── requirements.txt ├── screenshots ├── SS1_AutomatedGlitch.png ├── SS2_Chipwhisperer.png ├── SS3_PowerSupply.png ├── SS4_SerialPort.png ├── SS5_Debugger.png └── SS6_About.png └── src ├── Config.glitchy ├── Dev_Board_Dump.glitchy ├── Main.py ├── config.py ├── controllers ├── ChipWhisperer.py ├── EnvoxBB3.py ├── GlitchyController.py ├── PowerSupply.py └── Serial.py ├── core ├── Controller.py └── Core.py ├── models └── GlitchyData.py └── views ├── Events.py ├── FieldValidate.py ├── StartupView.py ├── View.py ├── media ├── Glitchy v021_resized_scaled.png └── Glitchy.png └── pygubu └── Glitchy_v0.2.ui /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/SS1_AutomatedGlitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/screenshots/SS1_AutomatedGlitch.png -------------------------------------------------------------------------------- /screenshots/SS2_Chipwhisperer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/screenshots/SS2_Chipwhisperer.png -------------------------------------------------------------------------------- /screenshots/SS3_PowerSupply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/screenshots/SS3_PowerSupply.png -------------------------------------------------------------------------------- /screenshots/SS4_SerialPort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/screenshots/SS4_SerialPort.png -------------------------------------------------------------------------------- /screenshots/SS5_Debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/screenshots/SS5_Debugger.png -------------------------------------------------------------------------------- /screenshots/SS6_About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/screenshots/SS6_About.png -------------------------------------------------------------------------------- /src/Config.glitchy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/Config.glitchy -------------------------------------------------------------------------------- /src/Dev_Board_Dump.glitchy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/Dev_Board_Dump.glitchy -------------------------------------------------------------------------------- /src/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/Main.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/config.py -------------------------------------------------------------------------------- /src/controllers/ChipWhisperer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/controllers/ChipWhisperer.py -------------------------------------------------------------------------------- /src/controllers/EnvoxBB3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/controllers/EnvoxBB3.py -------------------------------------------------------------------------------- /src/controllers/GlitchyController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/controllers/GlitchyController.py -------------------------------------------------------------------------------- /src/controllers/PowerSupply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/controllers/PowerSupply.py -------------------------------------------------------------------------------- /src/controllers/Serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/controllers/Serial.py -------------------------------------------------------------------------------- /src/core/Controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/core/Controller.py -------------------------------------------------------------------------------- /src/core/Core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/core/Core.py -------------------------------------------------------------------------------- /src/models/GlitchyData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/models/GlitchyData.py -------------------------------------------------------------------------------- /src/views/Events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/views/Events.py -------------------------------------------------------------------------------- /src/views/FieldValidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/views/FieldValidate.py -------------------------------------------------------------------------------- /src/views/StartupView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/views/StartupView.py -------------------------------------------------------------------------------- /src/views/View.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/views/View.py -------------------------------------------------------------------------------- /src/views/media/Glitchy v021_resized_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/views/media/Glitchy v021_resized_scaled.png -------------------------------------------------------------------------------- /src/views/media/Glitchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/views/media/Glitchy.png -------------------------------------------------------------------------------- /src/views/pygubu/Glitchy_v0.2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBangingBytes/Glitchy/HEAD/src/views/pygubu/Glitchy_v0.2.ui --------------------------------------------------------------------------------