2020-01-15 17:18:54 +01:00
|
|
|
/**
|
2020-02-22 18:43:11 +01:00
|
|
|
@defgroup boards_cc1312_launchpad TI CC1312 LaunchPad
|
|
|
|
@ingroup boards
|
|
|
|
@brief Texas Instruments SimpleLink(TM) CC1312 Wireless MCU LaunchPad(TM) Kit
|
|
|
|
|
2022-10-26 21:05:27 +02:00
|
|
|
## Overview
|
2020-02-22 18:43:11 +01:00
|
|
|
|
|
|
|
The [LAUNCHXL-CC1312R1](http://www.ti.com/tool/LAUNCHXL-CC1312R1) is a Texas
|
|
|
|
Instrument's development kit for the CC1312R1 SoC MCU which combines a
|
|
|
|
Cortex-M4F microcontroller alongside a dedicated Cortex-M0 to control radio.
|
|
|
|
|
2022-10-26 21:05:27 +02:00
|
|
|
## Hardware
|
2020-02-22 18:43:11 +01:00
|
|
|
|
|
|
|
![LAUNCHXL-CC1312R1](http://www.ti.com/diagrams/launchxl-cc1312r1_cc1312r1-top-prof1.jpg)
|
|
|
|
|
2020-06-04 09:54:53 +02:00
|
|
|
| MCU | CC1312R1 |
|
|
|
|
|:----------------- |:--------------------- |
|
|
|
|
| Family | ARM Cortex-M4F |
|
|
|
|
| Vendor | Texas Instruments |
|
|
|
|
| RAM | 80KiB |
|
|
|
|
| Flash | 352KiB |
|
|
|
|
| Frequency | 48MHz |
|
|
|
|
| FPU | yes |
|
|
|
|
| Timers | 4 |
|
|
|
|
| ADCs | 1x 12-bit (channels) |
|
|
|
|
| UARTs | 2 |
|
|
|
|
| SPIs | 2 |
|
|
|
|
| I2Cs | 1 |
|
|
|
|
| Vcc | 1.8V - 3.8V |
|
|
|
|
| Datasheet | [Datasheet](http://www.ti.com/lit/ds/symlink/cc1312r.pdf) (pdf file) |
|
|
|
|
| Reference Manual | [Reference Manual](http://www.ti.com/lit/ug/swcu185d/swcu185d.pdf) |
|
2020-02-22 18:43:11 +01:00
|
|
|
|
2022-10-26 21:05:27 +02:00
|
|
|
## Board pinout
|
2020-02-22 18:43:11 +01:00
|
|
|
|
2021-02-17 11:01:15 +01:00
|
|
|
The [LAUNXHL-CC1312R Quick Start Guide](http://www.ti.com/lit/ml/swru535c/swru535c.pdf)
|
2020-02-22 18:43:11 +01:00
|
|
|
provides the default pinout for the board.
|
|
|
|
|
2022-10-26 21:05:27 +02:00
|
|
|
## Flashing the Device
|
2020-02-22 18:43:11 +01:00
|
|
|
|
2021-02-17 11:01:15 +01:00
|
|
|
Flashing RIOT is quite straight forward. The board comes with an XDS110 on-board
|
|
|
|
debug probe that provides programming, flashing and debugging capabilities
|
|
|
|
through the USB Micro-USB connector. Once either TI Uniflash or OpenOCD are
|
|
|
|
installed just connect the board using the Micro-USB port to your computer and
|
|
|
|
type:
|
2020-02-22 18:43:11 +01:00
|
|
|
|
|
|
|
```
|
2021-02-17 11:01:15 +01:00
|
|
|
make flash BOARD=cc1312-launchpad
|
2020-02-22 18:43:11 +01:00
|
|
|
```
|
|
|
|
|
2021-02-17 11:01:15 +01:00
|
|
|
To use OpenOCD instead of uniflash we need to set the `PROGRAMMER` environment
|
|
|
|
variable, this is to enable OpenOCD instead of Uniflash.
|
2020-03-02 22:31:54 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
export PROGRAMMER=openocd
|
|
|
|
```
|
|
|
|
|
2021-02-17 11:01:15 +01:00
|
|
|
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
|
|
|
|
RIOT and installation of flashing tools for CC1312 boards,
|
|
|
|
see \ref cc26xx_cc13xx_riot.
|
2020-03-02 22:31:54 +01:00
|
|
|
|
2020-02-22 18:43:11 +01:00
|
|
|
*/
|