You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/11/23 18:52:27 UTC

[64/70] [abbrv] incubator-mynewt-core git commit: Update README and RELEASE_NOTES for 1.0.0-b1.

Update README and RELEASE_NOTES for 1.0.0-b1.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/94ac3d6b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/94ac3d6b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/94ac3d6b

Branch: refs/heads/master
Commit: 94ac3d6b198ffdb1ab6931eaa00bd4ec56c393b7
Parents: b00148a
Author: Christopher Collins <cc...@apache.org>
Authored: Tue Nov 22 13:45:27 2016 -0800
Committer: Christopher Collins <cc...@apache.org>
Committed: Tue Nov 22 13:45:27 2016 -0800

----------------------------------------------------------------------
 README.md        | 189 +++++++++++++++++++++++++++-----------------------
 RELEASE_NOTES.md |   4 +-
 2 files changed, 103 insertions(+), 90 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/94ac3d6b/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 0abd616..55996e5 100644
--- a/README.md
+++ b/README.md
@@ -23,22 +23,26 @@
 
 ## Overview
 
-Apache Mynewt is an open-source operating system for tiny embedded devices.  
-It's goal is to make it easy to develop applications for microcontroller 
+Apache Mynewt is an open-source operating system for tiny embedded devices.
+It's goal is to make it easy to develop applications for microcontroller
 environments, where power and cost are driving factors.
 
-It currently supports the following hardware platforms: 
-    
+It currently supports the following hardware platforms:
 
 * nRF52 DK from Nordic Semiconductor (Cortex-M4)
+* RuuviTag Sensor beacon platform (Nordic nRF52832 based)
 * nRF51 DK from Nordic Semiconductor (Cortex-M0)
+* BLE Nano from RedBear (Nordic nRF51822 SoC based)
+* BLE Nano2 and Blend2 from RedBear (Nordic nRF52832 SoC based)
 * BMD-300-EVAL-ES from Rigado (Cortex-M4)
 * STM32F3DISCOVERY from ST Micro (Cortex-M4)
+* STM32F4DISCOVERY from ST Micro (Cortex-M4)
 * STM32-E407 from Olimex (Cortex-M4)
 * Arduino Zero (Cortex-M0)
 * Arduino Zero Pro (Cortex-M0)
 * Arduino M0 Pro (Cortex-M0)
