diff options
author | Ron Evans <[email protected]> | 2019-02-08 08:59:06 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-02-08 08:59:06 +0100 |
commit | 7657238c24704ec1a332ce95aa0a7589f5f4f471 (patch) | |
tree | 20d4b1c18f158f0567d09bd8608ff7df8d93f3ed /CONTRIBUTING.md | |
parent | 3cba36f2ba789a7680d9bef98acb5f84bdcfbdf8 (diff) | |
download | tinygo-7657238c24704ec1a332ce95aa0a7589f5f4f471.tar.gz tinygo-7657238c24704ec1a332ce95aa0a7589f5f4f471.zip |
docs: refactor README content (#171)
* docs: refactor README to avoid duplication with information on the web site, and to reorder to make it easier for new users.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1d380854f..7dc1e400a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,10 +16,16 @@ Please open a Github issue with your problem, and we will be happy to assist. We probably have not implemented it yet. Please take a look at our [Roadmap](https://github.com/tinygo-org/tinygo/wiki/Roadmap). Your pull request adding the functionality to TinyGo would be greatly appreciated. +A long tail of small (and large) language features haven't been implemented yet. In almost all cases, the compiler will show a `todo:` error from `compiler/compiler.go` when you try to use it. You can try implementing it, or open a bug report with a small code sample that fails to compile. + ### Some specific hardware you want to use does not appear to be in TinyGo As above, we probably have not implemented it yet. Your contribution adding the hardware support to TinyGo would be greatly appreciated. +Lots of targets/boards are still unsupported. Adding an architecture often requires a few compiler changes, but if the architecture is supported you can try implementing support for a new chip or board in `src/runtime`. For details, see [this wiki entry on adding archs/chips/boards](https://github.com/tinygo-org/tinygo/wiki/Adding-a-new-board). + +Microcontrollers have lots of peripherals (I2C, SPI, ADC, etc.) and many don't have an implementation yet in the `machine` package. Adding support for new peripherals is very useful. + ## How to use our Github repository The `master` branch of this repo will always have the latest released version of TinyGo. All of the active development work for the next release will take place in the `dev` branch. TinyGo will use semantic versioning and will create a tag/release for each release. |