1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18 from aabadie/usb-kw41z

usb-kw41z: improve doc and sort module dependencies
This commit is contained in:
Joakim Nohlgård 2018-12-03 09:01:36 +01:00 committed by GitHub
commit 2c7ac21a49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 4 deletions

View File

@ -1,6 +1,6 @@
ifneq (,$(filter saul_default,$(USEMODULE)))
USEMODULE += saul_gpio
USEMODULE += saul_adc
USEMODULE += saul_gpio
endif
include $(RIOTCPU)/kinetis/Makefile.dep

View File

@ -1,5 +1,40 @@
/**
* @defgroup boards_usb-kw41z NXP USB-KW41Z Board
* @ingroup boards
* @brief Support for the USB-KW41Z
@defgroup boards_usb-kw41z NXP USB-KW41Z Board
@ingroup boards
@brief Support for the USB-KW41Z
### Overview
The [NXP USB-KW41Z][board-web-page] board a development platform with a
convenient USB dongle form factor.
The USB-KW41Z provides a radio device with Bluetooth Low Energy and/or IEEE
802.15.4.
<img src="https://www.nxp.com/assets/images/en/block-diagrams/USB-KW41Z-GHOSTED.jpg"
alt="USB-KW41Z" style="height:800px;"/>
[board-web-page]: https://www.nxp.com/products/wireless/bluetooth-low-energy-ble/bluetooth-low-energy-ieee-802.15.4-packet-sniffer-usb-dongle:USB-KW41Z
### Flash the board
To flash the board using OpenOCD, it needs to be changed from the factory
programmed sniffer application to an OpenSDA application used for flashing and
debugging.
1. Follow the [Quick Start Guide at NXP.com][[quick-start-guide]]:
- click on "2. Get Software" -> "Choose a Development Path: USB-KW41Z Development Platform"
- scroll down to "2.3 Load Segger JLink OpenSDA App"
- follow the instructions
2. Use `BOARD=usb-kw41z` with the `make` command.<br/>
Example with `hello-world` application:
```
make BOARD=usb-kw41z -C examples/hello-world flash term
```
[quick-start-guide]: https://www.nxp.com/products/wireless/bluetooth-low-energy-ble/bluetooth-low-energy-ieee-802.15.4-packet-sniffer-usb-dongle:USB-KW41Z?&tab=In-Depth_Tab&tid=van/usb-kw41z/startnow
*/