-* NUCLEO-F401RE from STMicroelectronics (Cortex-M4)
+* NUCLEO-F401RE (Cortex-M4)
+* FRDM-K64F from NXP (Cortex-M4)
 
 Apache Mynewt uses the
 [Newt](https://www.github.com/apache/incubator-mynewt-newt) build and package
@@ -53,90 +57,100 @@ completely replaces the proprietary SoftDevice on Nordic chipsets.
     - Support for 251 byte packet size
     - Support for all 4 roles concurrently - Broadcaster, Observer, Peripheral and Central
     - Support for up to 32 simultaneous connections.
-    - Legacy SMP support (pairing and bonding).
+    - Legacy and SC (secure connections) SMP support (pairing and bonding).
 * A flash filesystem, NFFS, which is designed for tiny (128KB->16MB) flashes.
 * Bootloader support
 * Remote Software Upgrade
 * HAL and BSP infrastructure designed to abstract microcontroller specifics
 * Shell and Console support
-* Statistics and Logging Infrastructure 
+* Statistics and Logging Infrastructure
 
-For more information on the Mynewt OS, please visit our website [here](https://mynewt.apache.org/).  
+For more information on the Mynewt OS, please visit our website [here](https://mynewt.apache.org/).
 If you'd like to get started, visit the [Quick Start Guide](http://mynewt.apache.org/quick-start/).
 
 ## Roadmap
 
 Mynewt is being actively developed.  Some of the features we're currently working on:
 
-* Deep sleep: Mynewt OS will coordinate peripherals and processor to put the processor 
-  to sleep when all tasks are idle.
-* Support for different boards and microcontroller architectures, we're working on:
-    - ESP8266 
+* Deep sleep: Mynewt OS will coordinate peripherals and processor to put the
+  processor to sleep when all tasks are idle.
+* Sensor API
+* Support for different boards and microcontroller architectures, we're working
+  on:
+    - ESP8266
     - Arduino Uno
     - Arduino Mega
-* Enhancements to BLE 4.2 support:
-    - LE Secure Connections
-    - Random addresses for link-layer security
 
-## Browsing 
+## Browsing
 
-If you are browsing around the source tree, and want to see some of the 
-major functional chunks, here are a few pointers: 
+If you are browsing around the source tree, and want to see some of the
+major functional chunks, here are a few pointers:
 
-- libs: Contains the core of the RTOS ([libs/os](https://github.com/apache/incubator-mynewt-core/tree/master/libs/os))
-and a number of helper libraries for building applications.  Including a 
-console ([libs/console](https://github.com/apache/incubator-mynewt-core/tree/master/libs/console))), 
-shell ([libs/shell](https://github.com/apache/incubator-mynewt-core/tree/master/libs/shell))), and 
-[libs/newtmgr](https://github.com/apache/incubator-mynewt-core/tree/master/libs/newtmgr)), which 
+- libs: Contains the core of the RTOS ([kernel/os](https://github.com/apache/incubator-mynewt-core/tree/master/libs/os))
+and a number of helper libraries for building applications.  Including a
+console ([sys/console](https://github.com/apache/incubator-mynewt-core/tree/master/libs/console))),
+shell ([sys/shell](https://github.com/apache/incubator-mynewt-core/tree/master/libs/shell))), and
+[mgmt/newtmgr](https://github.com/apache/incubator-mynewt-core/tree/master/libs/newtmgr)), which
 supports software upgrade and remote fetching of logs and statistics.
 
-- net: Contains the networking packages.  Right now, net/ contains
-the NimBLE package.  [Nimble](https://github.com/apache/incubator-mynewt-core/tree/master/net/nimble)
-is a full Bluetooth host and controller implementation, that is written 
-from the ground up for the Apache Mynewt Operating System.   
-
-- hw: Contains the HW specific support packages.  Board Support Packages 
-are located in [hw/bsp](https://github.com/apache/incubator-mynewt-core/tree/master/hw/bsp), 
-and the MCU specific definitions they rely on are located in 
-[hw/mcu](https://github.com/apache/incubator-mynewt-core/tree/master/hw/mcu).  
-Finally, there is a HAL (Hardware Abstraction Layer) stored in 
-[hw/hal](https://github.com/apache/incubator-mynewt-core/tree/master/hw/hal), even 
-though the implementation of various HALs are stored in the MCU specific definitions.  
-
-- fs: Contains the FS package ([fs/fs](https://github.com/apache/incubator-mynewt-core/tree/master/fs/fs))), 
-which is the high-level Apache Mynewt file system API.   A specific implementation of that FS, is 
+- net: Contains the networking packages.  Highlights of the net directory are the NimBLE and IP packages.
+[Nimble](https://github.com/apache/incubator-mynewt-core/tree/master/net/nimble)
+is a full Bluetooth host and controller implementation, that is written
+from the ground up for the Apache Mynewt Operating System.
+[ip](https://github.com/apache/incubator-mynewt-core/tree/master/net/ip) is a port of LWIP, a complete IPv4 and IPv6 implementation.
+
+- hw: Contains the HW specific support packages.  Board Support Packages
+are located in [hw/bsp](https://github.com/apache/incubator-mynewt-core/tree/master/hw/bsp),
+and the MCU specific definitions they rely on are located in
+[hw/mcu](https://github.com/apache/incubator-mynewt-core/tree/master/hw/mcu).
+There is a HAL (Hardware Abstraction Layer) stored in
+[hw/hal](https://github.com/apache/incubator-mynewt-core/tree/master/hw/hal), even
+though the implementation of various HALs are stored in the MCU specific definitions.  Finally, drivers can be found in [hw/drivers](https://github.com/apache/incubator-mynewt-core/tree/master/hw/drivers).  Drivers provide a higher-level interface to the hardware than the HAL, and may require the Mynewt operating system to function.
+
+- fs: Contains the FS package ([fs/fs](https://github.com/apache/incubator-mynewt-core/tree/master/fs/fs))
+which is the high-level Apache Mynewt file system API.   A specific implementation of that FS, is
 [NFFS](https://github.com/apache/incubator-mynewt-core/tree/master/fs/nffs) (Newtron
-File System.)  The Newtron file system is a FS that has been built from 
-the ground-up in Apache Mynewt, designed to be optimized for small 
+Flash File System.)  The Newtron file system is a FS that has been built from
+the ground-up in Apache Mynewt, designed to be optimized for small
 (64KB-32MB) flashes.
+The fs directory also contains [fcb](http://mynewt.apache.org/latest/os/modules/fcb/fcb/), a flash circular buffer implementation.
 
 ## Sample Applications
 
-In addition to some of the core packages, there are also some sample 
+In addition to some of the core packages, there are also some sample
 applications that show how to instantiate the Apache Mynewt system.  These
-sample applications are located in the ```apps/``` directory.  They 
-include: 
-
-* [boot](https://github.com/apache/incubator-mynewt-core/tree/master/apps/boot): 
-  Project to build the bootloader for test platforms. 
-* [blinky](https://github.com/apache/incubator-mynewt-core/tree/master/apps/blinky): The 
-  minimal packages to build the OS, and blink a LED!  
-* [slinky](https://github.com/apache/incubator-mynewt-core/tree/master/apps/slinky): A 
-  slightly more complex project that includes the console and shell libraries. 
+sample applications are located in the `apps/` directory.  They include:
+
+* [boot](https://github.com/apache/incubator-mynewt-core/tree/master/apps/boot):
+  Project to build the bootloader for test platforms.
+* [blinky](https://github.com/apache/incubator-mynewt-core/tree/master/apps/blinky): The
+  minimal packages to build the OS, and blink a LED!
+* [slinky](https://github.com/apache/incubator-mynewt-core/tree/master/apps/slinky): A
+  slightly more complex project that includes the console and shell libraries.
+* [blecent](https://github.com/apache/incubator-mynewt-core/tree/master/apps/blecent): A basic central device with no user interface.  This
+application scans for a peripheral that supports the alert notification
+service (ANS).  Upon discovering such a peripheral, blecent connects and
+performs a characteristic read, characteristic write, and notification subscription.
+* [blehci](https://github.com/apache/incubator-mynewt-core/tree/master/apps/blehci): Implements a BLE controller-only application.  A separate
+host-only implementation, such as Linux's BlueZ, can interface with this
+application via HCI over UART.
 * [bleprph](https://github.com/apache/incubator-mynewt-core/tree/master/apps/bleprph): An
   implementation of a minimal BLE peripheral.
-* [bletiny](https://github.com/apache/incubator-mynewt-core/tree/master/apps/bletiny): A 
+* [bletiny](https://github.com/apache/incubator-mynewt-core/tree/master/apps/bletiny): A
   stripped down interface to the Apache Mynewt Bluetooth stack.
-* [test](https://github.com/apache/incubator-mynewt-core/tree/master/apps/test): Test 
-  project which can be compiled either with the simulator, or on a per-architecture basis.  
-  Test will run all the package's unit tests. 
-
+* [bleuart](https://github.com/apache/incubator-mynewt-core/tree/master/apps/bleuart):
+Implements a simple BLE peripheral that supports the Nordic
+UART / Serial Port Emulation service
+(https://developer.nordicsemi.com/nRF5_SDK/nRF51_SDK_v8.x.x/doc/8.0.0/s110/html/a00072.html).
+* [test](https://github.com/apache/incubator-mynewt-core/tree/master/apps/test): Test
+  project which can be compiled either with the simulator, or on a per-architecture basis.
+  Test will run all the package's unit tests.
 
 # Getting Help
 
-If you are having trouble using or contributing to Apache Mynewt, or just want to talk 
-to a human about what you're working on, you can contact us via the 
-[developers mailing list](mailto:dev@mynewt.incubator.apache.org).  
+If you are having trouble using or contributing to Apache Mynewt, or just want to talk
+to a human about what you're working on, you can contact us via the
+[developers mailing list](mailto:dev@mynewt.incubator.apache.org).
 
 Although not a formal channel, you can also find a number of core developers
 on the #mynewt channel on Freenode.
@@ -144,15 +158,15 @@ on the #mynewt channel on Freenode.
 Also, be sure to checkout the [Frequently Asked Questions](https://mynewt.apache.org/faq/answers)
 for some help troubleshooting first.
 
-# Contributing 
+# Contributing
 
-Anybody who works with Apache Mynewt can be a contributing member of the 
-community that develops and deploys it.  The process of releasing an operating 
+Anybody who works with Apache Mynewt can be a contributing member of the
+community that develops and deploys it.  The process of releasing an operating
 system for microcontrollers is never done: and we welcome your contributions
 to that effort.
 
-More information can be found at the Community section of the Apache Mynewt 
-website, located [here](https://mynewt.apache.org/community).  
+More information can be found at the Community section of the Apache Mynewt
+website, located [here](https://mynewt.apache.org/community).
 
 ## Pull Requests
 
@@ -161,62 +175,61 @@ but depending on the topic, can also be relayed to the official Apache Mynewt
 developer mailing list dev@mynewt.incubator.apache.org.
 
 If you are suggesting a new feature, please email the developer list directly,
-with a description of the feature you are planning to work on.  
+with a description of the feature you are planning to work on.
 
-We do not merge pull requests directly on Github, all PRs will be pulled and 
+We do not merge pull requests directly on Github, all PRs will be pulled and
 pushed through https://git.apache.org/.
 
 ## Filing Bugs
 
-Bugs can be filed on the 
+Bugs can be filed on the
 [Apache Mynewt Bug Tracker](https://issues.apache.org/jira/browse/MYNEWT).
 
 Where possible, please include a self-contained reproduction case!
 
 ## Feature Requests
 
-Feature requests should also be filed on the 
-[Apache Mynewt Bug Tracker](https://issues.apache.org/jira/browse/MYNEWT).  
-Please introduce it as a ticket type "Wish." 
+Feature requests should also be filed on the
+[Apache Mynewt Bug Tracker](https://issues.apache.org/jira/browse/MYNEWT).
+Please introduce it as a ticket type "Wish."
 
 ## Writing Tests
 
 We love getting newt tests!  Apache Mynewt is a huge undertaking, and improving
-code coverage is a win for every Apache Mynewt user.  
+code coverage is a win for every Apache Mynewt user.
 
 ## Writing Documentation
 
-Contributing to documentation (in addition to writing tests), is a great way 
+Contributing to documentation (in addition to writing tests), is a great way
 to get involved with the Apache Mynewt project.
 
-Pull requests to the apache-mynewt-site repository on Github are the best 
-way to submit documentation.  For more information on contributing to the 
-documentation, the [FAQ](https://mynewt.apache.org/faq/answers/) has some 
+Pull requests to the apache-mynewt-site repository on Github are the best
+way to submit documentation.  For more information on contributing to the
+documentation, the [FAQ](https://mynewt.apache.org/faq/answers/) has some
 more information.
 
-# License 
+# License
 
-The code in this repository is all under either the Apache 2 license, or a 
-license compatible with the Apache 2 license.  See the LICENSE file for more 
-information. 
+The code in this repository is all under either the Apache 2 license, or a
+license compatible with the Apache 2 license.  See the LICENSE file for more
+information.
 
 # Export restrictions
 
-This distribution includes cryptographic software. The country in which you 
-currently reside may have restrictions on the import, possession, use, and/or 
+This distribution includes cryptographic software. The country in which you
+currently reside may have restrictions on the import, possession, use, and/or
 re-export to another country, of encryption software. BEFORE using any encryption
 software, please check your country's laws, regulations and policies concerning
 the import, possession, or use, and re-export of encryption software, to see if
 this is permitted. See <http://www.wassenaar.org/> for more information.
 
-The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), 
-has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, 
-which includes information security software using or performing cryptographic 
-functions with asymmetric algorithms. The form and manner of this Apache Software 
-Foundation distribution makes it eligible for export under the License Exception ENC 
-Technology Software Unrestricted (TSU) exception (see the BIS Export Administration 
+The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS),
+has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1,
+which includes information security software using or performing cryptographic
+functions with asymmetric algorithms. The form and manner of this Apache Software
+Foundation distribution makes it eligible for export under the License Exception ENC
+Technology Software Unrestricted (TSU) exception (see the BIS Export Administration
 Regulations, Section 740.13) for both object code and source code.
 
-The following provides more details on the included cryptographic software: 
+The following provides more details on the included cryptographic software:
 https://tls.mbed.org/supported-ssl-ciphersuites.
-

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/94ac3d6b/RELEASE_NOTES.md
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 40a15f4..c5d38f9 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,11 +1,11 @@
 # RELEASE NOTES
 
-30 Apr 2016 - Apache Mynewt v0.9.0
+22 Nov 2016 - Apache Mynewt v1.0.0, beta 1
 
 For full release notes, please visit the
 [Apache Mynewt Wiki](https://cwiki.apache.org/confluence/display/MYNEWT/Release+Notes).
 
-This is the fourth source release of Apache Mynewt Core.  For more
+This is the fifth source release of Apache Mynewt Core.  For more
 information on Apache Mynewt, please visit the
 [Apache Mynewt Website](https://mynewt.apache.org/).