├── .gitignore ├── resources ├── python │ └── __init__.py ├── doc │ ├── footer.html │ ├── header.html │ ├── jquery.smartmenus.bootstrap.css │ ├── jquery.smartmenus.bootstrap.js │ ├── customdoxygen.css │ ├── doxy-boot.js │ └── jquery.smartmenus.js └── patches │ └── slac460y.fixes.patch ├── ebs ├── swig-python.cmake ├── graphics.cmake ├── exe-conf.cmake ├── lib-doc.cmake ├── lib-conf.cmake └── driver-conf.cmake ├── Platform ├── common.cmake ├── avr-gcc.cmake └── msp430-gcc.cmake ├── toolchain-avr-gcc.cmake ├── toolchain-msp430-gcc-ti.cmake ├── propeller-gcc.md └── msp430-gcc-ti.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | packages 3 | *.kdev4 4 | *.kate-swp 5 | -------------------------------------------------------------------------------- /resources/python/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __path__ = __import__('pkgutil').extend_path(__path__, __name__) 3 | -------------------------------------------------------------------------------- /resources/doc/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
22 | $doxygenversion
23 |
24 |
25 |