mbed-os for GR-LYCHEE

Dependents:   mbed-os-example-blinky-gr-lychee GR-Boads_Camera_sample GR-Boards_Audio_Recoder GR-Boads_Camera_DisplayApp ... more

Committer:
dkato
Date:
Fri Feb 02 05:42:23 2018 +0000
Revision:
0:f782d9c66c49
mbed-os for GR-LYCHEE

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dkato 0:f782d9c66c49 1 # Description
dkato 0:f782d9c66c49 2 This document is cheat sheet for everyone who wants to contribute to [ARMmbed/mbed-os](https://github.com/ARMmbed/mbed-os) GitHub repository at GitHub.
dkato 0:f782d9c66c49 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.
dkato 0:f782d9c66c49 4
dkato 0:f782d9c66c49 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.
dkato 0:f782d9c66c49 6
dkato 0:f782d9c66c49 7 ## Where to get more information?
dkato 0:f782d9c66c49 8 You can for example read more in our ```docs``` section in [ARMmbed/mbed-os/doc](https://github.com/ARMmbed/mbed-os/tree/master/docs) directory.
dkato 0:f782d9c66c49 9
dkato 0:f782d9c66c49 10 # How to contribute
dkato 0:f782d9c66c49 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.
dkato 0:f782d9c66c49 12
dkato 0:f782d9c66c49 13 Before a pull request will be merged, the [mbed Contributor Agreement](http://developer.mbed.org/contributor_agreement/) must be signed.
dkato 0:f782d9c66c49 14
dkato 0:f782d9c66c49 15 You can pick up existing [mbed-os GitHub Issue](https://github.com/ARMmbed/mbed-os/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.
dkato 0:f782d9c66c49 16
dkato 0:f782d9c66c49 17 # Enhancements vs Bugs
dkato 0:f782d9c66c49 18 Enhancements are:
dkato 0:f782d9c66c49 19 * New features implementation.
dkato 0:f782d9c66c49 20 * Code refactoring.
dkato 0:f782d9c66c49 21 * Coding rules, coding styles improvements.
dkato 0:f782d9c66c49 22 * Code comments improvement.
dkato 0:f782d9c66c49 23 * Documentation work.
dkato 0:f782d9c66c49 24
dkato 0:f782d9c66c49 25 Bugs are:
dkato 0:f782d9c66c49 26 * Issues rose internally or externally by [ARMmbed/mbed-os](https://github.com/ARMmbed/mbed-os) users.
dkato 0:f782d9c66c49 27 * Internally (within mbed team) created issues from Continuous Integration pipeline and build servers.
dkato 0:f782d9c66c49 28 * Issues detected using automation tools such as compilers, sanitizers, static code analysis tools etc.
dkato 0:f782d9c66c49 29
dkato 0:f782d9c66c49 30 # Gate Keeper role
dkato 0:f782d9c66c49 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.
dkato 0:f782d9c66c49 32
dkato 0:f782d9c66c49 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).
dkato 0:f782d9c66c49 34
dkato 0:f782d9c66c49 35 Please be patient, digest Gate Keeper's feedback and respond promptly :)
dkato 0:f782d9c66c49 36
dkato 0:f782d9c66c49 37 # mbed SDK porting
dkato 0:f782d9c66c49 38 * For more information regarding mbed SDK porting please refer to [mbed SDK porting](http://developer.mbed.org/handbook/mbed-SDK-porting) handbook.
dkato 0:f782d9c66c49 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.
dkato 0:f782d9c66c49 40
dkato 0:f782d9c66c49 41 # Glossary
dkato 0:f782d9c66c49 42 * Gate Keeper – persons responsible for overall code-base quality of [ARMmbed/mbed-os](https://github.com/ARMmbed/mbed-os) project.
dkato 0:f782d9c66c49 43 * Enhancement – New feature deployment, code refactoring actions or existing code improvements.
dkato 0:f782d9c66c49 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.
dkato 0:f782d9c66c49 45 * Mbed classic – mbed SDK 2.0 located in GitHub at [ARMmbed/mbed-os](https://github.com/ARMmbed/mbed-os).
dkato 0:f782d9c66c49 46