Results 36 comments of Jaeden Amero

Hi @maclobdell We've updated the "How to use CMake" docs at https://github.com/ARMmbed/mbed-os-5-docs/blob/development/docs/tools/mbed_cli_2/use.md#build-the-project-with-cmake-advanced

Removed pdoc3 in https://github.com/ARMmbed/mbed-tools/pull/325 We haven't moved to pdoc yet, so leaving this open.

Why do you want to "list unmounted devices"? What other ways than using `mbed-ls` are there to list unmounted devices?

I feel I'm still missing some context. 1. Why do you want to see the devices without mounting them? 2. To figure out what the device is, its serial number,...

If the device can't be mounted, how do you expect to use it? I'm still missing some context about your use case. How that target_id is determined without being able...

`mbed-tools detect` aims to be a replacement for the deprecated `mbedls` tool. If there is a reason why anyone would be prevented from switching to `mbed-tools detect`, any feature critical...

Hi Keerthi, It shouldn't be necessary to modify `mbed-os` itself to add your driver or custom target. Could you add the driver to your application's folder instead? You'll need to...

@kvkc97 You don't need a .lib for LR1110, assuming it's just a folder in your application's folder. The CMakeLists.txt should roughly look similar to the custom target one, although with...

@kvkc97 In your `lr1110/CMakeLists.txt`, could you try moving `add_library()` up to before `target_include_directories()`? lr1110/CMakeLists.txt ``` # Copyright (c) 2020 ARM Limited. All rights reserved. # SPDX-License-Identifier: Apache-2.0 #add_subdirectory(src) add_library(lr1110 PUBLIC...

Ah, sorry. Drop the "PUBLIC" from the `add_library()` invokation.