Metadata-Version: 1.1
Name: pymcutk
Version: 0.1.2
Summary: MCU toolkit for mcu automated testing.
Home-page: https://github.com/Hoohaha/pymcutk
Author: Haley Guo, Fly Yu
Author-email: hui.guo@nxp.com, chuzhi.yu@nxp.com
License: MIT License
Description: PyMCUTK Overview

        ==============

        

        PyMCUTK is a python based toolkit on hand for MCU development or testing. It involved third-part tools, and integrate them together to unified interfaces. The project focus on toolchains and their projects, debuggers, boards support. Simple command line that could make you can quicky get started to execute build testing in automated way. 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.6

        - 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

            ```

        

        

        ## Quickly start

        

        

        ### Command line usage

        

        

        ```bash

        # Build projects in current directory.

        $ mtk build .

        

        # Build specific configuration: sdran_release

        $ mtk build . -t sdram_release

        

        # Recursive build 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

        ```

        

        ## 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/)

        

        

        ### Configuration

        

        By default, mtk will automaticlly get the installation from your system.

        It's also could load configuration from file system. Run bellow command that will automatic generate the configuration file, which is saved at ~/.mcutk.

        

        ```bash

        $ mtk config --auto

        ```

        

        If you need something special to configure, just edit the ~/.mcutk file.

        

        

        

        ### Unittest

        

        Before create pull requests in bitbucket, please do a test in your local to check mistakes.

        

        pytest command:

        

        ```bash

        pytest .

        ```
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
