├── .cproject ├── .makefile ├── .project ├── LICENSE.txt ├── README.rst ├── app test spacey ├── Makefile ├── src │ ├── CVS │ │ └── ignore_this.xc │ ├── ignore1.xc │ ├── test 3.xc │ ├── test 4.xc │ ├── test.xc │ ├── test2.c │ └── test2.xc └── top_level.xc ├── app_test_build ├── Makefile └── src │ ├── CVS │ └── ignore_this.xc │ ├── ignore1.xc │ ├── test 3.xc │ ├── test 4.xc │ └── test.xc ├── auto_proj ├── Makefile ├── README └── src │ └── auto_proj.cpp ├── changedep └── src │ └── changedep.cpp ├── doc ├── Makefile ├── makefile_libraries │ ├── Makefile │ └── makefile_libraries.rst ├── makefile_manual.rst └── using_makefiles │ ├── Makefile │ └── using_makefiles.rst ├── module test spacey 2 ├── module_build_info └── src │ ├── ignore1.xc │ ├── ignore2.xc │ ├── test7.xc │ └── test8.xc ├── module test spacey ├── module_build_info └── src │ ├── ignore1.xc │ ├── ignore2.xc │ ├── test5.xc │ └── test6.xc ├── module_test_build ├── module_build_info └── src │ ├── ignore1.xc │ ├── ignore2.xc │ ├── test.xc │ └── test2.xc ├── module_test_build_2 ├── module_build_info └── src │ ├── ignore1.xc │ ├── ignore2.xc │ ├── test3.xc │ └── test4.xc ├── module_xcommon ├── .makefile ├── CHANGELOG ├── EULA ├── README ├── VERSION ├── build │ ├── Makefile.common │ ├── Makefile.common1 │ ├── Makefile.eclipse_projects │ ├── Makefile.file_handling │ ├── Makefile.libraries │ ├── Makefile.library │ ├── Makefile.pc │ ├── Makefile.plugin │ ├── Makefile.toplevel │ ├── auto_proj.exe │ ├── changedep.exe │ ├── mkdir.bat │ └── xdep.exe ├── doc │ └── build.txt ├── module_description └── templates │ ├── Makefile.template │ └── module_build_info.template ├── templates ├── app │ ├── Makefile │ └── src │ │ └── place_your_source_files_here.txt ├── dotcproject │ ├── .cproject │ └── .cproject_configuration ├── module │ ├── module_build_info │ └── src │ │ └── place_your_source_files_here.txt └── project │ ├── .cproject │ ├── Makefile │ └── dotproject ├── testplan ├── testplan.py ├── validate_spec.py └── validate_testplan.py ├── util ├── SoftwareLicense.txt ├── check_repository.py ├── copyright_header └── rename_repository.py └── xpd.xml /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/.cproject -------------------------------------------------------------------------------- /.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/.makefile -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/.project -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/README.rst -------------------------------------------------------------------------------- /app test spacey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/app test spacey/Makefile -------------------------------------------------------------------------------- /app test spacey/src/CVS/ignore_this.xc: -------------------------------------------------------------------------------- 1 | ttt 2 | -------------------------------------------------------------------------------- /app test spacey/src/ignore1.xc: -------------------------------------------------------------------------------- 1 | IGNORE THIS 2 | 3 | ad/vjna;v.jba;v 4 | -------------------------------------------------------------------------------- /app test spacey/src/test 3.xc: -------------------------------------------------------------------------------- 1 | int j() {} 2 | -------------------------------------------------------------------------------- /app test spacey/src/test 4.xc: -------------------------------------------------------------------------------- 1 | int k() {} 2 | -------------------------------------------------------------------------------- /app test spacey/src/test.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/app test spacey/src/test.xc -------------------------------------------------------------------------------- /app test spacey/src/test2.c: -------------------------------------------------------------------------------- 1 | int q() {} 2 | -------------------------------------------------------------------------------- /app test spacey/src/test2.xc: -------------------------------------------------------------------------------- 1 | int h(int x) { return x + 6;} 2 | -------------------------------------------------------------------------------- /app test spacey/top_level.xc: -------------------------------------------------------------------------------- 1 | int top_level(int x) {return x + 5;} 2 | -------------------------------------------------------------------------------- /app_test_build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/app_test_build/Makefile -------------------------------------------------------------------------------- /app_test_build/src/CVS/ignore_this.xc: -------------------------------------------------------------------------------- 1 | ttt 2 | -------------------------------------------------------------------------------- /app_test_build/src/ignore1.xc: -------------------------------------------------------------------------------- 1 | IGNORE THIS 2 | 3 | ad/vjna;v.jba;v 4 | -------------------------------------------------------------------------------- /app_test_build/src/test 3.xc: -------------------------------------------------------------------------------- 1 | int j() {} 2 | -------------------------------------------------------------------------------- /app_test_build/src/test 4.xc: -------------------------------------------------------------------------------- 1 | int k() {} 2 | -------------------------------------------------------------------------------- /app_test_build/src/test.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/app_test_build/src/test.xc -------------------------------------------------------------------------------- /auto_proj/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/auto_proj/Makefile -------------------------------------------------------------------------------- /auto_proj/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/auto_proj/README -------------------------------------------------------------------------------- /auto_proj/src/auto_proj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/auto_proj/src/auto_proj.cpp -------------------------------------------------------------------------------- /changedep/src/changedep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/changedep/src/changedep.cpp -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/makefile_libraries/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/doc/makefile_libraries/Makefile -------------------------------------------------------------------------------- /doc/makefile_libraries/makefile_libraries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/doc/makefile_libraries/makefile_libraries.rst -------------------------------------------------------------------------------- /doc/makefile_manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/doc/makefile_manual.rst -------------------------------------------------------------------------------- /doc/using_makefiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/doc/using_makefiles/Makefile -------------------------------------------------------------------------------- /doc/using_makefiles/using_makefiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/doc/using_makefiles/using_makefiles.rst -------------------------------------------------------------------------------- /module test spacey 2/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module test spacey 2/module_build_info -------------------------------------------------------------------------------- /module test spacey 2/src/ignore1.xc: -------------------------------------------------------------------------------- 1 | int k(int x) {return x + 99;} 2 | -------------------------------------------------------------------------------- /module test spacey 2/src/ignore2.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module test spacey 2/src/ignore2.xc -------------------------------------------------------------------------------- /module test spacey 2/src/test7.xc: -------------------------------------------------------------------------------- 1 | int t7_g(int x) {return x + 22;} 2 | -------------------------------------------------------------------------------- /module test spacey 2/src/test8.xc: -------------------------------------------------------------------------------- 1 | int t8_f(int x) { return x + 7; } 2 | -------------------------------------------------------------------------------- /module test spacey/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module test spacey/module_build_info -------------------------------------------------------------------------------- /module test spacey/src/ignore1.xc: -------------------------------------------------------------------------------- 1 | int k(int x) {return x + 99;} 2 | -------------------------------------------------------------------------------- /module test spacey/src/ignore2.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module test spacey/src/ignore2.xc -------------------------------------------------------------------------------- /module test spacey/src/test5.xc: -------------------------------------------------------------------------------- 1 | int t5_f(int x) { return x + 7; } 2 | -------------------------------------------------------------------------------- /module test spacey/src/test6.xc: -------------------------------------------------------------------------------- 1 | int t6_g(int x) {return x + 22;} 2 | -------------------------------------------------------------------------------- /module_test_build/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_test_build/module_build_info -------------------------------------------------------------------------------- /module_test_build/src/ignore1.xc: -------------------------------------------------------------------------------- 1 | int k(int x) {return x + 99;} 2 | -------------------------------------------------------------------------------- /module_test_build/src/ignore2.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_test_build/src/ignore2.xc -------------------------------------------------------------------------------- /module_test_build/src/test.xc: -------------------------------------------------------------------------------- 1 | int f(int x) { return x + 7; } 2 | -------------------------------------------------------------------------------- /module_test_build/src/test2.xc: -------------------------------------------------------------------------------- 1 | int g(int x) {return x + 22;} 2 | -------------------------------------------------------------------------------- /module_test_build_2/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_test_build_2/module_build_info -------------------------------------------------------------------------------- /module_test_build_2/src/ignore1.xc: -------------------------------------------------------------------------------- 1 | int k(int x) {return x + 99;} 2 | -------------------------------------------------------------------------------- /module_test_build_2/src/ignore2.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_test_build_2/src/ignore2.xc -------------------------------------------------------------------------------- /module_test_build_2/src/test3.xc: -------------------------------------------------------------------------------- 1 | int t3_g(int x) {return x + 22;} 2 | -------------------------------------------------------------------------------- /module_test_build_2/src/test4.xc: -------------------------------------------------------------------------------- 1 | int t4_f(int x) { return x + 7; } 2 | -------------------------------------------------------------------------------- /module_xcommon/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/.makefile -------------------------------------------------------------------------------- /module_xcommon/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/CHANGELOG -------------------------------------------------------------------------------- /module_xcommon/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/EULA -------------------------------------------------------------------------------- /module_xcommon/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/README -------------------------------------------------------------------------------- /module_xcommon/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 1v4 2 | -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.common -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.common1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.common1 -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.eclipse_projects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.eclipse_projects -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.file_handling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.file_handling -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.libraries -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.library -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.pc -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.plugin -------------------------------------------------------------------------------- /module_xcommon/build/Makefile.toplevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/Makefile.toplevel -------------------------------------------------------------------------------- /module_xcommon/build/auto_proj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/auto_proj.exe -------------------------------------------------------------------------------- /module_xcommon/build/changedep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/changedep.exe -------------------------------------------------------------------------------- /module_xcommon/build/mkdir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/mkdir.bat -------------------------------------------------------------------------------- /module_xcommon/build/xdep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/build/xdep.exe -------------------------------------------------------------------------------- /module_xcommon/doc/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/doc/build.txt -------------------------------------------------------------------------------- /module_xcommon/module_description: -------------------------------------------------------------------------------- 1 | Common build framework for applications using xmos modules. 2 | -------------------------------------------------------------------------------- /module_xcommon/templates/Makefile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/templates/Makefile.template -------------------------------------------------------------------------------- /module_xcommon/templates/module_build_info.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/module_xcommon/templates/module_build_info.template -------------------------------------------------------------------------------- /templates/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/templates/app/Makefile -------------------------------------------------------------------------------- /templates/app/src/place_your_source_files_here.txt: -------------------------------------------------------------------------------- 1 | Place you source files here. 2 | -------------------------------------------------------------------------------- /templates/dotcproject/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/templates/dotcproject/.cproject -------------------------------------------------------------------------------- /templates/dotcproject/.cproject_configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/templates/dotcproject/.cproject_configuration -------------------------------------------------------------------------------- /templates/module/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/templates/module/module_build_info -------------------------------------------------------------------------------- /templates/module/src/place_your_source_files_here.txt: -------------------------------------------------------------------------------- 1 | Place you source files here. 2 | -------------------------------------------------------------------------------- /templates/project/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/templates/project/.cproject -------------------------------------------------------------------------------- /templates/project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/templates/project/Makefile -------------------------------------------------------------------------------- /templates/project/dotproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/templates/project/dotproject -------------------------------------------------------------------------------- /testplan/testplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/testplan/testplan.py -------------------------------------------------------------------------------- /testplan/validate_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/testplan/validate_spec.py -------------------------------------------------------------------------------- /testplan/validate_testplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/testplan/validate_testplan.py -------------------------------------------------------------------------------- /util/SoftwareLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/util/SoftwareLicense.txt -------------------------------------------------------------------------------- /util/check_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/util/check_repository.py -------------------------------------------------------------------------------- /util/copyright_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/util/copyright_header -------------------------------------------------------------------------------- /util/rename_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/util/rename_repository.py -------------------------------------------------------------------------------- /xpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/xcommon/HEAD/xpd.xml --------------------------------------------------------------------------------