├── .gitignore ├── LICENSE.txt ├── README.md ├── devicetree ├── README.md ├── am335x-bone-common.dtsi ├── am335x-boneblack.dtb ├── am335x-boneblack.dts ├── am33xx.dtsi ├── cape-beagledancer-00A0.dtbo ├── cape-beagledancer-00A0.dts ├── skeleton.dtsi └── tps65217.dtsi ├── hardware ├── beagledancer.cmp ├── beagledancer.kicad_pcb ├── beagledancer.lst ├── beagledancer.net ├── beagledancer.pro ├── beagledancer.sch └── lib │ ├── beagledancer.lib │ └── beagledancer.mod └── python └── GoodFET.py /.gitignore: -------------------------------------------------------------------------------- 1 | *-cache.lib 2 | *bak 3 | beagledancer.kicad_pcb-bak 4 | gerber/ 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/README.md -------------------------------------------------------------------------------- /devicetree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/README.md -------------------------------------------------------------------------------- /devicetree/am335x-bone-common.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/am335x-bone-common.dtsi -------------------------------------------------------------------------------- /devicetree/am335x-boneblack.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/am335x-boneblack.dtb -------------------------------------------------------------------------------- /devicetree/am335x-boneblack.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/am335x-boneblack.dts -------------------------------------------------------------------------------- /devicetree/am33xx.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/am33xx.dtsi -------------------------------------------------------------------------------- /devicetree/cape-beagledancer-00A0.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/cape-beagledancer-00A0.dtbo -------------------------------------------------------------------------------- /devicetree/cape-beagledancer-00A0.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/cape-beagledancer-00A0.dts -------------------------------------------------------------------------------- /devicetree/skeleton.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/skeleton.dtsi -------------------------------------------------------------------------------- /devicetree/tps65217.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/devicetree/tps65217.dtsi -------------------------------------------------------------------------------- /hardware/beagledancer.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/hardware/beagledancer.cmp -------------------------------------------------------------------------------- /hardware/beagledancer.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/hardware/beagledancer.kicad_pcb -------------------------------------------------------------------------------- /hardware/beagledancer.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/hardware/beagledancer.lst -------------------------------------------------------------------------------- /hardware/beagledancer.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/hardware/beagledancer.net -------------------------------------------------------------------------------- /hardware/beagledancer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/hardware/beagledancer.pro -------------------------------------------------------------------------------- /hardware/beagledancer.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/hardware/beagledancer.sch -------------------------------------------------------------------------------- /hardware/lib/beagledancer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/hardware/lib/beagledancer.lib -------------------------------------------------------------------------------- /hardware/lib/beagledancer.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/hardware/lib/beagledancer.mod -------------------------------------------------------------------------------- /python/GoodFET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicgs/BeagleDancer/HEAD/python/GoodFET.py --------------------------------------------------------------------------------