├── .gitignore ├── PCB ├── custom.lbr ├── eagle.epf ├── layout.pdf ├── schematic.pdf ├── untitled.brd └── untitled.sch └── SRC ├── .ccsproject ├── .cproject ├── .project ├── common.cpp ├── common.h ├── data.cpp ├── data.h ├── device.cpp ├── device.h ├── flash.cpp ├── flash.h ├── lnk_msp430g2211.cmd ├── main.cpp └── targetConfigs ├── MSP430G2211.ccxml └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/.gitignore -------------------------------------------------------------------------------- /PCB/custom.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/PCB/custom.lbr -------------------------------------------------------------------------------- /PCB/eagle.epf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/PCB/eagle.epf -------------------------------------------------------------------------------- /PCB/layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/PCB/layout.pdf -------------------------------------------------------------------------------- /PCB/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/PCB/schematic.pdf -------------------------------------------------------------------------------- /PCB/untitled.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/PCB/untitled.brd -------------------------------------------------------------------------------- /PCB/untitled.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/PCB/untitled.sch -------------------------------------------------------------------------------- /SRC/.ccsproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/.ccsproject -------------------------------------------------------------------------------- /SRC/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/.cproject -------------------------------------------------------------------------------- /SRC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/.project -------------------------------------------------------------------------------- /SRC/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/common.cpp -------------------------------------------------------------------------------- /SRC/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/common.h -------------------------------------------------------------------------------- /SRC/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/data.cpp -------------------------------------------------------------------------------- /SRC/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/data.h -------------------------------------------------------------------------------- /SRC/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/device.cpp -------------------------------------------------------------------------------- /SRC/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/device.h -------------------------------------------------------------------------------- /SRC/flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/flash.cpp -------------------------------------------------------------------------------- /SRC/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/flash.h -------------------------------------------------------------------------------- /SRC/lnk_msp430g2211.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/lnk_msp430g2211.cmd -------------------------------------------------------------------------------- /SRC/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/main.cpp -------------------------------------------------------------------------------- /SRC/targetConfigs/MSP430G2211.ccxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/targetConfigs/MSP430G2211.ccxml -------------------------------------------------------------------------------- /SRC/targetConfigs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HclX/DELL_POWER_SPOOFER/HEAD/SRC/targetConfigs/readme.txt --------------------------------------------------------------------------------