You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ This repository contains the python modules needed to work with Mbed OS. **The A
4
4
5
5
To contribute changes to these packages, please commit them to this repository. The mapping of these packages to the `mbed-os-tools` modules is as follows:
6
6
7
-
- mbed-ls - `mbed_os_tools/detect` for the implementation, `test/detect` for the tests
8
-
- mbed-greentea - `mbed_os_tools/test` for the implementation, `test/test` for the tests
9
-
- mbed-host-tests - `mbed_os_tools/test` for the implementation, `test/test` for the tests
7
+
- mbed-ls - `src/mbed_os_tools/detect` for the implementation, `test/detect` for the tests
8
+
- mbed-greentea - `src/mbed_os_tools/test` for the implementation, `test/test` for the tests
9
+
- mbed-host-tests - `src/mbed_os_tools/test` for the implementation, `test/test` for the tests
Copy file name to clipboardExpand all lines: legacy/mbed-ls/README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Development moved
2
2
3
-
The development of Mbed LS has been moved into the [mbed-os-tools](../../mbed_os_tools) package. You can continue to use this module for legacy reasons, however all further development should be continued in the new package.
3
+
The development of Mbed LS has been moved into the [mbed-os-tools](../../src/mbed_os_tools) package. You can continue to use this module for legacy reasons, however all further development should be continued in the new package.
4
4
5
5
-------------
6
6
@@ -404,7 +404,7 @@ Mbed LS currently supports the following types of debuggers:
404
404
405
405
### Adding support for DAPLink-compatible platforms (DAPLink, ST-LINK, and CMSIS-DAP)
406
406
407
-
Add an entry to the `daplink` section of the [`DEFAULT_PLATFORM_DB`](../../mbed_os_tools/detect/platform_database.py).
407
+
Add an entry to the `daplink` section of the [`DEFAULT_PLATFORM_DB`](../../src/mbed_os_tools/detect/platform_database.py).
408
408
409
409
If your platform's name is `NEW_PLATFORM` and it has platform ID of `9999`, the new entry should be:
410
410
@@ -422,7 +422,7 @@ Please order the entries by the platform ID when adding new platforms.
422
422
423
423
### Adding support for J-Link platforms
424
424
425
-
J-Link detection works differently due to the information present on the platform's filesystem. All new entries should be added to the `jlink` section of the [`DEFAULT_PLATFORM_DB`](../../mbed_os_tools/detect/platform_database.py).
425
+
J-Link detection works differently due to the information present on the platform's filesystem. All new entries should be added to the `jlink` section of the [`DEFAULT_PLATFORM_DB`](../../src/mbed_os_tools/detect/platform_database.py).
426
426
427
427
The following is an example `jlink` platform entry:
428
428
@@ -451,4 +451,4 @@ If your J-Link platform does not follow this convention, please raise an issue w
451
451
452
452
The type of debugger present on the platform affects how it is detected. The USB Vendor ID is used to detect which type of debugger is present on the platform.
453
453
454
-
If a new type of debugger is being introduced to Mbed LS with the platform, you will need to add the Vendor ID to the [identification map](../../mbed_os_tools/detect/lstools_base.py). You will also need to assign the correct "update from the filesystem" logic [here](../../mbed_os_tools/detect/lstools_base.py). If the debugger is compatible with the files presented by DAPLink, you may reuse that implementation when updating the device information from the filesystem. If it is not, you may need to write your own update logic. If you need guidance on this, please ask for it when you submit an issue or a pull request.
454
+
If a new type of debugger is being introduced to Mbed LS with the platform, you will need to add the Vendor ID to the [identification map](../../src/mbed_os_tools/detect/lstools_base.py). You will also need to assign the correct "update from the filesystem" logic [here](../../src/mbed_os_tools/detect/lstools_base.py). If the debugger is compatible with the files presented by DAPLink, you may reuse that implementation when updating the device information from the filesystem. If it is not, you may need to write your own update logic. If you need guidance on this, please ask for it when you submit an issue or a pull request.
0 commit comments