mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 23:32:38 +00:00
This sample requires led0 in the board devicetree's /aliases. Improve the error message when that is not available. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no> |
||
---|---|---|
.. | ||
src | ||
CMakeLists.txt | ||
prj.conf | ||
README.rst | ||
sample.yaml |
.. _blinky-sample: Blinky sample ############# Overview ******** The Blinky example shows how to configure GPIO pins as outputs which can also be used to drive LEDs on the hardware usually delivered as "User LEDs" on many of the supported boards in Zephyr. .. _blinky-sample-requirements: Requirements ************ The demo assumes that an LED is connected to one of GPIO lines. The sample code is configured to work on boards that have defined the ``led0`` alias in their :ref:`board's devicetree description file <devicetree-in-out-files>`, :file:`<board>.dts`. Doing so will generate these variables: - ``DT_ALIAS_LED0_GPIOS_CONTROLLER`` - ``DT_ALIAS_LED0_GPIOS_PIN`` Building and Running ******************** This sample does not output anything to the console. It can be built and flashed to a board as follows: .. zephyr-app-commands:: :zephyr-app: samples/basic/blinky :board: reel_board :goals: build flash :compact: After flashing the image to the board, the user LED on the board should start to blink.