mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 01:23:49 +01:00
boards/cc1350-lauchpad: fix conflict with PR #18808
This commit is contained in:
parent
f82f856c63
commit
ebcceb67b6
@ -3,22 +3,13 @@
|
|||||||
@ingroup boards
|
@ingroup boards
|
||||||
@brief Texas Instruments SimpleLink(TM) CC1350 Wireless MCU LaunchPad(TM) Kit
|
@brief Texas Instruments SimpleLink(TM) CC1350 Wireless MCU LaunchPad(TM) Kit
|
||||||
|
|
||||||
## <a name="cc1350_launchpad_toc"> Table of Contents </a> [[TOC]](#cc1350_launchpad_toc)
|
## Overview
|
||||||
|
|
||||||
1. [Overview](#cc1350_launchpad_overview)
|
|
||||||
2. [Hardware](#cc1350_launchpad_hardware)
|
|
||||||
3. [Board pinout](#cc1350_launchpad_pinout)
|
|
||||||
4. [Flashing the Device](#cc1350_launchpad_flashing)
|
|
||||||
5. [Accessing RIOT shell](#cc1350_launchpad_shell)
|
|
||||||
6. [More information](#cc1350_launchpad_moreinfo)
|
|
||||||
|
|
||||||
## <a name="cc1350_launchpad_overview"> Overview </a> [[TOC]](#cc1350_launchpad_toc)
|
|
||||||
|
|
||||||
The [LAUNCHXL-CC1350](https://www.ti.com/tool/LAUNCHXL-CC1350) is a Texas
|
The [LAUNCHXL-CC1350](https://www.ti.com/tool/LAUNCHXL-CC1350) is a Texas
|
||||||
Instrument's development kit for the CC1350 SoC MCU which combines a Cortex-M3
|
Instrument's development kit for the CC1350 SoC MCU which combines a Cortex-M3
|
||||||
microcontroller alonside a dedicated Cortex-M0 to control a dual-band radio.
|
microcontroller alonside a dedicated Cortex-M0 to control a dual-band radio.
|
||||||
|
|
||||||
## <a name="cc1350_launchpad_hardware"> Hardware </a> [[TOC]](#cc1350_launchpad_toc)
|
## Hardware
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
@ -39,12 +30,12 @@ microcontroller alonside a dedicated Cortex-M0 to control a dual-band radio.
|
|||||||
| Datasheet | [Datasheet](https://www.ti.com/lit/ds/swrs183b/swrs183b.pdf) |
|
| Datasheet | [Datasheet](https://www.ti.com/lit/ds/swrs183b/swrs183b.pdf) |
|
||||||
| Reference Manual | [Reference Manual](https://www.ti.com/lit/ug/swcu117i/swcu117i.pdf) |
|
| Reference Manual | [Reference Manual](https://www.ti.com/lit/ug/swcu117i/swcu117i.pdf) |
|
||||||
|
|
||||||
## <a name="cc1350_launchpad_pinout"> Board pinout </a> [[TOC]](#cc1350_launchpad_toc)
|
## Board pinout
|
||||||
|
|
||||||
The [CC1350 Quick Start Guide](https://www.ti.com/lit/ug/swru478b/swru478b.pdf)
|
The [CC1350 Quick Start Guide](https://www.ti.com/lit/ug/swru478b/swru478b.pdf)
|
||||||
provides the default pinout for the board.
|
provides the default pinout for the board.
|
||||||
|
|
||||||
## <a name="cc1350_launchpad_flashing"> Flashing the Device </a> [[TOC]](#cc1350_launchpad_toc)
|
## Flashing the Device
|
||||||
|
|
||||||
Flashing RIOT is quite straight forward. The board comes with an XDS110 on-board
|
Flashing RIOT is quite straight forward. The board comes with an XDS110 on-board
|
||||||
debug probe that provides programming, flashing and debugging capabilities
|
debug probe that provides programming, flashing and debugging capabilities
|
||||||
@ -65,7 +56,7 @@ export PROGRAMMER=openocd
|
|||||||
|
|
||||||
Now we can just do `make flash` and `make debug`, this all using OpenOCD.
|
Now we can just do `make flash` and `make debug`, this all using OpenOCD.
|
||||||
|
|
||||||
## <a name="cc1350_launchpad_shell"> Accessing RIOT shell </a> [[TOC]](#cc1350_launchpad_toc)
|
## Accessing RIOT shell
|
||||||
|
|
||||||
Default RIOT shell access utilize XDS110 debug probe integrated with launchpad
|
Default RIOT shell access utilize XDS110 debug probe integrated with launchpad
|
||||||
board. It provides virtual serials via USB interface - for connecting to RIOT
|
board. It provides virtual serials via USB interface - for connecting to RIOT
|
||||||
@ -74,14 +65,13 @@ shell, use the first one (with TI drivers for Windows named
|
|||||||
|
|
||||||
If a physical connection to UART is needed, disconnect jumpers RXD and TXD
|
If a physical connection to UART is needed, disconnect jumpers RXD and TXD
|
||||||
joining cc1350 microcontroller with XDS110 and connect UART to pin RXD/DIO2
|
joining cc1350 microcontroller with XDS110 and connect UART to pin RXD/DIO2
|
||||||
and TXD/DIO3.
|
|
||||||
|
|
||||||
The default baud rate is 115 200 - in both connection types.
|
The default baud rate is 115 200 - in both connection types.
|
||||||
|
|
||||||
@warning Launchpad cc1350 board is not 5V tolerant. Use voltage divider or logic
|
@warning Launchpad cc1350 board is not 5V tolerant. Use voltage divider or logic
|
||||||
level shifter when connecting to 5V UART.
|
level shifter when connecting to 5V UART.
|
||||||
|
|
||||||
## <a name="cc1350_launchpad_moreinfo"> More information </a> [[TOC]](#cc1350_launchpad_toc)
|
## More information
|
||||||
|
|
||||||
For detailed information about CC1350 MCUs as well as configuring, compiling
|
For detailed information about CC1350 MCUs as well as configuring, compiling
|
||||||
RIOT and installation of flashing tools for CC1350 boards,
|
RIOT and installation of flashing tools for CC1350 boards,
|
||||||
|
|||||||
@ -61,8 +61,8 @@ export PROGRAMMER=openocd
|
|||||||
|
|
||||||
Now we can just do `make flash` and `make debug`, this all using OpenOCD.
|
Now we can just do `make flash` and `make debug`, this all using OpenOCD.
|
||||||
|
|
||||||
For detailed information about CC1312 MCUs as well as configuring, compiling
|
For detailed information about CC1352P MCUs as well as configuring, compiling
|
||||||
RIOT and installation of flashing tools for CC1312 boards,
|
RIOT and installation of flashing tools for CC1352P boards,
|
||||||
see \ref cc26xx_cc13xx_riot.
|
see \ref cc26xx_cc13xx_riot.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -56,8 +56,8 @@ export PROGRAMMER=openocd
|
|||||||
|
|
||||||
Now we can just do `make flash` and `make debug`, this all using OpenOCD.
|
Now we can just do `make flash` and `make debug`, this all using OpenOCD.
|
||||||
|
|
||||||
For detailed information about CC1312 MCUs as well as configuring, compiling
|
For detailed information about CC2650 MCUs as well as configuring, compiling
|
||||||
RIOT and installation of flashing tools for CC1312 boards,
|
RIOT and installation of flashing tools for CC2650 boards,
|
||||||
see \ref cc26xx_cc13xx_riot.
|
see \ref cc26xx_cc13xx_riot.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user