├── .gitignore ├── LICENSE ├── README.md ├── communication_protocol.md ├── cover_image.jpg ├── emulator.py ├── extract_secrets.py └── symbols └── xonlinedash.xbe.xml /.gitignore: -------------------------------------------------------------------------------- 1 | secrets/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarmash/XboxWirelessAdapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarmash/XboxWirelessAdapter/HEAD/README.md -------------------------------------------------------------------------------- /communication_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarmash/XboxWirelessAdapter/HEAD/communication_protocol.md -------------------------------------------------------------------------------- /cover_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarmash/XboxWirelessAdapter/HEAD/cover_image.jpg -------------------------------------------------------------------------------- /emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarmash/XboxWirelessAdapter/HEAD/emulator.py -------------------------------------------------------------------------------- /extract_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarmash/XboxWirelessAdapter/HEAD/extract_secrets.py -------------------------------------------------------------------------------- /symbols/xonlinedash.xbe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarmash/XboxWirelessAdapter/HEAD/symbols/xonlinedash.xbe.xml --------------------------------------------------------------------------------