Skip to content

Commit 9aa48b6

Browse files
Fix link syntax (#479)
1 parent b7a8a65 commit 9aa48b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2024-01-10-practical_zephyr_basics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
303303

304304
- `cmake_minimum_required` just indicates the allowed CMake versions. Zephyr has its requirements and maintains its minimal required CMake version in `zephyr/cmake/modules/zephyr_default.cmake`.
305305
- The `set` function writes the board we're building our application for to the variable `BOARD`. This step is optional and can be specified during the build step as a parameter. `nrf52840dk_nrf52840` is Zephyr's name for the [nRF52840 development kit](https://www.nordicsemi.com/Products/Development-hardware/nrf52840-dk).
306-
- Then, we load Zephyr using the `find_package` function. In our [setup script][#creating-a-setup-script], we've exported the `ZEPHYR_BASE` environment variable, which is now passed as a hint to the `find_package` function to locate the correct Zephyr installation.
306+
- Then, we load Zephyr using the `find_package` function. In our [setup script](#creating-a-setup-script), we've exported the `ZEPHYR_BASE` environment variable, which is now passed as a hint to the `find_package` function to locate the correct Zephyr installation.
307307

308308
> **Note:** There are several ways to use the Zephyr CMake package, each of which is described in detail in [Zephyr's CMake package documentation](https://docs.zephyrproject.org/latest/build/zephyr_cmake_package.html). You can also have a look at the [Zephyr CMake package source code](https://docs.zephyrproject.org/latest/build/zephyr_cmake_package.html#zephyr-cmake-package-source-code) for details.
309309
@@ -693,4 +693,4 @@ Finally, have a look at the files in the [accompanying GitHub repository](https:
693693
694694
[zephyr-gh-docker]: https://github.com/zephyrproject-rtos/docker-image
695695
696-
-->
696+
-->

0 commit comments

Comments
 (0)