Metadata-Version: 2.1
Name: pymcutk
Version: 0.2.3
Summary: MCU toolkit for mcu automated test.
Home-page: https://github.com/Hoohaha/pymcutk
Author: Haley Guo, Fly Yu
License: MIT License
Description: PyMCUTK Overview [![Build Status](https://travis-ci.org/Hoohaha/pymcutk.svg?branch=master)](https://travis-ci.org/Hoohaha/pymcutk)
        ==============
        
        
        PyMCUTK is a python based toolkit for MCU software development or test. This toolkit wrapped third-party tools, and integrate them together to unified interfaces. The project focus on toolchains and their projects, debuggers, and NXP MCU boards support. With this tool you can easily to build your own test scripts for your test.
        
        Simple command line that could make you can quicky get start. We have many hard works and you may won't repeat. That is what PyMCUTK design for.
        
        ## Prerequisites
        
        - python 2 >= 2.7.5 or python 3 >= 3.4
        - make sure `pip` command is working in your system terminal.
        
        ## Installation
        
        - Simply installation with pip:
        
            ```bash
            pip install pymcutk
            ```
        
        - Install from source code, firstly clone the git repository from [Github-PyMCUTK](https://github.com/Hoohaha/pymcutk),
        and install it in editable mode:
        
            ```
            pip install -r requirements-dev.txt
            ```
        
        - Once installed, try below command to test:
        
            ```bash
            mtk --version
            ```
        
        ## Quickly start
        
        
        ### Command line usage
        
        
        ```bash
        # Build projects in current directory.
        $ mtk build .
        
        # Build specific configuration: sdram_release
        $ mtk build . -t sdram_release
        
        # Recursive mode and dump results to CSV format.
        $ mtk build ./mcu-sdk-2.0/boards/ -r --results-csv
        
        # Scan Projects dump to json format
        $ mtk scan ./mcu-sdk-2.0/boards/ -o test.json
        ```
        
        ### Sample
        
        ![1](doc/imgs/sample.png)
        
        ## Supported toolchains
        
        - [NXP MCUXpresso IDE](https://www.nxp.com/support/developer-resources/software-development-tools/mcuxpresso-software-and-tools/mcuxpresso-integrated-development-environment-ide:MCUXpresso-IDE)
        - [ARM MDK](http://www2.keil.com/mdk5)
        - [IAR Embedded Workbench](https://www.iar.com/iar-embedded-workbench/)
        - [GNU ARM Embedded Toolchain](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm)
        
        ### Configuration
        
        MCUTK could automatically discover the installed toolchains from your system as usual.
        If you hope to use another version, you can edit the config file: ~/.mcutk.
        
        Run bellow command that will initialize the configuration file, which is saved at ~/.mcutk.
        
        ```bash
        $ mtk config --auto
        ```
        
        
        ### Unittest
        
        Before create pull requests, please do a test in your local to check mistakes.
        
        pytest command:
        
        ```bash
        pytest .
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
