WORKS

Dependencies:   MAX44000 PWM_Tone_Library nexpaq_mdk

Fork of LED_Demo by Maxim nexpaq

Committer:
nexpaq
Date:
Sat Sep 17 16:32:05 2016 +0000
Revision:
1:55a6170b404f
checking in for sharing

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nexpaq 1:55a6170b404f 1 # Description
nexpaq 1:55a6170b404f 2 This document is cheat sheet for everyone who wants to contribute to mbedmicro/mbed GitHub repository at GitHub.
nexpaq 1:55a6170b404f 3 All changes in code base should originate from GitHub Issues and take advantage of existing GitHub flows. Goal is to attract contributors and allow them contribute to code and documentation at the same time.
nexpaq 1:55a6170b404f 4
nexpaq 1:55a6170b404f 5 Guidelines from this document are created to help new and existing contributors understand process workflow and align to project rules before pull request is submitted. It explains how a participant should do things like format code, test fixes, and submit patches.
nexpaq 1:55a6170b404f 6
nexpaq 1:55a6170b404f 7 ## Where to get more information?
nexpaq 1:55a6170b404f 8 You can for example read more in our ```docs``` section in [mbedmicro/mbed/doc](https://github.com/PrzemekWirkus/mbed/tree/docs/docs) directory.
nexpaq 1:55a6170b404f 9
nexpaq 1:55a6170b404f 10 # How to contribute
nexpaq 1:55a6170b404f 11 We really appreciate your contributions! We are Open Source project and we need your help. We want to keep it as easy as possible to contribute changes that get things working in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
nexpaq 1:55a6170b404f 12
nexpaq 1:55a6170b404f 13 Before a pull request will be merged, the [mbed Contributor Agreement](http://developer.mbed.org/contributor_agreement/) must be signed.
nexpaq 1:55a6170b404f 14
nexpaq 1:55a6170b404f 15 You can pick up existing [mbed GitHub Issue](https://github.com/mbedmicro/mbed/issues) and solve it or implement new feature you find important, attractive or just necessary. We will review your proposal via pull request mechanism, give you comments and merge your changes if we decide your contribution satisfy criteria such as quality.
nexpaq 1:55a6170b404f 16
nexpaq 1:55a6170b404f 17 # Enhancements vs Bugs
nexpaq 1:55a6170b404f 18 Enhancements are:
nexpaq 1:55a6170b404f 19 * New features implementation.
nexpaq 1:55a6170b404f 20 * Code refactoring.
nexpaq 1:55a6170b404f 21 * Coding rules, coding styles improvements.
nexpaq 1:55a6170b404f 22 * Code comments improvement.
nexpaq 1:55a6170b404f 23 * Documentation work.
nexpaq 1:55a6170b404f 24
nexpaq 1:55a6170b404f 25 Bugs are:
nexpaq 1:55a6170b404f 26 * Issues rose internally or externally by mbedmicro/mbed users.
nexpaq 1:55a6170b404f 27 * Internally (within mbed team) created issues from Continuous Integration pipeline and build servers.
nexpaq 1:55a6170b404f 28 * Issues detected using automation tools such as compilers, sanitizers, static code analysis tools etc.
nexpaq 1:55a6170b404f 29
nexpaq 1:55a6170b404f 30 # Gate Keeper role
nexpaq 1:55a6170b404f 31 Gate Keeper is a person responsible for GitHub process workflow execution and is responsible for repository / project code base. Gate Keeper is also responsible for code (pull request) quality stamp and approves or rejects code changes in project’s code base.
nexpaq 1:55a6170b404f 32
nexpaq 1:55a6170b404f 33 Gate Keepers will review your pull request code, give you comments in pull request comment section and in the end if everything goes well merge your pull request to one of our branches (most probably default ```master``` branch).
nexpaq 1:55a6170b404f 34
nexpaq 1:55a6170b404f 35 Please be patient, digest Gate Keeper's feedback and respond promptly :)
nexpaq 1:55a6170b404f 36
nexpaq 1:55a6170b404f 37 # mbed SDK porting
nexpaq 1:55a6170b404f 38 * For more information regarding mbed SDK porting please refer to [mbed SDK porting](http://developer.mbed.org/handbook/mbed-SDK-porting) handbook.
nexpaq 1:55a6170b404f 39 * Before starting the mbed SDK porting, you might want to familiarize with the [mbed SDK library internals](http://developer.mbed.org/handbook/mbed-library-internals) first.
nexpaq 1:55a6170b404f 40
nexpaq 1:55a6170b404f 41 # Glossary
nexpaq 1:55a6170b404f 42 * Gate Keeper – persons responsible for overall code-base quality of mbedmicro/mbed project.
nexpaq 1:55a6170b404f 43 * Enhancement – New feature deployment, code refactoring actions or existing code improvements.
nexpaq 1:55a6170b404f 44 * Bugfix – Issues originated from GitHub Issues pool, raised internally within mbed classic team or issues from automated code validators like linters, static code analysis tools etc.
nexpaq 1:55a6170b404f 45 * Mbed classic – mbed SDK 2.0 located in GitHub at mbedmicro/mbed.