gen-stm32


Namegen-stm32 JSON
Version 1.2.1 PyPI version JSON
download
home_pagehttps://vroncevic.github.io/gen_stm32/
SummarySTM32 project skeleton generator
upload_time2023-12-15 00:23:25
maintainer
docs_urlNone
authorVladimir Roncevic
requires_python>=3.10
licenseGPL 2018 - 2024 Free software to use and distributed it.
keywords stm stm32 project c unix linux
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <img align="right" src="https://raw.githubusercontent.com/vroncevic/gen_stm32/dev/docs/gen_stm32_logo.png" width="25%">

# STM32 project skeleton generator

**gen_stm32** is toolset for generation STM32 project skeleton for
development of embedded applications.

Developed in **[python](https://www.python.org/)** code.

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

[![gen_stm32 python checker](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_python_checker.yml) [![gen_stm32 package checker](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_stm32.svg)](https://github.com/vroncevic/gen_stm32/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_stm32.svg)](https://github.com/vroncevic/gen_stm32/graphs/contributors)

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents**

- [Installation](#installation)
    - [Install using pip](#install-using-pip)
    - [Install using build](#install-using-build)
    - [Install using py setup](#install-using-py-setup)
    - [Install using docker](#install-using-docker)
- [Dependencies](#dependencies)
- [Tool structure](#tool-structure)
- [Docs](#docs)
- [Copyright and licence](#copyright-and-licence)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

### Installation

![debian linux os](https://raw.githubusercontent.com/vroncevic/gen_stm32/dev/docs/debtux.png)

[![gen_stm32 python3 build](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_python3_build.yml)

Currently there are three ways to install package
* Install process based on using pip mechanism
* Install process based on build mechanism
* Install process based on setup.py mechanism
* Install process based on docker mechanism

##### Install using pip

Python package is located at **[pypi.org](https://pypi.org/project/gen_stm32/)**.

You can install by using pip

```bash
#python3
pip3 install gen_stm32
```

##### Install using build

Navigate to release **[page](https://github.com/vroncevic/gen_stm32/releases/)** download and extract release archive.

To install **gen_stm32** type the following

```bash
tar xvzf gen_stm32-x.y.z.tar.gz
cd gen_stm32-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/gen_stm32-*-py3-none-any.whl
rm -f get-pip.py
chmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_stm32_run.py
ln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_stm32_run.py /usr/local/bin/gen_stm32_run.py
```

##### Install using py setup

Navigate to **[release page](https://github.com/vroncevic/gen_stm32/releases)** download and extract release archive.

To install **gen_stm32** locate and run setup.py with arguments

```bash
tar xvzf gen_stm32-x.y.z.tar.gz
cd gen_stm32-x.y.z
# python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_egg_info
```

##### Install using docker

You can use Dockerfile to create image/container.

### Dependencies

This module requires these other modules and libraries

* ats_utilities https://vroncevic.github.io/ats_utilities

### Tool structure

gen_stm32 is based on OOP.

Generator structure

```bash
gen_stm32/
    ├── conf/
    │   ├── gen_stm32.logo
    │   ├── gen_stm32.cfg
    │   ├── gen_stm32_util.cfg
    │   ├── project.yaml
    │   └── template/
    │       ├── build/
    │       │   ├── includes/
    │       │   │   └── STM32F4xx_StdPeriph_Driver/
    │       │   │       └── src/
    │       │   │           └── subdir.template
    │       │   ├── Makefile.template
    │       │   ├── objects.template
    │       │   ├── source/
    │       │   │   └── subdir.template
    │       │   └── sources.template
    │       ├── includes/
    │       │   ├── CMSIS/
    │       │   │   ├── arm_common_tables.template
    │       │   │   ├── arm_math.template
    │       │   │   ├── core_cm0.template
    │       │   │   ├── core_cm3.template
    │       │   │   ├── core_cm4_simd.template
    │       │   │   ├── core_cm4.template
    │       │   │   ├── core_cmFunc.template
    │       │   │   └── core_cmInstr.template
    │       │   ├── STM32F4xx/
    │       │   │   ├── stm32f4xx_conf.template
    │       │   │   ├── stm32f4xx.template
    │       │   │   └── system_stm32f4xx.template
    │       │   └── STM32F4xx_StdPeriph_Driver/
    │       │       ├── inc/
    │       │       │   ├── misc.template
    │       │       │   ├── stm32f4xx_adc.template
    │       │       │   ├── stm32f4xx_can.template
    │       │       │   ├── stm32f4xx_crc.template
    │       │       │   ├── stm32f4xx_cryp.template
    │       │       │   ├── stm32f4xx_dac.template
    │       │       │   ├── stm32f4xx_dbgmcu.template
    │       │       │   ├── stm32f4xx_dcmi.template
    │       │       │   ├── stm32f4xx_dma.template
    │       │       │   ├── stm32f4xx_exti.template
    │       │       │   ├── stm32f4xx_flash.template
    │       │       │   ├── stm32f4xx_fsmc.template
    │       │       │   ├── stm32f4xx_gpio.template
    │       │       │   ├── stm32f4xx_hash.template
    │       │       │   ├── stm32f4xx_i2c.template
    │       │       │   ├── stm32f4xx_iwdg.template
    │       │       │   ├── stm32f4xx_pwr.template
    │       │       │   ├── stm32f4xx_rcc.template
    │       │       │   ├── stm32f4xx_rng.template
    │       │       │   ├── stm32f4xx_rtc.template
    │       │       │   ├── stm32f4xx_sdio.template
    │       │       │   ├── stm32f4xx_spi.template
    │       │       │   ├── stm32f4xx_syscfg.template
    │       │       │   ├── stm32f4xx_tim.template
    │       │       │   ├── stm32f4xx_usart.template
    │       │       │   └── stm32f4xx_wwdg.template
    │       │       └── src/
    │       │           ├── misc.template
    │       │           ├── stm32f4xx_adc.template
    │       │           ├── stm32f4xx_can.template
    │       │           ├── stm32f4xx_crc.template
    │       │           ├── stm32f4xx_cryp_aes.template
    │       │           ├── stm32f4xx_cryp_des.template
    │       │           ├── stm32f4xx_cryp_tdes.template
    │       │           ├── stm32f4xx_cryp.template
    │       │           ├── stm32f4xx_dac.template
    │       │           ├── stm32f4xx_dbgmcu.template
    │       │           ├── stm32f4xx_dcmi.template
    │       │           ├── stm32f4xx_dma.template
    │       │           ├── stm32f4xx_exti.template
    │       │           ├── stm32f4xx_flash.template
    │       │           ├── stm32f4xx_fsmc.template
    │       │           ├── stm32f4xx_gpio.template
    │       │           ├── stm32f4xx_hash_md5.template
    │       │           ├── stm32f4xx_hash_sha1.template
    │       │           ├── stm32f4xx_hash.template
    │       │           ├── stm32f4xx_i2c.template
    │       │           ├── stm32f4xx_iwdg.template
    │       │           ├── stm32f4xx_pwr.template
    │       │           ├── stm32f4xx_rcc.template
    │       │           ├── stm32f4xx_rng.template
    │       │           ├── stm32f4xx_rtc.template
    │       │           ├── stm32f4xx_sdio.template
    │       │           ├── stm32f4xx_spi.template
    │       │           ├── stm32f4xx_syscfg.template
    │       │           ├── stm32f4xx_tim.template
    │       │           ├── stm32f4xx_usart.template
    │       │           └── stm32f4xx_wwdg.template
    │       ├── scripts/
    │       │   └── arm_cortex_m4_512.template
    │       └── source/
    │           ├── main.template
    │           ├── startup_stm32f4xx.template
    │           ├── syscall.template
    │           ├── system_stm32f4xx.template
    │           └── tinynew.template
    ├── __init__.py
    ├── log/
    │   └── gen_stm32.log
    ├── pro/
    │   ├── __init__.py
    │   ├── read_template.py
    │   └── write_template.py
    └── run/
        └── gen_stm32_run.py

    19 directories, 89 files
```

### Docs

[![Documentation Status](https://readthedocs.org/projects/gen-stm32/badge/?version=latest)](https://gen-stm32.readthedocs.io/en/latest/?badge=latest)

More documentation and info at

* [gen_stm32.readthedocs.io](https://gen-stm32.readthedocs.io/)
* [www.python.org](https://www.python.org/)

### Copyright and licence

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Copyright (C) 2018 - 2024 by [vroncevic.github.io/gen_stm32](https://vroncevic.github.io/gen_stm32)

**gen_stm32** is free software; you can redistribute it and/or modify
it under the same terms as Python itself, either Python version 3.x or,
at your option, any later version of Python 3 you may have available.

Lets help and support PSF.

[![Python Software Foundation](https://raw.githubusercontent.com/vroncevic/gen_stm32/dev/docs/psf-logo-alpha.png)](https://www.python.org/psf/)

[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.python.org/psf/donations/)

            

Raw data

            {
    "_id": null,
    "home_page": "https://vroncevic.github.io/gen_stm32/",
    "name": "gen-stm32",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "STM,STM32,project,C,Unix,Linux",
    "author": "Vladimir Roncevic",
    "author_email": "elektron.ronca@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8a/77/d9e5c53fff8907552a5d0d9a1e433d4a1928d36158eb8cdfb865841ad812/gen_stm32-1.2.1.tar.gz",
    "platform": "POSIX",
    "description": "<img align=\"right\" src=\"https://raw.githubusercontent.com/vroncevic/gen_stm32/dev/docs/gen_stm32_logo.png\" width=\"25%\">\n\n# STM32 project skeleton generator\n\n**gen_stm32** is toolset for generation STM32 project skeleton for\ndevelopment of embedded applications.\n\nDeveloped in **[python](https://www.python.org/)** code.\n\nThe README is used to introduce the modules and provide instructions on\nhow to install the modules, any machine dependencies it may have and any\nother information that should be provided before the modules are installed.\n\n[![gen_stm32 python checker](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_python_checker.yml) [![gen_stm32 package checker](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_stm32.svg)](https://github.com/vroncevic/gen_stm32/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_stm32.svg)](https://github.com/vroncevic/gen_stm32/graphs/contributors)\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n**Table of Contents**\n\n- [Installation](#installation)\n    - [Install using pip](#install-using-pip)\n    - [Install using build](#install-using-build)\n    - [Install using py setup](#install-using-py-setup)\n    - [Install using docker](#install-using-docker)\n- [Dependencies](#dependencies)\n- [Tool structure](#tool-structure)\n- [Docs](#docs)\n- [Copyright and licence](#copyright-and-licence)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n### Installation\n\n![debian linux os](https://raw.githubusercontent.com/vroncevic/gen_stm32/dev/docs/debtux.png)\n\n[![gen_stm32 python3 build](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_stm32/actions/workflows/gen_stm32_python3_build.yml)\n\nCurrently there are three ways to install package\n* Install process based on using pip mechanism\n* Install process based on build mechanism\n* Install process based on setup.py mechanism\n* Install process based on docker mechanism\n\n##### Install using pip\n\nPython package is located at **[pypi.org](https://pypi.org/project/gen_stm32/)**.\n\nYou can install by using pip\n\n```bash\n#python3\npip3 install gen_stm32\n```\n\n##### Install using build\n\nNavigate to release **[page](https://github.com/vroncevic/gen_stm32/releases/)** download and extract release archive.\n\nTo install **gen_stm32** type the following\n\n```bash\ntar xvzf gen_stm32-x.y.z.tar.gz\ncd gen_stm32-x.y.z/\n# python3\nwget https://bootstrap.pypa.io/get-pip.py\npython3 get-pip.py \npython3 -m pip install --upgrade setuptools\npython3 -m pip install --upgrade pip\npython3 -m pip install --upgrade build\npip3 install -r requirements.txt\npython3 -m build --no-isolation --wheel\npip3 install ./dist/gen_stm32-*-py3-none-any.whl\nrm -f get-pip.py\nchmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_stm32_run.py\nln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_stm32_run.py /usr/local/bin/gen_stm32_run.py\n```\n\n##### Install using py setup\n\nNavigate to **[release page](https://github.com/vroncevic/gen_stm32/releases)** download and extract release archive.\n\nTo install **gen_stm32** locate and run setup.py with arguments\n\n```bash\ntar xvzf gen_stm32-x.y.z.tar.gz\ncd gen_stm32-x.y.z\n# python3\npip3 install -r requirements.txt\npython3 setup.py install_lib\npython3 setup.py install_egg_info\n```\n\n##### Install using docker\n\nYou can use Dockerfile to create image/container.\n\n### Dependencies\n\nThis module requires these other modules and libraries\n\n* ats_utilities https://vroncevic.github.io/ats_utilities\n\n### Tool structure\n\ngen_stm32 is based on OOP.\n\nGenerator structure\n\n```bash\ngen_stm32/\n    \u251c\u2500\u2500 conf/\n    \u2502   \u251c\u2500\u2500 gen_stm32.logo\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_stm32.cfg\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_stm32_util.cfg\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 project.yaml\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 template/\n    \u2502\u00a0\u00a0     \u251c\u2500\u2500 build/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 includes/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 STM32F4xx_StdPeriph_Driver/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u2514\u2500\u2500 src/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0         \u2514\u2500\u2500 subdir.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 Makefile.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 objects.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 source/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 subdir.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 sources.template\n    \u2502\u00a0\u00a0     \u251c\u2500\u2500 includes/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 CMSIS/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 arm_common_tables.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 arm_math.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 core_cm0.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 core_cm3.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 core_cm4_simd.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 core_cm4.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 core_cmFunc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 core_cmInstr.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 STM32F4xx/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_conf.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 system_stm32f4xx.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 STM32F4xx_StdPeriph_Driver/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 inc/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 misc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_adc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_can.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_crc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_cryp.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_dac.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_dbgmcu.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_dcmi.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_dma.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_exti.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_flash.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_fsmc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_gpio.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_hash.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_i2c.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_iwdg.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_pwr.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_rcc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_rng.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_rtc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_sdio.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_spi.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_syscfg.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_tim.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 stm32f4xx_usart.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 stm32f4xx_wwdg.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2514\u2500\u2500 src/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 misc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_adc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_can.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_crc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_cryp_aes.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_cryp_des.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_cryp_tdes.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_cryp.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_dac.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_dbgmcu.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_dcmi.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_dma.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_exti.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_flash.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_fsmc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_gpio.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_hash_md5.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_hash_sha1.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_hash.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_i2c.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_iwdg.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_pwr.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_rcc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_rng.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_rtc.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_sdio.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_spi.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_syscfg.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_tim.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 stm32f4xx_usart.template\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u2514\u2500\u2500 stm32f4xx_wwdg.template\n    \u2502\u00a0\u00a0     \u251c\u2500\u2500 scripts/\n    \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 arm_cortex_m4_512.template\n    \u2502\u00a0\u00a0     \u2514\u2500\u2500 source/\n    \u2502\u00a0\u00a0         \u251c\u2500\u2500 main.template\n    \u2502\u00a0\u00a0         \u251c\u2500\u2500 startup_stm32f4xx.template\n    \u2502\u00a0\u00a0         \u251c\u2500\u2500 syscall.template\n    \u2502\u00a0\u00a0         \u251c\u2500\u2500 system_stm32f4xx.template\n    \u2502\u00a0\u00a0         \u2514\u2500\u2500 tinynew.template\n    \u251c\u2500\u2500 __init__.py\n    \u251c\u2500\u2500 log/\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 gen_stm32.log\n    \u251c\u2500\u2500 pro/\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 read_template.py\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 write_template.py\n    \u2514\u2500\u2500 run/\n        \u2514\u2500\u2500 gen_stm32_run.py\n\n    19 directories, 89 files\n```\n\n### Docs\n\n[![Documentation Status](https://readthedocs.org/projects/gen-stm32/badge/?version=latest)](https://gen-stm32.readthedocs.io/en/latest/?badge=latest)\n\nMore documentation and info at\n\n* [gen_stm32.readthedocs.io](https://gen-stm32.readthedocs.io/)\n* [www.python.org](https://www.python.org/)\n\n### Copyright and licence\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\nCopyright (C) 2018 - 2024 by [vroncevic.github.io/gen_stm32](https://vroncevic.github.io/gen_stm32)\n\n**gen_stm32** is free software; you can redistribute it and/or modify\nit under the same terms as Python itself, either Python version 3.x or,\nat your option, any later version of Python 3 you may have available.\n\nLets help and support PSF.\n\n[![Python Software Foundation](https://raw.githubusercontent.com/vroncevic/gen_stm32/dev/docs/psf-logo-alpha.png)](https://www.python.org/psf/)\n\n[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.python.org/psf/donations/)\n",
    "bugtrack_url": null,
    "license": "GPL 2018 - 2024 Free software to use and distributed it.",
    "summary": "STM32 project skeleton generator",
    "version": "1.2.1",
    "project_urls": {
        "Homepage": "https://vroncevic.github.io/gen_stm32/"
    },
    "split_keywords": [
        "stm",
        "stm32",
        "project",
        "c",
        "unix",
        "linux"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "490bc43419f3a9db811c93e905069ea16c7fefb1676a476274e084a8a2dcaee4",
                "md5": "45ee8507783da3df30b47de5279bbb40",
                "sha256": "b47c819fd8a2b34078a8a8c0217d39ac3a8c09a1ab824027dc1141b74b6fb78f"
            },
            "downloads": -1,
            "filename": "gen_stm32-1.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "45ee8507783da3df30b47de5279bbb40",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 228360,
            "upload_time": "2023-12-15T00:23:22",
            "upload_time_iso_8601": "2023-12-15T00:23:22.635561Z",
            "url": "https://files.pythonhosted.org/packages/49/0b/c43419f3a9db811c93e905069ea16c7fefb1676a476274e084a8a2dcaee4/gen_stm32-1.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a77d9e5c53fff8907552a5d0d9a1e433d4a1928d36158eb8cdfb865841ad812",
                "md5": "ffcd2d9fb732e6c7fb391ef6e28b67a3",
                "sha256": "6c96baf75c516e3d9c993c7a77afbca4618f29631bc66566180d741070755f24"
            },
            "downloads": -1,
            "filename": "gen_stm32-1.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ffcd2d9fb732e6c7fb391ef6e28b67a3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 184110,
            "upload_time": "2023-12-15T00:23:25",
            "upload_time_iso_8601": "2023-12-15T00:23:25.589899Z",
            "url": "https://files.pythonhosted.org/packages/8a/77/d9e5c53fff8907552a5d0d9a1e433d4a1928d36158eb8cdfb865841ad812/gen_stm32-1.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-15 00:23:25",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gen-stm32"
}
        
Elapsed time: 0.16068s