http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/latest/mkdocs/search_index.json ---------------------------------------------------------------------- diff --git a/latest/mkdocs/search_index.json b/latest/mkdocs/search_index.json index 8beca40..9973a91 100644 --- a/latest/mkdocs/search_index.json +++ b/latest/mkdocs/search_index.json @@ -357,7 +357,7 @@ }, { "location": "/os/get_started/project_create/", - "text": "Create Your First Mynewt Project\n\n\nThis page shows how to create a Mynewt Project using the \nnewt\n command-line tool.\n\n\n\n\nPre-Requisites\n\n\n\n\nNewt:\n\n\nIf you have taken the Docker route, you have already installed Newt.\n\n\nIf you have taken the native install route, you have to ensure that you have installed the Newt tool following the instructions for \nMac\n or \nLinux\n as appropriate, and that the \nnewt\n command is in your system path. \n\n\n\n\n\n\nYou must have Internet connectivity to fetch remote Mynewt components.\n\n\nYou must \ninstall the compiler tools\n to \nsupport native compiling to build the project this tutorial creates. \n\n\n\n\n\n\nNewt New\n\n\nChoose a project name. For this tutorial we will call this project \nmyproj\n.\nEnter the \nnewt new myproj\n command. \n\n\n$ newt new myproj\nDownloading project skeleton from apache/incubator-mynewt-blinky...\nInstalling skeleton in myproj...\nProject myproj successfully crea ted.\n\n\n\n\n\n\n\nNewt populates this new project with a base skeleton of a new Apache Mynewt \nproject. It has the following structure. \n\n\nNote\n: If you do not have \ntree\n, install it by running \nbrew install tree\n.\n\n\n$ cd myproj\n$ tree \n.\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 blinky\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 pkg.yml\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 src\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 main.c\n\u251c\u2500\u2500 project.yml\n\u2514\u2500\u2500 targets\n \u251c\u2500\u2500 my_blinky_sim\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 pkg.yml\n \u2502\u00a0\u00a0 \u2514\u2500\u2500 target.yml\n \u2514\u2500\u2500 unittest\n \u251c\u2500\u2500 pkg.yml\n \u2514\u2500\u2500 target.yml\n\n6 directories, 11 files\n\n\n\n\n\n\n\nThe Newt tool has installed the base files for a project comprising the following:\n\n\n\n\nThe file \nproject.yml\n contains the repository list that the project uses to fetch\nits packages. Your project is a collection of repositories. In this case, the project just\ncomprises the core mynewt repository. Later you will add more repositories\nto include other mynewt components.\n\n\nThe file \napps/blinky/pkg.yml\n contains the description of your application\nand its package dependencies.\n\n\nA \ntarget\n directory containing \nmy_blinky_sim\n, a target descriptor used to\nbuild a version of myproj. Use \nnewt target show\n to see available build \ntargets.\n\n\nA non-buildable target called \nunittest\n. This is used internally by \nnewt\n and is not a formal build target.\n\n\n\n\nNOTE:\n The actual code and package files are not installed \n(except the template for \nmain.c\n). See the next step for installing the packages.\n\n\nNOTE:\n By default newt uses the code in the master branch. This is the latest stable\ncode for newt. If you need to use a different branch, you can set this in the project.yml\nfile. \n\n\nrepository.apache-mynewt-core:\n type: github\n vers: 0-latest\n user: apache\n repo: incubator-mynewt-core\n\n\n\n\n\nChanging to 0-dev will put you on the develop branch. \nThe Develop Branch may not be stable and \nyou may encounter bugs or other problems.\n\n\n\n\nNewt Install\n\n\nOnce you've switched into your new project's directory, the next step is to fetch\nany dependencies this project has. By default, all Newt projects rely on a\nsingle remote repository, apache-mynewt-core. The \nnewt install\n command will\nfetch this repository.\n\n\n$ newt install\napache-mynewt-core\n\n\n\n\n\nNOTE:\n \napache-mynewt-core\n may take a while to download. To see progress,\nuse the \n-v\n (verbose) option to install. \n\n\n\n\nOnce \nnewt install\n has successfully finished, the contents of \napache-mynewt-core\n will have been downloaded into your local directory. You can view them by issuing the following commands in the base directory of the new project. The actual output will depend on what is in the latest 'master' branch you have pulled from.\n\n\n$ tree -L 2 repos/apache-mynewt-core/\nrepos/apache-mynewt-core/\nrepos/apache-mynewt-core/\n\u251c\u2500\u2500 CODING_STANDARDS.md\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 RELEASE_NOTES.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blecent\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blehci\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleprph\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleprph_oic\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletiny\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleuart\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ffs2native\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ocf_sample\n\u2502\u00a0\u00a0 \u251c \u2500\u2500 slinky\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 slinky_oic\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 spitest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 splitty\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 test\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 timtest\n\u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot_serial\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bootutil\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 split\n\u251c\u2500\u2500 compiler\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 arm-none-eabi-m0\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 arm-none-eabi-m4\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 gdbmacros\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sim\n\u251c\u2500\u2500 crypto\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mbedtls\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 tinycrypt\n\u251c\u2500\u2500 docs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 doxygen.xml\n\u251c\u2500\u2500 encoding\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 base64\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cborattr\n\u2502\u00a0\u00a 0 \u251c\u2500\u2500 json\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 tinycbor\n\u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fcb\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 nffs\n\u251c\u2500\u2500 hw\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bsp\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cmsis-core\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 drivers\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 hal\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mcu\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 scripts\n\u251c\u2500\u2500 kernel\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 os\n\u251c\u2500\u2500 libc\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 baselibc\n\u251c\u2500\u2500 mgmt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 imgmgr\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mgmt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 newtmgr\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 oicmgr\n\u251c\u2500\u2500 net\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ip\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 nimble\n\u2502\u00a0 \u00a0 \u251c\u2500\u2500 oic\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 wifi\n\u251c\u2500\u2500 project.yml\n\u251c\u2500\u2500 repository.yml\n\u251c\u2500\u2500 sys\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 config\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 console\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 coredump\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 defs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_map\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 id\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mfg\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 reboot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 shell\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 stats\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sysinit\n\u251c\u2500\u2500 targets\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 unittest\n\u251c\u2500\u2500 test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 crash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 runtest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 testreport\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 testutil\n\u251c\u2500\u2500 time\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 datetime\n\u2514\u2500\u2500 util\n \u251c\u2500\u2500 cbmem\n \u251c\u2500\u2500 crc\n \u2514\u2500\u2500 mem\n\n87 directories, 9 files\n\n\n\n\n\nAs you can see, the core of the Apache Mynewt operating system has been brought \ninto your local directory. \n\n\n\n\nTest the project's packages\n\n\nYou have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the \nlibs/os\n package in the \napache-mynewt-core\n repo, call newt as shown below.\n\n\n$ newt test @apache-mynewt-core/sys/config\nTesting package @apache-mynewt-core/sys/config/test-fcb\nCompiling bootutil_misc.c\nCompiling image_ec.c\nCompiling image_rsa.c\nCompiling image_validate.c\n\nsnip\n\n\n\n\n\n\nNOTE:\n If you've installed the latest gcc using homebrew on your Mac, you will likely be running gcc-6. Make sure you have a djusted the compiler.yml configuration to reflect that as noted in \nNative Install Option\n. You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt.\n\n\nNOTE\n If you are running the standard gcc for 64-bit machines, it does not support 32-bit. In that case you will see compilation errors. You need to install multiboot gcc (e.g. gcc-multilib if you running on a 64-bit Ubuntu).\n\n\n$ brew uninstall gcc-6\n$ brew link gcc-5\n\n\n\n\n\n\n\nTo test all the packages in a project, specify \nall\n instead of the package name.\n\n\n$ newt test all\n...lots of compiling and testing...\n...about 2 minutes later ...\nCompiling mn_sock_test.c\nArchiving mn_socket.a\nLinking test_mn_socket\nExecuting test: /Users/dsimmons/myproj/bin/unittest/sys/mn_socket/test_mn_socket\nPassed tests: [libs/json libs/util libs/mbedtls net/nimble/host hw/hal libs/bootutil sys/log sys/config sys/fcb fs/nffs libs/os libs/boot_serial sys/mn_socket]\nAll tests passed \n\n\n\n\n\n\n\nBuild the Project\n\n\nTo build and run your new application, simply issue the following command:\n\n\n$ newt build my_blinky_sim \nBuilding target targets/my_blinky_sim\nCompiling main.c\nArchiving blinky.a\nCompiling hal_bsp.c\nCompiling os_bsp.c\nCompiling sbrk.c\nArchiving native.a\nCompiling flash_map.c\n\nsnip\n\nLinking blinky.elf\nApp successfully built: /Users/dsimmons/myproj/bin/my_blinky_sim/apps/blinky/blinky.elf\n\n\n\n\n\n\n\nRun the Project\n\n\nYou can run the simulated version of your project and see the simulated LED\nblink.\n\n\n$ ./bin/my_blinky_sim/apps/blinky/blinky.elf\nhal_gpio set pin 1 to 0\n\n\n\n\n\n\n\nComplete\n\n\nCongratulations, you have created your first project! The blinky application\nis not terribly exciting when it is run in the simulator, as there is no LED to\nblink. Apache Mynewt has a lot more functionality than just running simulated\napplications. It provides all the features you'll need to cross-compile your\napplicat ion, run it on real hardware and develop a full featured application.\n\n\nIf you're interested in learning more, a good next step is to dig in to one of\nthe \ntutorials\n and get a Mynewt project running on real hardware.\n\n\nHappy Hacking!", + "text": "Create Your First Mynewt Project\n\n\nThis page shows how to create a Mynewt Project using the \nnewt\n command-line tool.\n\n\n\n\nPre-Requisites\n\n\n\n\nNewt:\n\n\nIf you have taken the Docker route, you have already installed Newt.\n\n\nIf you have taken the native install route, you have to ensure that you have installed the Newt tool following the instructions for \nMac\n or \nLinux\n as appropriate, and that the \nnewt\n command is in your system path. \n\n\n\n\n\n\nYou must have Internet connectivity to fetch remote Mynewt components.\n\n\nYou must \ninstall the compiler tools\n to \nsupport native compiling to build the project this tutorial creates. \n\n\n\n\n\n\nNewt New\n\n\nChoose a project name. For this tutorial we will call this project \nmyproj\n.\nEnter the \nnewt new myproj\n command. \n\n\n$ newt new myproj\nDownloading project skeleton from apache/incubator-mynewt-blinky...\nInstalling skeleton in myproj...\nProject myproj successfully crea ted.\n\n\n\n\n\n\n\nNewt populates this new project with a base skeleton of a new Apache Mynewt \nproject. It has the following structure. \n\n\nNote\n: If you do not have \ntree\n, install it by running \nbrew install tree\n.\n\n\n$ cd myproj\n$ tree \n.\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 blinky\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 pkg.yml\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 src\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 main.c\n\u251c\u2500\u2500 project.yml\n\u2514\u2500\u2500 targets\n \u251c\u2500\u2500 my_blinky_sim\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 pkg.yml\n \u2502\u00a0\u00a0 \u2514\u2500\u2500 target.yml\n \u2514\u2500\u2500 unittest\n \u251c\u2500\u2500 pkg.yml\n \u2514\u2500\u2500 target.yml\n\n6 directories, 11 files\n\n\n\n\n\n\n\nThe Newt tool has installed the base files for a project comprising the following:\n\n\n\n\nThe file \nproject.yml\n contains the repository list that the project uses to fetch\nits packages. Your project is a collection of repositories. In this case, the project just\ncomprises the core mynewt repository. Later you will add more repositories\nto include other mynewt components.\n\n\nThe file \napps/blinky/pkg.yml\n contains the description of your application\nand its package dependencies.\n\n\nA \ntarget\n directory containing \nmy_blinky_sim\n, a target descriptor used to\nbuild a version of myproj. Use \nnewt target show\n to see available build \ntargets.\n\n\nA non-buildable target called \nunittest\n. This is used internally by \nnewt\n and is not a formal build target.\n\n\n\n\nNOTE:\n The actual code and package files are not installed \n(except the template for \nmain.c\n). See the next step for installing the packages.\n\n\nNOTE:\n By default newt uses the code in the master branch. This is the latest stable\ncode for newt. If you need to use a different branch, you can set this in the project.yml\nfile. \n\n\nrepository.apache-mynewt-core:\n type: github\n vers: 0-latest\n user: apache\n repo: incubator-mynewt-core\n\n\n\n\n\nChanging to 0-dev will put you on the develop branch. \nThe Develop Branch may not be stable and \nyou may encounter bugs or other problems.\n\n\n\n\nNewt Install\n\n\nOnce you've switched into your new project's directory, the next step is to fetch\nany dependencies this project has. By default, all Newt projects rely on a\nsingle remote repository, apache-mynewt-core. The \nnewt install\n command will\nfetch this repository.\n\n\n$ newt install\napache-mynewt-core\n\n\n\n\n\nNOTE:\n \napache-mynewt-core\n may take a while to download. To see progress,\nuse the \n-v\n (verbose) option to install. \n\n\n\n\nOnce \nnewt install\n has successfully finished, the contents of \napache-mynewt-core\n will have been downloaded into your local directory. You can view them by issuing the following commands in the base directory of the new project. The actual output will depend on what is in the latest 'master' branch you have pulled from.\n\n\n$ tree -L 2 repos/apache-mynewt-core/\nrepos/apache-mynewt-core/\nrepos/apache-mynewt-core/\n\u251c\u2500\u2500 CODING_STANDARDS.md\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 RELEASE_NOTES.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blecent\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blehci\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleprph\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleprph_oic\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletiny\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleuart\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ffs2native\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ocf_sample\n\u2502\u00a0\u00a0 \u251c \u2500\u2500 slinky\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 slinky_oic\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 spitest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 splitty\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 test\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 timtest\n\u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot_serial\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bootutil\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 split\n\u251c\u2500\u2500 compiler\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 arm-none-eabi-m0\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 arm-none-eabi-m4\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 gdbmacros\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sim\n\u251c\u2500\u2500 crypto\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mbedtls\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 tinycrypt\n\u251c\u2500\u2500 docs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 doxygen.xml\n\u251c\u2500\u2500 encoding\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 base64\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cborattr\n\u2502\u00a0\u00a 0 \u251c\u2500\u2500 json\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 tinycbor\n\u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fcb\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 nffs\n\u251c\u2500\u2500 hw\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bsp\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cmsis-core\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 drivers\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 hal\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mcu\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 scripts\n\u251c\u2500\u2500 kernel\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 os\n\u251c\u2500\u2500 libc\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 baselibc\n\u251c\u2500\u2500 mgmt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 imgmgr\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mgmt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 newtmgr\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 oicmgr\n\u251c\u2500\u2500 net\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ip\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 nimble\n\u2502\u00a0 \u00a0 \u251c\u2500\u2500 oic\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 wifi\n\u251c\u2500\u2500 project.yml\n\u251c\u2500\u2500 repository.yml\n\u251c\u2500\u2500 sys\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 config\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 console\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 coredump\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 defs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_map\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 id\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mfg\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 reboot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 shell\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 stats\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sysinit\n\u251c\u2500\u2500 targets\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 unittest\n\u251c\u2500\u2500 test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 crash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 runtest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 testreport\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 testutil\n\u251c\u2500\u2500 time\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 datetime\n\u2514\u2500\u2500 util\n \u251c\u2500\u2500 cbmem\n \u251c\u2500\u2500 crc\n \u2514\u2500\u2500 mem\n\n87 directories, 9 files\n\n\n\n\n\nAs you can see, the core of the Apache Mynewt operating system has been brought \ninto your local directory. \n\n\n\n\nTest the project's packages\n\n\nYou have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the \nlibs/os\n package in the \napache-mynewt-core\n repo, call newt as shown below.\n\n\n$ newt test @apache-mynewt-core/sys/config\nTesting package @apache-mynewt-core/sys/config/test-fcb\nCompiling bootutil_misc.c\nCompiling image_ec.c\nCompiling image_rsa.c\nCompiling image_validate.c\n\nsnip\n\n\n\n\n\n\nNOTE:\n If you've installed the latest gcc using homebrew on your Mac, you will likely be running gcc-6. Make sure you have a djusted the compiler.yml configuration to reflect that as noted in \nNative Install Option\n. You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt.\n\n\nNOTE:\n If you are running the standard gcc for 64-bit machines, it does not support 32-bit. In that case you will see compilation errors. You need to install multiboot gcc (e.g. gcc-multilib if you running on a 64-bit Ubuntu).\n\n\n$ brew uninstall gcc-6\n$ brew link gcc-5\n\n\n\n\n\n\n\nTo test all the packages in a project, specify \nall\n instead of the package name.\n\n\n$ newt test all\n...lots of compiling and testing...\n...about 2 minutes later ...\nCompiling mn_sock_test.c\nArchiving mn_socket.a\nLinking test_mn_socket\nExecuting test: /Users/dsimmons/myproj/bin/unittest/sys/mn_socket/test_mn_socket\nPassed tests: [libs/json libs/util libs/mbedtls net/nimble/host hw/hal libs/bootutil sys/log sys/config sys/fcb fs/nffs libs/os libs/boot_serial sys/mn_socket]\nAll tests passe d\n\n\n\n\n\n\n\nBuild the Project\n\n\nTo build and run your new application, simply issue the following command:\n\n\n$ newt build my_blinky_sim \nBuilding target targets/my_blinky_sim\nCompiling main.c\nArchiving blinky.a\nCompiling hal_bsp.c\nCompiling os_bsp.c\nCompiling sbrk.c\nArchiving native.a\nCompiling flash_map.c\n\nsnip\n\nLinking blinky.elf\nApp successfully built: /Users/dsimmons/myproj/bin/my_blinky_sim/apps/blinky/blinky.elf\n\n\n\n\n\n\n\nRun the Project\n\n\nYou can run the simulated version of your project and see the simulated LED\nblink.\n\n\n$ ./bin/my_blinky_sim/apps/blinky/blinky.elf\nhal_gpio set pin 1 to 0\n\n\n\n\n\n\n\nComplete\n\n\nCongratulations, you have created your first project! The blinky application\nis not terribly exciting when it is run in the simulator, as there is no LED to\nblink. Apache Mynewt has a lot more functionality than just running simulated\napplications. It provides all the features you'll need to cross-compile your\napplica tion, run it on real hardware and develop a full featured application.\n\n\nIf you're interested in learning more, a good next step is to dig in to one of\nthe \ntutorials\n and get a Mynewt project running on real hardware.\n\n\nHappy Hacking!", "title": "Create Your First Project" }, { @@ -382,7 +382,7 @@ }, { "location": "/os/get_started/project_create/#test-the-projects-packages", - "text": "You have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the libs/os package in the apache-mynewt-core repo, call newt as shown below. $ newt test @apache-mynewt-core/sys/config\nTesting package @apache-mynewt-core/sys/config/test-fcb\nCompiling bootutil_misc.c\nCompiling image_ec.c\nCompiling image_rsa.c\nCompiling image_validate.c snip NOTE: If you've installed the latest gcc using homebrew on your Mac, you will likely be running gcc-6. Make sure you have adjusted the compiler.yml configuration to reflect that as noted in Native Install Option . You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt. NOTE If you are running the standard gcc for 64-bit machines, it does not support 32-bit. In that case you will see compilation errors. You need to install multiboot gcc (e.g. gcc-multilib if you running on a 64-bit Ubuntu). $ brew unin stall gcc-6\n$ brew link gcc-5 To test all the packages in a project, specify all instead of the package name. $ newt test all\n...lots of compiling and testing...\n...about 2 minutes later ...\nCompiling mn_sock_test.c\nArchiving mn_socket.a\nLinking test_mn_socket\nExecuting test: /Users/dsimmons/myproj/bin/unittest/sys/mn_socket/test_mn_socket\nPassed tests: [libs/json libs/util libs/mbedtls net/nimble/host hw/hal libs/bootutil sys/log sys/config sys/fcb fs/nffs libs/os libs/boot_serial sys/mn_socket]\nAll tests passed", + "text": "You have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the libs/os package in the apache-mynewt-core repo, call newt as shown below. $ newt test @apache-mynewt-core/sys/config\nTesting package @apache-mynewt-core/sys/config/test-fcb\nCompiling bootutil_misc.c\nCompiling image_ec.c\nCompiling image_rsa.c\nCompiling image_validate.c snip NOTE: If you've installed the latest gcc using homebrew on your Mac, you will likely be running gcc-6. Make sure you have adjusted the compiler.yml configuration to reflect that as noted in Native Install Option . You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt. NOTE: If you are running the standard gcc for 64-bit machines, it does not support 32-bit. In that case you will see compilation errors. You need to install multiboot gcc (e.g. gcc-multilib if you running on a 64-bit Ubuntu). $ brew uni nstall gcc-6\n$ brew link gcc-5 To test all the packages in a project, specify all instead of the package name. $ newt test all\n...lots of compiling and testing...\n...about 2 minutes later ...\nCompiling mn_sock_test.c\nArchiving mn_socket.a\nLinking test_mn_socket\nExecuting test: /Users/dsimmons/myproj/bin/unittest/sys/mn_socket/test_mn_socket\nPassed tests: [libs/json libs/util libs/mbedtls net/nimble/host hw/hal libs/bootutil sys/log sys/config sys/fcb fs/nffs libs/os libs/boot_serial sys/mn_socket]\nAll tests passed", "title": "Test the project's packages" }, { @@ -10407,7 +10407,7 @@ }, { "location": "/newt/command_list/newt_mfg/", - "text": "newt mfg \n\n\nProvides commands to create, build, and upload manufacturing image. \n\n\nUsage:\n\n\n newt mfg [flags]\n newt mfg [command]\n\n\n\n\n\nAvailable Commands:\n\n\n create Create a manufacturing flash image\n deploy Builds and uploads a manufacturing image (build + load)\n load Load a manufacturing flash image onto a device\n\n\n\n\n\nFlags:\n\n\n -h, --help=false: help for mfg\n\n\n\n\n\nGlobal Flags:\n\n\n -l, --loglevel=\nWARN\n: Log level, defaults to WARN.\n -o, --outfile string Filename to tee log output to\n -q, --quiet=false: Be quiet; only display error output.\n -s, --silent=false: Be silent; don\nt output anything.\n -v, --verbose=false: Enable verbose output when executing commands.\n\n\n\n\n\nDescription\n\n\n\n\n\n\n\n\nSub-command\n\n\nExplanation\n\n\n\n\n\n\n\n\n\n\ncreate\n\n\nA manufacturing image specifies 1) a boot loader target, and 2) one or more image targets. Assuming the m anufacturing entity has been created and defined in the \nmfgs/\nmfg image name\n/\n package(see Examples below), this command collects the manufacturing related files in the newly created \nbin/mfgs/\nmfg image name\n directory. The collection includes manifests with the image build time, version, manufacturing package build time, image ID (or hash) etc. It is essentially a snapshot of the image data and metadata uploaded to the device flash at manufacturing time. Note that the command expects the targets and images to have already been built using \nnewt build\n and \nnewt create-image\n commands.\n\n\n\n\n\n\ndeploy\n\n\nA combination of build and load commands to put together and upload manufacturing image on to the device.\n\n\n\n\n\n\nload\n\n\nLoads the manufacturing package onto to the flash of the connected device.\n\n\n\n\n\n\n\n\nExamples\n\n\nSuppose you have created two targets (one for the bootloader and one for the \nblinky\n app). \n\n\n$ newt target show\ntargets/my _blinky_sim\n app=apps/blinky\n bsp=@apache-mynewt-core/hw/bsp/native\n build_profile=debug\ntargets/rb_blinky\n app=apps/blinky\n bsp=@apache-mynewt-core/hw/bsp/rb-nano2\n build_profile=debug\ntargets/rb_boot\n app=@apache-mynewt-core/apps/boot\n bsp=@apache-mynewt-core/hw/bsp/rb-nano2\n build_profile=optimized\n\n\n\n\n\nBuild the bootloader and app images.\n\n\n$ newt build rb_boot\n$ newt build rb_boot\n$ newt create-image rb_blinky 0.0.1\n\n\n\n\n\nCreate the directory and package to hold the manufacturing images.\n\n\n$ mkdir -p mfgs/rb_blinky_rsa\n\n\n\n\n\nThe \nrb_blinky_rsa\n package needs a pkg.yml file. In addition it is needs a mfg.yml file where the two constituent targets are defined. An example of each file is shown below.\n\n\n$ more mfgs/rb_blinky_rsa/pkg.yml \npkg.name: \nmfgs/rb_blinky_rsa\n\npkg.type: \nmfg\n\npkg.description: \npkg.author: \npkg.homepage: \n\n\n\n\n\n$ more mfgs/rb_blinky_rsa/mfg.yml \nmfg.bootloader: \ntargets/rb_b oot\n\nmfg.images:\n - \ntargets/rb_blinky\n\n\n\n\n\n\nRun the \nnewt mfg create\n command to collect all the manufacturing snapshot files.\n\n\n$ newt mfg create rb_blinky_rsa\nCreating a manufacturing image from the following files:\n\nsnip\n\nGenerated the following files:\n\nsnip\n\n$", + "text": "newt mfg \n\n\nProvides commands to create, build, and upload manufacturing image. \n\n\nUsage:\n\n\n newt mfg [flags]\n newt mfg [command]\n\n\n\n\n\nAvailable Commands:\n\n\n create Create a manufacturing flash image\n deploy Builds and uploads a manufacturing image (build + load)\n load Load a manufacturing flash image onto a device\n\n\n\n\n\nFlags:\n\n\n -h, --help=false: help for mfg\n\n\n\n\n\nGlobal Flags:\n\n\n -l, --loglevel=\nWARN\n: Log level, defaults to WARN.\n -o, --outfile string Filename to tee log output to\n -q, --quiet=false: Be quiet; only display error output.\n -s, --silent=false: Be silent; don\nt output anything.\n -v, --verbose=false: Enable verbose output when executing commands.\n\n\n\n\n\nDescription\n\n\n\n\n\n\n\n\nSub-command\n\n\nExplanation\n\n\n\n\n\n\n\n\n\n\ncreate\n\n\nA manufacturing image specifies 1) a boot loader target, and 2) one or more image targets. Assuming the m anufacturing entity has been created and defined in the \nmfgs/\nmfg image name\n/\n package(see Examples below), this command collects the manufacturing related files in the newly created \nbin/mfgs/\nmfg image name\n directory. The collection includes manifests with the image build time, version, manufacturing package build time, image ID (or hash) etc. It is essentially a snapshot of the image data and metadata uploaded to the device flash at manufacturing time. Note that the command expects the targets and images to have already been built using \nnewt build\n and \nnewt create-image\n commands.\n\n\n\n\n\n\ndeploy\n\n\nA combination of build and load commands to put together and upload manufacturing image on to the device.\n\n\n\n\n\n\nload\n\n\nLoads the manufacturing package onto to the flash of the connected device.\n\n\n\n\n\n\n\n\nExamples\n\n\nSuppose you have created two targets (one for the bootloader and one for the \nblinky\n app). \n\n\n$ newt target show\ntargets/my _blinky_sim\n app=apps/blinky\n bsp=@apache-mynewt-core/hw/bsp/native\n build_profile=debug\ntargets/rb_blinky\n app=apps/blinky\n bsp=@apache-mynewt-core/hw/bsp/rb-nano2\n build_profile=debug\ntargets/rb_boot\n app=@apache-mynewt-core/apps/boot\n bsp=@apache-mynewt-core/hw/bsp/rb-nano2\n build_profile=optimized\n\n\n\n\n\nCreate the directory to hold the mfg packages.\n\n\n$ mkdir -p mfgs/rb_blinky_rsa\n\n\n\n\n\nThe \nrb_blinky_rsa\n package needs a pkg.yml file. In addition it is needs a mfg.yml file to specify the two constituent targets. An example of each file is shown below.\n\n\n$ more mfgs/rb_blinky_rsa/pkg.yml \npkg.name: \nmfgs/rb_blinky_rsa\n\npkg.type: \nmfg\n\npkg.description: \npkg.author: \npkg.homepage: \n\n\n\n\n\n$ more mfgs/rb_blinky_rsa/mfg.yml \nmfg.bootloader: \ntargets/rb_boot\n\nmfg.images:\n - \ntargets/rb_blinky\n\n\n\n\n\n\nBuild the bootloader and app images.\n\n\n$ newt build rb_boot\n$ newt create-image rb_blinky 0.0.1\n \n\n\n\n\nRun the \nnewt mfg create\n command to collect all the manufacturing snapshot files.\n\n\n$ newt mfg create rb_blinky_rsa\nCreating a manufacturing image from the following files:\n\nsnip\n\nGenerated the following files:\n\nsnip\n\n$", "title": "newt mfg" }, { @@ -10442,7 +10442,7 @@ }, { "location": "/newt/command_list/newt_mfg/#examples", - "text": "Suppose you have created two targets (one for the bootloader and one for the blinky app). $ newt target show\ntargets/my_blinky_sim\n app=apps/blinky\n bsp=@apache-mynewt-core/hw/bsp/native\n build_profile=debug\ntargets/rb_blinky\n app=apps/blinky\n bsp=@apache-mynewt-core/hw/bsp/rb-nano2\n build_profile=debug\ntargets/rb_boot\n app=@apache-mynewt-core/apps/boot\n bsp=@apache-mynewt-core/hw/bsp/rb-nano2\n build_profile=optimized Build the bootloader and app images. $ newt build rb_boot\n$ newt build rb_boot\n$ newt create-image rb_blinky 0.0.1 Create the directory and package to hold the manufacturing images. $ mkdir -p mfgs/rb_blinky_rsa The rb_blinky_rsa package needs a pkg.yml file. In addition it is needs a mfg.yml file where the two constituent targets are defined. An example of each file is shown below. $ more mfgs/rb_blinky_rsa/pkg.yml \npkg.name: mfgs/rb_blinky_rsa \npkg.type: mfg \npkg.description: \npkg.author : \npkg.homepage: $ more mfgs/rb_blinky_rsa/mfg.yml \nmfg.bootloader: targets/rb_boot \nmfg.images:\n - targets/rb_blinky Run the newt mfg create command to collect all the manufacturing snapshot files. $ newt mfg create rb_blinky_rsa\nCreating a manufacturing image from the following files: snip \nGenerated the following files: snip \n$", + "text": "Suppose you have created two targets (one for the bootloader and one for the blinky app). $ newt target show\ntargets/my_blinky_sim\n app=apps/blinky\n bsp=@apache-mynewt-core/hw/bsp/native\n build_profile=debug\ntargets/rb_blinky\n app=apps/blinky\n bsp=@apache-mynewt-core/hw/bsp/rb-nano2\n build_profile=debug\ntargets/rb_boot\n app=@apache-mynewt-core/apps/boot\n bsp=@apache-mynewt-core/hw/bsp/rb-nano2\n build_profile=optimized Create the directory to hold the mfg packages. $ mkdir -p mfgs/rb_blinky_rsa The rb_blinky_rsa package needs a pkg.yml file. In addition it is needs a mfg.yml file to specify the two constituent targets. An example of each file is shown below. $ more mfgs/rb_blinky_rsa/pkg.yml \npkg.name: mfgs/rb_blinky_rsa \npkg.type: mfg \npkg.description: \npkg.author: \npkg.homepage: $ more mfgs/rb_blinky_rsa/mfg.yml \nmfg.bootloader: targets/rb_boot \nmfg.images:\n - targets/rb_blinky Build the boot loader and app images. $ newt build rb_boot\n$ newt create-image rb_blinky 0.0.1 Run the newt mfg create command to collect all the manufacturing snapshot files. $ newt mfg create rb_blinky_rsa\nCreating a manufacturing image from the following files: snip \nGenerated the following files: snip \n$", "title": "Examples" }, {
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/latest/newt/command_list/newt_mfg/index.html ---------------------------------------------------------------------- diff --git a/latest/newt/command_list/newt_mfg/index.html b/latest/newt/command_list/newt_mfg/index.html index b4aecca..8acbfb3 100644 --- a/latest/newt/command_list/newt_mfg/index.html +++ b/latest/newt/command_list/newt_mfg/index.html @@ -565,19 +565,12 @@ targets/rb_boot </pre></div> -<p>Build the bootloader and app images.</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build rb_boot -$ newt build rb_boot -$ newt create-image rb_blinky 0.0.1 -</pre></div> - - -<p>Create the directory and package to hold the manufacturing images.</p> +<p>Create the directory to hold the mfg packages.</p> <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ mkdir -p mfgs/rb_blinky_rsa </pre></div> -<p>The <code>rb_blinky_rsa</code> package needs a pkg.yml file. In addition it is needs a mfg.yml file where the two constituent targets are defined. An example of each file is shown below.</p> +<p>The <code>rb_blinky_rsa</code> package needs a pkg.yml file. In addition it is needs a mfg.yml file to specify the two constituent targets. An example of each file is shown below.</p> <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ more mfgs/rb_blinky_rsa/pkg.yml pkg.name: "mfgs/rb_blinky_rsa" pkg.type: "mfg" @@ -594,6 +587,12 @@ mfg.images: </pre></div> +<p>Build the bootloader and app images.</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build rb_boot +$ newt create-image rb_blinky 0.0.1 +</pre></div> + + <p>Run the <code>newt mfg create</code> command to collect all the manufacturing snapshot files.</p> <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt mfg create rb_blinky_rsa Creating a manufacturing image from the following files: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/latest/os/get_started/project_create/index.html ---------------------------------------------------------------------- diff --git a/latest/os/get_started/project_create/index.html b/latest/os/get_started/project_create/index.html index 525ede0..c6b8a10 100644 --- a/latest/os/get_started/project_create/index.html +++ b/latest/os/get_started/project_create/index.html @@ -579,7 +579,7 @@ Compiling image_validate.c <p><strong>NOTE:</strong> If you've installed the latest gcc using homebrew on your Mac, you will likely be running gcc-6. Make sure you have adjusted the compiler.yml configuration to reflect that as noted in <a href="../native_tools/">Native Install Option</a>. You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt.</p> -<p><strong>NOTE</strong> If you are running the standard gcc for 64-bit machines, it does not support 32-bit. In that case you will see compilation errors. You need to install multiboot gcc (e.g. gcc-multilib if you running on a 64-bit Ubuntu).</p> +<p><strong>NOTE:</strong> If you are running the standard gcc for 64-bit machines, it does not support 32-bit. In that case you will see compilation errors. You need to install multiboot gcc (e.g. gcc-multilib if you running on a 64-bit Ubuntu).</p> <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ brew uninstall gcc-6 $ brew link gcc-5 </pre></div> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/latest/sitemap.xml ---------------------------------------------------------------------- diff --git a/latest/sitemap.xml b/latest/sitemap.xml index ca5ad51..8d307ee 100644 --- a/latest/sitemap.xml +++ b/latest/sitemap.xml @@ -4,7 +4,7 @@ <url> <loc>http://mynewt.apache.org/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -13,7 +13,7 @@ <url> <loc>http://mynewt.apache.org/pages/ble/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -22,7 +22,7 @@ <url> <loc>http://mynewt.apache.org/quick-start/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -30,7 +30,7 @@ <url> <loc>http://mynewt.apache.org/about/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -38,7 +38,7 @@ <url> <loc>http://mynewt.apache.org/talks/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -46,7 +46,7 @@ <url> <loc>http://mynewt.apache.org/download/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -54,7 +54,7 @@ <url> <loc>http://mynewt.apache.org/community/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -62,7 +62,7 @@ <url> <loc>http://mynewt.apache.org/events/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -71,7 +71,7 @@ <url> <loc>http://mynewt.apache.org/os/introduction/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -83,7 +83,7 @@ <url> <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> @@ -123,13 +123,13 @@ <url> <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> <url> <loc>http://mynewt.apache.org/faq/answers/</loc> - <lastmod>2017-01-19</lastmod> + <lastmod>2017-01-25</lastmod> <changefreq>daily</changefreq> </url> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ble_intro/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ble_intro/index.html b/network/ble/ble_intro/index.html index 17761e1..51531cb 100644 --- a/network/ble/ble_intro/index.html +++ b/network/ble/ble_intro/index.html @@ -453,7 +453,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ble_sec/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ble_sec/index.html b/network/ble/ble_sec/index.html index ffd2670..2592ea0 100644 --- a/network/ble/ble_sec/index.html +++ b/network/ble/ble_sec/index.html @@ -448,7 +448,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/bletiny/bletiny_GAP/index.html ---------------------------------------------------------------------- diff --git a/network/ble/bletiny/bletiny_GAP/index.html b/network/ble/bletiny/bletiny_GAP/index.html index 3b4f6b7..4261e95 100644 --- a/network/ble/bletiny/bletiny_GAP/index.html +++ b/network/ble/bletiny/bletiny_GAP/index.html @@ -628,7 +628,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/bletiny/bletiny_GATT/index.html ---------------------------------------------------------------------- diff --git a/network/ble/bletiny/bletiny_GATT/index.html b/network/ble/bletiny/bletiny_GATT/index.html index 306c80c..041dfa3 100644 --- a/network/ble/bletiny/bletiny_GATT/index.html +++ b/network/ble/bletiny/bletiny_GATT/index.html @@ -595,7 +595,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/bletiny/bletiny_advdata/index.html ---------------------------------------------------------------------- diff --git a/network/ble/bletiny/bletiny_advdata/index.html b/network/ble/bletiny/bletiny_advdata/index.html index e601038..bf1b985 100644 --- a/network/ble/bletiny/bletiny_advdata/index.html +++ b/network/ble/bletiny/bletiny_advdata/index.html @@ -539,7 +539,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/bletiny_api/index.html ---------------------------------------------------------------------- diff --git a/network/ble/bletiny_api/index.html b/network/ble/bletiny_api/index.html index 341f4c6..be0868c 100644 --- a/network/ble/bletiny_api/index.html +++ b/network/ble/bletiny_api/index.html @@ -535,7 +535,7 @@ b disc dsc conn=1 start=17 end=31 <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_add_cpu/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_add_cpu/index.html b/network/ble/ini_stack/ble_add_cpu/index.html index 57a1620..2ecd51e 100644 --- a/network/ble/ini_stack/ble_add_cpu/index.html +++ b/network/ble/ini_stack/ble_add_cpu/index.html @@ -505,7 +505,7 @@ BLE specification.</p> <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_consolepkg/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_consolepkg/index.html b/network/ble/ini_stack/ble_consolepkg/index.html index 7c28ef4..7872f72 100644 --- a/network/ble/ini_stack/ble_consolepkg/index.html +++ b/network/ble/ini_stack/ble_consolepkg/index.html @@ -522,7 +522,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_controller_ini/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_controller_ini/index.html b/network/ble/ini_stack/ble_controller_ini/index.html index 5a01e64..339fc97 100644 --- a/network/ble/ini_stack/ble_controller_ini/index.html +++ b/network/ble/ini_stack/ble_controller_ini/index.html @@ -568,7 +568,7 @@ long; even a few milliseconds could cause undesirable behavior.</p> <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_devadd/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_devadd/index.html b/network/ble/ini_stack/ble_devadd/index.html index 6702775..adff57d 100644 --- a/network/ble/ini_stack/ble_devadd/index.html +++ b/network/ble/ini_stack/ble_devadd/index.html @@ -519,7 +519,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_host_ini/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_host_ini/index.html b/network/ble/ini_stack/ble_host_ini/index.html index d5dd1b1..49e016c 100644 --- a/network/ble/ini_stack/ble_host_ini/index.html +++ b/network/ble/ini_stack/ble_host_ini/index.html @@ -565,7 +565,7 @@ so it specifies <em>NULL</em> as the second argument to <code>ble_hs_init()</cod <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_ini_intro/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_ini_intro/index.html b/network/ble/ini_stack/ble_ini_intro/index.html index 5615770..6cda2d5 100644 --- a/network/ble/ini_stack/ble_ini_intro/index.html +++ b/network/ble/ini_stack/ble_ini_intro/index.html @@ -489,7 +489,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_mempool/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_mempool/index.html b/network/ble/ini_stack/ble_mempool/index.html index 3c4e7c1..4bfdaa3 100644 --- a/network/ble/ini_stack/ble_mempool/index.html +++ b/network/ble/ini_stack/ble_mempool/index.html @@ -516,7 +516,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_parent_ini/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_parent_ini/index.html b/network/ble/ini_stack/ble_parent_ini/index.html index dce7390..3cfae68 100644 --- a/network/ble/ini_stack/ble_parent_ini/index.html +++ b/network/ble/ini_stack/ble_parent_ini/index.html @@ -592,7 +592,7 @@ host and controller to remain in sync.</p> <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/ini_stack/ble_statpkg/index.html ---------------------------------------------------------------------- diff --git a/network/ble/ini_stack/ble_statpkg/index.html b/network/ble/ini_stack/ble_statpkg/index.html index 2e5a3b9..239bee5 100644 --- a/network/ble/ini_stack/ble_statpkg/index.html +++ b/network/ble/ini_stack/ble_statpkg/index.html @@ -518,7 +518,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/network/ble/nimble_setup/index.html ---------------------------------------------------------------------- diff --git a/network/ble/nimble_setup/index.html b/network/ble/nimble_setup/index.html index 3723118..17b2264 100644 --- a/network/ble/nimble_setup/index.html +++ b/network/ble/nimble_setup/index.html @@ -587,7 +587,7 @@ apache-mynewt-core's example Nimble apps. These apps can be found at the below <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_build/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_build/index.html b/newt/command_list/newt_build/index.html index 5fda68d..757d806 100644 --- a/newt/command_list/newt_build/index.html +++ b/newt/command_list/newt_build/index.html @@ -548,7 +548,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_clean/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_clean/index.html b/newt/command_list/newt_clean/index.html index cad3b05..d5ef699 100644 --- a/newt/command_list/newt_clean/index.html +++ b/newt/command_list/newt_clean/index.html @@ -552,7 +552,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_create_image/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_create_image/index.html b/newt/command_list/newt_create_image/index.html index 6e6edae..f15f51a 100644 --- a/newt/command_list/newt_create_image/index.html +++ b/newt/command_list/newt_create_image/index.html @@ -552,7 +552,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_debug/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_debug/index.html b/newt/command_list/newt_debug/index.html index 6bbb7c6..3948914 100644 --- a/newt/command_list/newt_debug/index.html +++ b/newt/command_list/newt_debug/index.html @@ -552,7 +552,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_help/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_help/index.html b/newt/command_list/newt_help/index.html index 6b2f59c..33170d9 100644 --- a/newt/command_list/newt_help/index.html +++ b/newt/command_list/newt_help/index.html @@ -565,7 +565,7 @@ https://mynewt.apache.org/. <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_info/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_info/index.html b/newt/command_list/newt_info/index.html index 8c27565..9b4a73e 100644 --- a/newt/command_list/newt_info/index.html +++ b/newt/command_list/newt_info/index.html @@ -530,7 +530,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_install/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_install/index.html b/newt/command_list/newt_install/index.html index 450dede..974728c 100644 --- a/newt/command_list/newt_install/index.html +++ b/newt/command_list/newt_install/index.html @@ -536,7 +536,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_load/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_load/index.html b/newt/command_list/newt_load/index.html index 072ef4c..ef1c4d4 100644 --- a/newt/command_list/newt_load/index.html +++ b/newt/command_list/newt_load/index.html @@ -535,7 +535,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_new/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_new/index.html b/newt/command_list/newt_new/index.html index 7e677be..5dbccc3 100644 --- a/newt/command_list/newt_new/index.html +++ b/newt/command_list/newt_new/index.html @@ -538,7 +538,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_run/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_run/index.html b/newt/command_list/newt_run/index.html index 5d6ca2f..4e48443 100644 --- a/newt/command_list/newt_run/index.html +++ b/newt/command_list/newt_run/index.html @@ -558,7 +558,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_size/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_size/index.html b/newt/command_list/newt_size/index.html index 675e9c2..9a202e0 100644 --- a/newt/command_list/newt_size/index.html +++ b/newt/command_list/newt_size/index.html @@ -559,7 +559,7 @@ objsize <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_target/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_target/index.html b/newt/command_list/newt_target/index.html index f61cf86..26424f4 100644 --- a/newt/command_list/newt_target/index.html +++ b/newt/command_list/newt_target/index.html @@ -610,7 +610,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_test/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_test/index.html b/newt/command_list/newt_test/index.html index a7860b9..fdc5552 100644 --- a/newt/command_list/newt_test/index.html +++ b/newt/command_list/newt_test/index.html @@ -562,7 +562,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_upgrade/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_upgrade/index.html b/newt/command_list/newt_upgrade/index.html index e43225c..ade58b9 100644 --- a/newt/command_list/newt_upgrade/index.html +++ b/newt/command_list/newt_upgrade/index.html @@ -534,7 +534,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/command_list/newt_version/index.html ---------------------------------------------------------------------- diff --git a/newt/command_list/newt_version/index.html b/newt/command_list/newt_version/index.html index 8ee5c31..9c028b8 100644 --- a/newt/command_list/newt_version/index.html +++ b/newt/command_list/newt_version/index.html @@ -537,7 +537,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/install/newt_linux/index.html ---------------------------------------------------------------------- diff --git a/newt/install/newt_linux/index.html b/newt/install/newt_linux/index.html index 7861b52..5252996 100644 --- a/newt/install/newt_linux/index.html +++ b/newt/install/newt_linux/index.html @@ -544,7 +544,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/install/newt_mac/index.html ---------------------------------------------------------------------- diff --git a/newt/install/newt_mac/index.html b/newt/install/newt_mac/index.html index 0ed6b0f..ef74147 100644 --- a/newt/install/newt_mac/index.html +++ b/newt/install/newt_mac/index.html @@ -547,7 +547,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/newt_intro/index.html ---------------------------------------------------------------------- diff --git a/newt/newt_intro/index.html b/newt/newt_intro/index.html index f390529..174031e 100644 --- a/newt/newt_intro/index.html +++ b/newt/newt_intro/index.html @@ -535,7 +535,7 @@ pkg.deps: <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/newt_operation/index.html ---------------------------------------------------------------------- diff --git a/newt/newt_operation/index.html b/newt/newt_operation/index.html index d35fff0..93ccd72 100644 --- a/newt/newt_operation/index.html +++ b/newt/newt_operation/index.html @@ -620,7 +620,7 @@ for that board. That way common tools can be used across various development bo <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newt/newt_ops/index.html ---------------------------------------------------------------------- diff --git a/newt/newt_ops/index.html b/newt/newt_ops/index.html index bf0ae96..1680dd4 100644 --- a/newt/newt_ops/index.html +++ b/newt/newt_ops/index.html @@ -535,7 +535,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newtmgr/installing/index.html ---------------------------------------------------------------------- diff --git a/newtmgr/installing/index.html b/newtmgr/installing/index.html index 321e348..f802877 100644 --- a/newtmgr/installing/index.html +++ b/newtmgr/installing/index.html @@ -420,7 +420,7 @@ from github.com and then run <code>go install</code> again. </p> <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/newtmgr/overview/index.html ---------------------------------------------------------------------- diff --git a/newtmgr/overview/index.html b/newtmgr/overview/index.html index 8b0d4f3..b39ade8 100644 --- a/newtmgr/overview/index.html +++ b/newtmgr/overview/index.html @@ -696,7 +696,7 @@ Return Code = 0 <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/callout/callout/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/callout/callout/index.html b/os/core_os/callout/callout/index.html index af66001..020d81d 100644 --- a/os/core_os/callout/callout/index.html +++ b/os/core_os/callout/callout/index.html @@ -802,7 +802,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/callout/os_callout_func_init/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/callout/os_callout_func_init/index.html b/os/core_os/callout/os_callout_func_init/index.html index cfb9609..becc1e2 100644 --- a/os/core_os/callout/os_callout_func_init/index.html +++ b/os/core_os/callout/os_callout_func_init/index.html @@ -789,7 +789,7 @@ void native_cputimer_cb(void *arg); <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/callout/os_callout_init/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/callout/os_callout_init/index.html b/os/core_os/callout/os_callout_init/index.html index 687172b..72b22d0 100644 --- a/os/core_os/callout/os_callout_init/index.html +++ b/os/core_os/callout/os_callout_init/index.html @@ -783,7 +783,7 @@ struct os_callout my_callouts[8]; <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/callout/os_callout_queued/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/callout/os_callout_queued/index.html b/os/core_os/callout/os_callout_queued/index.html index 6c11270..ef99ee3 100644 --- a/os/core_os/callout/os_callout_queued/index.html +++ b/os/core_os/callout/os_callout_queued/index.html @@ -764,7 +764,7 @@ non-zero: timer is armed</p> <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/callout/os_callout_reset/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/callout/os_callout_reset/index.html b/os/core_os/callout/os_callout_reset/index.html index e82d3cb..cee83dd 100644 --- a/os/core_os/callout/os_callout_reset/index.html +++ b/os/core_os/callout/os_callout_reset/index.html @@ -773,7 +773,7 @@ os_callout_reset(&g_bletest_timer.cf_c, OS_TICKS_PER_SEC / 20); <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/callout/os_callout_stop/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/callout/os_callout_stop/index.html b/os/core_os/callout/os_callout_stop/index.html index 9a1a5d9..f84107d 100644 --- a/os/core_os/callout/os_callout_stop/index.html +++ b/os/core_os/callout/os_callout_stop/index.html @@ -768,7 +768,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/context_switch/context_switch/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/context_switch/context_switch/index.html b/os/core_os/context_switch/context_switch/index.html index 712bd82..6425cf2 100644 --- a/os/core_os/context_switch/context_switch/index.html +++ b/os/core_os/context_switch/context_switch/index.html @@ -761,7 +761,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/context_switch/os_arch_ctx_sw/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/context_switch/os_arch_ctx_sw/index.html b/os/core_os/context_switch/os_arch_ctx_sw/index.html index d43d753..ff2f827 100644 --- a/os/core_os/context_switch/os_arch_ctx_sw/index.html +++ b/os/core_os/context_switch/os_arch_ctx_sw/index.html @@ -830,7 +830,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/context_switch/os_sched/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/context_switch/os_sched/index.html b/os/core_os/context_switch/os_sched/index.html index 2c8e380..634b8a2 100644 --- a/os/core_os/context_switch/os_sched/index.html +++ b/os/core_os/context_switch/os_sched/index.html @@ -831,7 +831,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html b/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html index 60d04d9..acad98a 100644 --- a/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html +++ b/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html @@ -811,7 +811,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12"> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8efbd1d9/os/core_os/context_switch/os_sched_get_current_task/index.html ---------------------------------------------------------------------- diff --git a/os/core_os/context_switch/os_sched_get_current_task/index.html b/os/core_os/context_switch/os_sched_get_current_task/index.html index eb7bce3..af5753a 100644 --- a/os/core_os/context_switch/os_sched_get_current_task/index.html +++ b/os/core_os/context_switch/os_sched_get_current_task/index.html @@ -814,7 +814,7 @@ <footer class="row"> <div class="col-xs-12"> - <p class="copyright">Copyright © 2015 The Apache Software Foundation, Licensed under the Apache License, Version 2.0 Apache and the Apache feather logo are trademarks of The Apache Software Foundation.<br>The Apache Software Foundation Apache Incubator</p> + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> </div> <div class="col-xs-12">
