├── .gitignore ├── README.md ├── cli ├── go.sh ├── mysql2sqlite.sh ├── ppmac ├── ppmac_plugin.py ├── tune │ ├── pyramid.txt │ └── ramp.txt ├── userphase_util.c ├── userservo_util.c └── util_makefile ├── fast_gather ├── Makefile └── gather_server.c ├── misc ├── building_kernel_modules.txt ├── dac_read │ ├── Makefile │ ├── dac_read.c │ ├── dac_read.h │ └── dac_read_util.c ├── pos ├── position_gui.py ├── tp2pp.py └── utility_test │ ├── Makefile │ └── test.c ├── ppmac ├── __init__.py ├── clock.py ├── completer.py ├── config.py ├── const.py ├── fast_gather.py ├── gather.py ├── gather_types.py ├── hardware.py ├── pp_comm.py ├── tune.py └── util.py ├── project ├── Makefile ├── base.cfg ├── bgcplc_makefile ├── global definitions.pmh ├── load_project.sh ├── make_project.py ├── plcs.plc ├── subprog1.pmc └── upload_config.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/README.md -------------------------------------------------------------------------------- /cli/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/cli/go.sh -------------------------------------------------------------------------------- /cli/mysql2sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/cli/mysql2sqlite.sh -------------------------------------------------------------------------------- /cli/ppmac: -------------------------------------------------------------------------------- 1 | ../ppmac -------------------------------------------------------------------------------- /cli/ppmac_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/cli/ppmac_plugin.py -------------------------------------------------------------------------------- /cli/tune/pyramid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/cli/tune/pyramid.txt -------------------------------------------------------------------------------- /cli/tune/ramp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/cli/tune/ramp.txt -------------------------------------------------------------------------------- /cli/userphase_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/cli/userphase_util.c -------------------------------------------------------------------------------- /cli/userservo_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/cli/userservo_util.c -------------------------------------------------------------------------------- /cli/util_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/cli/util_makefile -------------------------------------------------------------------------------- /fast_gather/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/fast_gather/Makefile -------------------------------------------------------------------------------- /fast_gather/gather_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/fast_gather/gather_server.c -------------------------------------------------------------------------------- /misc/building_kernel_modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/building_kernel_modules.txt -------------------------------------------------------------------------------- /misc/dac_read/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/dac_read/Makefile -------------------------------------------------------------------------------- /misc/dac_read/dac_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/dac_read/dac_read.c -------------------------------------------------------------------------------- /misc/dac_read/dac_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/dac_read/dac_read.h -------------------------------------------------------------------------------- /misc/dac_read/dac_read_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/dac_read/dac_read_util.c -------------------------------------------------------------------------------- /misc/pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/pos -------------------------------------------------------------------------------- /misc/position_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/position_gui.py -------------------------------------------------------------------------------- /misc/tp2pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/tp2pp.py -------------------------------------------------------------------------------- /misc/utility_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/utility_test/Makefile -------------------------------------------------------------------------------- /misc/utility_test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/misc/utility_test/test.c -------------------------------------------------------------------------------- /ppmac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/__init__.py -------------------------------------------------------------------------------- /ppmac/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/clock.py -------------------------------------------------------------------------------- /ppmac/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/completer.py -------------------------------------------------------------------------------- /ppmac/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/config.py -------------------------------------------------------------------------------- /ppmac/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/const.py -------------------------------------------------------------------------------- /ppmac/fast_gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/fast_gather.py -------------------------------------------------------------------------------- /ppmac/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/gather.py -------------------------------------------------------------------------------- /ppmac/gather_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/gather_types.py -------------------------------------------------------------------------------- /ppmac/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/hardware.py -------------------------------------------------------------------------------- /ppmac/pp_comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/pp_comm.py -------------------------------------------------------------------------------- /ppmac/tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/tune.py -------------------------------------------------------------------------------- /ppmac/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/ppmac/util.py -------------------------------------------------------------------------------- /project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/project/Makefile -------------------------------------------------------------------------------- /project/base.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/project/base.cfg -------------------------------------------------------------------------------- /project/bgcplc_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/project/bgcplc_makefile -------------------------------------------------------------------------------- /project/global definitions.pmh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/load_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/project/load_project.sh -------------------------------------------------------------------------------- /project/make_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/project/make_project.py -------------------------------------------------------------------------------- /project/plcs.plc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/project/plcs.plc -------------------------------------------------------------------------------- /project/subprog1.pmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/project/subprog1.pmc -------------------------------------------------------------------------------- /project/upload_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/project/upload_config.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klauer/ppmac/HEAD/setup.py --------------------------------------------------------------------------------