Skip to content

Commit 05e5292

Browse files
committed
Remove bletiny from documentation
Use btshell as an example instead.
1 parent 7997d85 commit 05e5292

File tree

6 files changed

+16
-15
lines changed

6 files changed

+16
-15
lines changed

docs/command_list/newt_create_image.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ Usage Explanation
4242
For the following target definition:
4343

4444
| targets/myble2
45-
| app=\@apache-mynewt-core/apps/bletiny
45+
| app=\@apache-mynewt-core/apps/btshell
4646
| bsp=\@apache-mynewt-core/hw/bsp/nrf52dk
4747
| build\_profile=optimized
4848
| syscfg=STATS\_NAMES=1
4949
50-
the 'bin/targets/myble2/app/apps/bletiny/bletiny.img' and
51-
'bin/targets/myble2/app/apps/bletiny/bletiny.hex' files are created,
52-
and the manifest in 'bin/targets/myble2/app/apps/bletiny/manifest.json'
50+
the 'bin/targets/myble2/app/apps/btshell/btshell.img' and
51+
'bin/targets/myble2/app/apps/btshell/btshell.hex' files are created,
52+
and the manifest in 'bin/targets/myble2/app/apps/btshell/manifest.json'
5353
is updated with the image information.
5454

5555
``newt create-image myble2 1.0.1.0 private.pem`` Creates an image for target ``myble2`` and assigns it the version

docs/command_list/newt_debug.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Examples
4242
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
4343
| Usage | Explanation |
4444
+==========================+============================================================================================================================================================================================================================================================================================+
45-
| ``newt debug myble2`` | Opens a J-Link connection and starts a GNU gdb session to debug bin/targets/myble2/app/apps/bletiny/bletiny.elf when the target is as follows: targets/myble2 app=\@apache-mynewt-core/apps/bletiny bsp=\@apache-mynewt-core/hw/bsp/nrf52dk build_profile=optimized syscfg=STATS_NAMES=1 |
45+
| ``newt debug myble2`` | Opens a J-Link connection and starts a GNU gdb session to debug bin/targets/myble2/app/apps/btshell/btshell.elf when the target is as follows: targets/myble2 app=\@apache-mynewt-core/apps/btshell bsp=\@apache-mynewt-core/hw/bsp/nrf52dk build_profile=optimized syscfg=STATS_NAMES=1 |
4646
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
47-
| ``newt debug myble2 -n`` | Opens a J-Link connection bin/targets/myble2/app/apps/bletiny/bletiny.elf but do not start GDB on the command line. |
47+
| ``newt debug myble2 -n`` | Opens a J-Link connection bin/targets/myble2/app/apps/btshell/btshell.elf but do not start GDB on the command line. |
4848
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

docs/command_list/newt_pkg.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Examples
5353
+---------------+--------------------------------------------------+-----------------------------------------------------------------------------------------+
5454
| Sub-command | Usage | Explanation |
5555
+===============+==================================================+=========================================================================================+
56-
| copy | ``newt pkg copy apps/bletiny apps/new_bletiny`` | Copies the ``apps/bletiny`` package to the ``apps/new_bletiny``. |
56+
| copy | ``newt pkg copy apps/btshell apps/new_btshell`` | Copies the ``apps/btshell`` package to the ``apps/new_btshell``. |
5757
+---------------+--------------------------------------------------+-----------------------------------------------------------------------------------------+
5858
| move | ``newt pkg move apps/slinky apps/new_slinky`` | Moves the ``apps/slinky`` package to the ``apps/new_slinky`` package. |
5959
+---------------+--------------------------------------------------+-----------------------------------------------------------------------------------------+

