Generate RPI PICO project configuration/build setup

armpicom is toolset for generation of of RPI PICO project configuration/build setup.

Developed in python code.

The README is used to introduce the tool and provide instructions on how to install the tool, any machine dependencies it may have and any other information that should be provided before the tool is installed.

armpicom python checker armpicom python package github issues documentation status github contributors

Installation

armpicom python3 build

Navigate to release page download and extract release archive.

To install armpicom type the following

tar xvzf armpicom-x.y.z.tar.gz
cd armpicom-x.y.z/
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install ./dist/armpicom-*-py3-none-any.whl
rm -f get-pip.py
chmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/armpicom_run.py
ln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/armpicom_run.py /usr/local/bin/armpicom_run.py

You can use Docker to create image/container, or You can use pip to install

# pyton3
pip3 install armpicom

Dependencies

armpicom requires next modules and libraries

Tool structure

armpicom is based on OOP.

Tool structure

armpicom/
    ├── conf/
       ├── armpicom.cfg
       ├── armpicom.logo
       ├── armpicom_util.cfg
       ├── project.yaml
       └── template/
           ├── build/
              └── armpicom.md
           ├── CMakeLists.template
           ├── pico_sdk_import.template
           ├── pro_auto_set_url.template
           └── src/
               ├── CMakeLists.template
               └── main.template
    ├── __init__.py
    ├── log/
       └── armpicom.log
    ├── pro/
       ├── __init__.py
       ├── read_template.py
       └── write_template.py
    └── run/
        └── armpicom_run.py

8 directories, 16 files

Indices and tables