Repository: incubator-mynewt-site Updated Branches: refs/heads/master 8e6f2c683 -> 56239e786
Removed pre-GA from release banner and roadmap in About page, updated project_create.md file to show correct run command for simulated targets. Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/56239e78 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/56239e78 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/56239e78 Branch: refs/heads/master Commit: 56239e7867ebf1b1a8d768f14d3f62162fa68cd0 Parents: 8e6f2c6 Author: aditihilbert <[email protected]> Authored: Mon May 30 23:37:54 2016 -0700 Committer: aditihilbert <[email protected]> Committed: Mon May 30 23:37:54 2016 -0700 ---------------------------------------------------------------------- custom-theme/main-banner.html | 2 +- docs/about.md | 36 +++++++++++++++--------------- docs/os/get_started/project_create.md | 12 +++++++--- 3 files changed, 28 insertions(+), 22 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/56239e78/custom-theme/main-banner.html ---------------------------------------------------------------------- diff --git a/custom-theme/main-banner.html b/custom-theme/main-banner.html index 3dea9d3..89dcc7a 100644 --- a/custom-theme/main-banner.html +++ b/custom-theme/main-banner.html @@ -7,7 +7,7 @@ </div><!-- (need this comment because of the inline-blocks) --><div class="col-md-4 v2-vcenter"> <div class="news bg-orange text-center"> - <h4>Pre-GA Mynewt 0.8.0 release is available now. </h4> + <h4>Mynewt 0.8.0 release is available now. </h4> <a href="/download/">Download!</a> </div> </div> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/56239e78/docs/about.md ---------------------------------------------------------------------- diff --git a/docs/about.md b/docs/about.md index 327074d..8e722f8 100644 --- a/docs/about.md +++ b/docs/about.md @@ -1,24 +1,24 @@ ###Roadmap -Release Version | Descriptor | Date |Features ------------- | ------------- |------|------- -0.9.0 | pre-GA release | May, 2016 | * Support images in external flash - | | | * HAL for Nordic nRF52, STMicro - | | | * Support for low power modes in multiple SoCs - | | | * BLE 4.2: LE Secure Connections Pairing, including bonding - | | | * BLE 4.2: Host and Controller separation - | | | * BLE 4.2: Random private resolvable addresses -0.10.0| pre-GA release | June, 2016 | * Test coverage improvements - | | | * System watchdog - | | | * Support for additional Arduino boards - | | | * BLE 4.2: Remote configuration, upgrade, factory reset over BLE 4.2 - | | | * BLE 4.2: Factory reset - | | | * BLE 4.2: GATT based BLE profiles for Mynewt - | | | * BLE 4.2: Configurability improvements -0.11.0|pre-GA release | July, 2016 | * Wi-Fi support - | | | * Add second scripting module - | | | * C++ friendly external header files +Release Version | Date |Features +------------ |------|------- +0.9.0 | May, 2016 | * Support images in external flash + | | * HAL for Nordic nRF52, STMicro + | | * Support for low power modes in multiple SoCs + | | * BLE 4.2: LE Secure Connections Pairing, including bonding + | | * BLE 4.2: Host and Controller separation + | | * BLE 4.2: Random private resolvable addresses +0.10.0| June, 2016 | * Test coverage improvements + | | * System watchdog + | | * Support for additional Arduino boards + | | * BLE 4.2: Remote configuration, upgrade, factory reset over BLE 4.2 + | | * BLE 4.2: Factory reset + | | * BLE 4.2: GATT based BLE profiles for Mynewt + | | * BLE 4.2: Configurability improvements +0.11.0| July, 2016 | * Wi-Fi support + | | * Add second scripting module + | | * C++ friendly external header files <font color="#F2853F"> The detailed roadmap is tracked on [JIRA for Mynewt](https://issues.apache.org/jira/browse/MYNEWT/?selectedTab=com.atlassian.jira.jira-projects-plugin:roadmap-panel). </font> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/56239e78/docs/os/get_started/project_create.md ---------------------------------------------------------------------- diff --git a/docs/os/get_started/project_create.md b/docs/os/get_started/project_create.md index 90ec19c..65358d6 100644 --- a/docs/os/get_started/project_create.md +++ b/docs/os/get_started/project_create.md @@ -192,15 +192,21 @@ App successfully built: /Users/sterling/dev/tmp/my_app/bin/my_blinky_sim/apps/bl <br> +### Run the Project + You can run the simulated version of your project and see the simulated LED blink. ``` -./bin/my_blinky_sim/apps/blinky/blinky.elf -hal_gpio set pin 1 to 0 +$ newt run my_blinky_sim +No download script for BSP hw/bsp/native +Debugging /workspace/bin/my_blinky_sim/apps/blinky/blinky.elf +<snip> +Reading symbols from /workspace/bin/my_blinky_sim/apps/blinky/blinky.elf...done. +(gdb) ``` -Just press _ctrl-c_ to exit. +Type `r` at the `(gdb)` prompt to run the project. You will see an output indicating that the `hal_gpio` pin is toggling between 1 and 0 in a simulated blink. <br>
