Loading...
 

SW4STM32 and SW4Linux fully supports the STM32MP1 asymmetric multicore Cortex/A7+M4 MPUs

   With System Workbench for Linux, Embedded Linux on the STM32MP1 family of MPUs from ST was never as simple to build and maintain, even for newcomers in the Linux world. And, if you install System Workbench for Linux in System Workbench for STM32 you can seamlessly develop and debug asymmetric applications running partly on Linux, partly on the Cortex-M4.
You can get more information from the ac6-tools website and download (registration required) various documents highlighting:

System Workbench for STM32


gitignore

I am just getting started with the System Workbench for STM32 IDE and I was going to create a git repository and I was just wondering if there were any suggestions for what I should add to the gitignore file.

There was nothing available on https://gitignore.ioQuestion so I was going to just use the default Eclipse but I thought I would add on here first.

Update:

Below is the text for the default Eclipse gitignore file.

  1. Created by https://www.gitignore.io/api/eclipseQuestion

      1. Eclipse ###


.metadata
bin/
tmp/

  • .tmp
  • .bak
  • .swp
  • ~.nib

local.properties
.settings/
.loadpath
.recommenders

  1. Eclipse Core

.project

  1. External tool builders

.externalToolBuilders/

  1. Locally stored “Eclipse launch configurations”
  • .launch

  1. PyDev specific (Python IDE for Eclipse)
  • .pydevproject

  1. CDT-specific (C/C++ Development Tooling)

.cproject

  1. JDT-specific (Eclipse Java Development Tools)

.classpath

  1. Java annotation processor (APT)

.factorypath

  1. PDT-specific (PHP Development Tools)

.buildpath

  1. sbteclipse plugin

.target

  1. Tern plugin

.tern-project

  1. TeXlipse plugin

.texlipse

  1. STS (Spring Tool Suite)

.springBeans

  1. Code Recommenders

.recommenders/

I don’t really understand your question.

I do use eclipse, I do use System Workbench for STM32, I do use Git.
But I have no idea what you are talking about.


Thanks for your reply, I should have been more specific.

In other applictions I use the gitignore file to ignore files that do not need to be tracked by source controller. I have placed a link to the git documentation outlining it below.

https://git-scm.com/docs/gitignoreQuestion

For example below are some of the things I usually ignore.

- Build artifacts
- Elements that are specific to my machine (paths etc)
- Configuration files that contain sensitive information that I do not want on the source control server.

Hopefully that helps a bit.


Thank you for the gitignore file. Seems to work fine for me ...