docs/command_list/newt_resign_image.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Examples
4040
+------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------+
4141
| Usage | Explanation |
4242
+====================================================================================+===============================================================================================+
43-
| ``newt resign-image bin/targets/myble/app/apps/bletiny/bletiny.img private.pem`` | Signs the ``bin/targets/myble/app/apps/bletiny/bletiny.img`` file with the private.pem key. |
43+
| ``newt resign-image bin/targets/myble/app/apps/btshell/btshell.img private.pem`` | Signs the ``bin/targets/myble/app/apps/btshell/btshell.img`` file with the private.pem key. |
4444
+------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------+
45-
| ``newt resign-image bin/targets/myble/app/apps/bletiny/bletiny.img`` | Strips the current signature from ``bin/targets/myble/app/apps/bletiny/bletiny.img`` file. |
45+
| ``newt resign-image bin/targets/myble/app/apps/btshell/btshell.img`` | Strips the current signature from ``bin/targets/myble/app/apps/btshell/btshell.img`` file. |
4646
+------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------+

docs/command_list/newt_target.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,18 +157,18 @@ Examples
157157
+---------------+---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
158158
| config init | ``newt target config init my_blinky`` | Creates and populates the ``my_blinky`` target's ``syscfg.yml`` file with the system configuration setting values from all the packages that the ``my_blinky`` target includes. |
159159
+---------------+---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
160-
| copy | ``newt target copy rb_blinky rb_bletiny`` | Creates the ``rb_bletiny`` target by cloning the ``rb_blinky`` target. |
160+
| copy | ``newt target copy rb_blinky rb_btshell`` | Creates the ``rb_btshell`` target by cloning the ``rb_blinky`` target. |
161161
+---------------+---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
162162
| create | ``newt target create my_new_target`` | Creates the ``my_newt_target`` target. It creates the ``targets/my_new_target`` directory and creates the skeleton ``pkg.yml`` and ``target.yml`` files in the directory. |
163163
+---------------+---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
164-
| delete | ``newt target delete rb_bletiny`` | Deletes the ``rb_bletiny`` target. It deletes the ``targets/rb_bletiny`` directory. |
164+
| delete | ``newt target delete rb_btshell`` | Deletes the ``rb_btshell`` target. It deletes the ``targets/rb_btshell`` directory. |
165165
+---------------+---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
166166
| dep | ``newt target dep myble`` | Displays the dependency tree of all the package dependencies for the ``myble`` target. It lists each package followed by a list of packages it depends on. |
167167
+---------------+---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
168168
| revdep | ``newt target revdep myble`` | Displays the reverse dependency tree of all the package dependencies for the ``myble`` target. It lists each package followed by a list of packages that depend on it. |
169169
+---------------+---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
170-
| set | ``newt target set myble`` | Use ``bletiny`` as the application to build for the ``myble`` target. |
171-
| | ``app=@apache-mynewt-core/apps/bletiny`` | |
170+
| set | ``newt target set myble`` | Use ``btshell`` as the application to build for the ``myble`` target. |
171+
| | ``app=@apache-mynewt-core/apps/btshell`` | |
172172
+---------------+---------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
173173
| set | ``newt target set myble`` | Set ``pkg.cflags`` variable with ``-DNDEBUG -Werror`` in the ``myble`` target's ``pkg.yml`` file.. |
174174
| | ``cflags="-DNDEBUG -Werror"`` | |

docs/newt_operation.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ apps, the boot app, slinky app for using newt manager protocol, and more in that
4747
.. code-block:: console
4848
4949
$ ls repos/apache-mynewt-core/apps
50-
blecent bleprph blesplit bletiny boot ffs2native slinky spitest test timtest
51-
blehci bleprph_oic bletest bleuart fat2native ocf_sample slinky_oic splitty testbench
50+
blecent blehr blemesh_shell blesplit boot btshell lora_app_shell ocf_sample slinky splitty trng_test
51+
blecsc blemesh bleprph bletest bsncent ffs2native loraping pwm_test slinky_oic testbench
52+
blehci blemesh_light bleprph_oic bleuart bsnprph iptest lorashell sensors_test spitest timtest
5253
5354
Along with the ``targets`` directory, ``apps`` represents the top-level of the build tree for the particular project, and
5455
define the dependencies for the rest of the system. Mynewt users and developers can add their own apps to the project's ``apps`` directory.

0 commit comments

Comments
 (0)