Includes library modifications to allow access to AIN_4 (AIN_0 / 5)

Committer:
bryantaylor
Date:
Tue Sep 20 21:26:12 2016 +0000
Revision:
0:eafc3fd41f75
hackathon

Who changed what in which revision?

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