├── .gitignore ├── README.md ├── cal.py ├── cal.sh ├── cal_dfm.py ├── cal_dir.py ├── cbct.py ├── decode.py ├── dexis_cal.py ├── dump_dev.py ├── fire.py ├── firmware ├── 99-gendex.rules ├── README.md ├── gx_bootloader.ihx ├── gx_i_firmware.ihx └── gx_ii_firmware.ihx ├── format.sh ├── gxs700 ├── .gitignore ├── __init__.py ├── fpga.py ├── fw_lg.py ├── fw_sm.py ├── im_util.py ├── img.py ├── process_main.py ├── raw_main.py ├── usbint.py ├── util.py └── xray.py ├── hist_eq.py ├── hist_eq_dir.py ├── img2bin.py ├── main.py ├── mask.py ├── noise_test.py ├── process.py ├── prog_eeprom.py ├── radmon.py ├── raw.py ├── restore_dev.py ├── rst.py ├── scrape.py ├── setup.py ├── stitch.sh ├── trig.py └── udev.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/README.md -------------------------------------------------------------------------------- /cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/cal.py -------------------------------------------------------------------------------- /cal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/cal.sh -------------------------------------------------------------------------------- /cal_dfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/cal_dfm.py -------------------------------------------------------------------------------- /cal_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/cal_dir.py -------------------------------------------------------------------------------- /cbct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/cbct.py -------------------------------------------------------------------------------- /decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/decode.py -------------------------------------------------------------------------------- /dexis_cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/dexis_cal.py -------------------------------------------------------------------------------- /dump_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/dump_dev.py -------------------------------------------------------------------------------- /fire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/fire.py -------------------------------------------------------------------------------- /firmware/99-gendex.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/firmware/99-gendex.rules -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/firmware/README.md -------------------------------------------------------------------------------- /firmware/gx_bootloader.ihx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/firmware/gx_bootloader.ihx -------------------------------------------------------------------------------- /firmware/gx_i_firmware.ihx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/firmware/gx_i_firmware.ihx -------------------------------------------------------------------------------- /firmware/gx_ii_firmware.ihx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/firmware/gx_ii_firmware.ihx -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/format.sh -------------------------------------------------------------------------------- /gxs700/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/.gitignore -------------------------------------------------------------------------------- /gxs700/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gxs700/fpga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/fpga.py -------------------------------------------------------------------------------- /gxs700/fw_lg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/fw_lg.py -------------------------------------------------------------------------------- /gxs700/fw_sm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/fw_sm.py -------------------------------------------------------------------------------- /gxs700/im_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/im_util.py -------------------------------------------------------------------------------- /gxs700/img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/img.py -------------------------------------------------------------------------------- /gxs700/process_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/process_main.py -------------------------------------------------------------------------------- /gxs700/raw_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/raw_main.py -------------------------------------------------------------------------------- /gxs700/usbint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/usbint.py -------------------------------------------------------------------------------- /gxs700/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/util.py -------------------------------------------------------------------------------- /gxs700/xray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/gxs700/xray.py -------------------------------------------------------------------------------- /hist_eq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/hist_eq.py -------------------------------------------------------------------------------- /hist_eq_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/hist_eq_dir.py -------------------------------------------------------------------------------- /img2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/img2bin.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/main.py -------------------------------------------------------------------------------- /mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/mask.py -------------------------------------------------------------------------------- /noise_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/noise_test.py -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/process.py -------------------------------------------------------------------------------- /prog_eeprom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/prog_eeprom.py -------------------------------------------------------------------------------- /radmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/radmon.py -------------------------------------------------------------------------------- /raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/raw.py -------------------------------------------------------------------------------- /restore_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/restore_dev.py -------------------------------------------------------------------------------- /rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/rst.py -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/scrape.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/setup.py -------------------------------------------------------------------------------- /stitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/stitch.sh -------------------------------------------------------------------------------- /trig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/trig.py -------------------------------------------------------------------------------- /udev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/gxs700/HEAD/udev.sh --------------------------------------------------------------------------------