├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.md ├── License.txt ├── Readme.md ├── STM32FLASH.ld ├── cmake.py ├── converter.py ├── ewpproject.py └── uvprojxproject.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/License.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/Readme.md -------------------------------------------------------------------------------- /STM32FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/STM32FLASH.ld -------------------------------------------------------------------------------- /cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/cmake.py -------------------------------------------------------------------------------- /converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/converter.py -------------------------------------------------------------------------------- /ewpproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/ewpproject.py -------------------------------------------------------------------------------- /uvprojxproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodina/ProjectConverter/HEAD/uvprojxproject.py --------------------------------------------------------------------------------