├── .ci ├── apply_general_ssh_options.sh ├── prepare_test_stage.sh └── test-on-device.sh ├── .gitignore ├── .gitlab-ci.yml ├── .test-stage └── tests │ └── bbapi-module │ ├── run │ └── tags ├── CHANGES ├── CMakeLists.txt ├── COPYING ├── Lindent ├── Makefile ├── Makefile.FreeBSD ├── README.md ├── TcBaDevDef.h ├── api.c ├── api.h ├── button ├── Makefile └── button.c ├── config_CX01-CX5020.h ├── config_CX03-CX5140.h ├── config_CX05-CX2030.h ├── config_c6015.h ├── config_cx2030_cx2100-0004.h ├── config_cx2030_cx2100-0904.h ├── config_cx5000.h ├── config_cx5130.h ├── display ├── Makefile └── display.c ├── display_example.cpp ├── linuxkpi └── linux │ ├── platform_device.h │ └── version.h ├── power ├── Makefile └── power.c ├── scripts ├── cx2100_demo.sh └── poll_pwrfail.sh ├── sensors_example.cpp ├── simple_cdev.c ├── simple_cdev.h ├── sups ├── Makefile └── sups.c ├── test_config.h ├── tools ├── 10_get_fructose.sh ├── fructose-1.4.0.sha512 └── fructose │ ├── double_compare.h │ ├── fructose.h │ ├── test_base.h │ └── test_root.h ├── unittest.cpp ├── unittest ├── load-module.sh └── test-all.sh └── wdt ├── Makefile └── watchdog.c /.ci/apply_general_ssh_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/.ci/apply_general_ssh_options.sh -------------------------------------------------------------------------------- /.ci/prepare_test_stage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/.ci/prepare_test_stage.sh -------------------------------------------------------------------------------- /.ci/test-on-device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/.ci/test-on-device.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.test-stage/tests/bbapi-module/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/.test-stage/tests/bbapi-module/run -------------------------------------------------------------------------------- /.test-stage/tests/bbapi-module/tags: -------------------------------------------------------------------------------- 1 | ssh 2 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/CHANGES -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/COPYING -------------------------------------------------------------------------------- /Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/Lindent -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.FreeBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/Makefile.FreeBSD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/README.md -------------------------------------------------------------------------------- /TcBaDevDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/TcBaDevDef.h -------------------------------------------------------------------------------- /api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/api.c -------------------------------------------------------------------------------- /api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/api.h -------------------------------------------------------------------------------- /button/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/button/Makefile -------------------------------------------------------------------------------- /button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/button/button.c -------------------------------------------------------------------------------- /config_CX01-CX5020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/config_CX01-CX5020.h -------------------------------------------------------------------------------- /config_CX03-CX5140.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/config_CX03-CX5140.h -------------------------------------------------------------------------------- /config_CX05-CX2030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/config_CX05-CX2030.h -------------------------------------------------------------------------------- /config_c6015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/config_c6015.h -------------------------------------------------------------------------------- /config_cx2030_cx2100-0004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/config_cx2030_cx2100-0004.h -------------------------------------------------------------------------------- /config_cx2030_cx2100-0904.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/config_cx2030_cx2100-0904.h -------------------------------------------------------------------------------- /config_cx5000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/config_cx5000.h -------------------------------------------------------------------------------- /config_cx5130.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/config_cx5130.h -------------------------------------------------------------------------------- /display/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/display/Makefile -------------------------------------------------------------------------------- /display/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/display/display.c -------------------------------------------------------------------------------- /display_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/display_example.cpp -------------------------------------------------------------------------------- /linuxkpi/linux/platform_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/linuxkpi/linux/platform_device.h -------------------------------------------------------------------------------- /linuxkpi/linux/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/linuxkpi/linux/version.h -------------------------------------------------------------------------------- /power/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/power/Makefile -------------------------------------------------------------------------------- /power/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/power/power.c -------------------------------------------------------------------------------- /scripts/cx2100_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/scripts/cx2100_demo.sh -------------------------------------------------------------------------------- /scripts/poll_pwrfail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/scripts/poll_pwrfail.sh -------------------------------------------------------------------------------- /sensors_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/sensors_example.cpp -------------------------------------------------------------------------------- /simple_cdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/simple_cdev.c -------------------------------------------------------------------------------- /simple_cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/simple_cdev.h -------------------------------------------------------------------------------- /sups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/sups/Makefile -------------------------------------------------------------------------------- /sups/sups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/sups/sups.c -------------------------------------------------------------------------------- /test_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/test_config.h -------------------------------------------------------------------------------- /tools/10_get_fructose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/tools/10_get_fructose.sh -------------------------------------------------------------------------------- /tools/fructose-1.4.0.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/tools/fructose-1.4.0.sha512 -------------------------------------------------------------------------------- /tools/fructose/double_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/tools/fructose/double_compare.h -------------------------------------------------------------------------------- /tools/fructose/fructose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/tools/fructose/fructose.h -------------------------------------------------------------------------------- /tools/fructose/test_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/tools/fructose/test_base.h -------------------------------------------------------------------------------- /tools/fructose/test_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/tools/fructose/test_root.h -------------------------------------------------------------------------------- /unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/unittest.cpp -------------------------------------------------------------------------------- /unittest/load-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/unittest/load-module.sh -------------------------------------------------------------------------------- /unittest/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/unittest/test-all.sh -------------------------------------------------------------------------------- /wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/wdt/Makefile -------------------------------------------------------------------------------- /wdt/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/BBAPI/HEAD/wdt/watchdog.c --------------------------------------------------------------------------------