Loading...
Searching...
No Matches
cc110x_communication.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2018 Otto-von-Guericke-Universität Magdeburg
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
17
18#include "periph/gpio.h"
19#include "periph/spi.h"
20#include "cc110x.h"
21#include "cc110x_constants.h"
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
34static inline void cc110x_acquire(cc110x_t *dev)
35{
37}
38
42static inline void cc110x_release(cc110x_t *dev)
43{
45}
46
70uint8_t cc110x_read(cc110x_t *dev, uint8_t addr, uint8_t *dest);
71
90uint8_t cc110x_read_reliable(cc110x_t *dev, uint8_t addr, uint8_t *dest);
91
107uint8_t cc110x_write(cc110x_t *dev, uint8_t addr, uint8_t data);
108
127uint8_t cc110x_burst_read(cc110x_t *dev, uint8_t addr, void *dest, size_t len);
128
147uint8_t cc110x_burst_write(cc110x_t *dev, uint8_t addr,
148 const void *src, size_t len);
149
163uint8_t cc110x_cmd(cc110x_t *dev, uint8_t cmd);
164
173
202
203#ifdef __cplusplus
204}
205#endif
206
Interface definition for the CC1100/CC1101 driver.
int cc110x_power_on_and_acquire(cc110x_t *dev)
Wakes up the transceiver from "Sleep" or "Crystal oscillator off" state and waits until the crystal h...
uint8_t cc110x_burst_read(cc110x_t *dev, uint8_t addr, void *dest, size_t len)
Burst-read a bunch of configuration registers from the transceiver.
uint8_t cc110x_status(cc110x_t *dev)
Get the transceivers status byte in a reliable way.
uint8_t cc110x_burst_write(cc110x_t *dev, uint8_t addr, const void *src, size_t len)
Burst-write to a bunch of configuration registers on the transceiver.
static void cc110x_acquire(cc110x_t *dev)
Acquire the SPI interface of the transceiver.
uint8_t cc110x_read(cc110x_t *dev, uint8_t addr, uint8_t *dest)
Read a single configuration/status register from the transceiver.
uint8_t cc110x_read_reliable(cc110x_t *dev, uint8_t addr, uint8_t *dest)
Read a single status register from the transceiver reliable.
static void cc110x_release(cc110x_t *dev)
Release the SPI interface of the transceiver.
uint8_t cc110x_cmd(cc110x_t *dev, uint8_t cmd)
Send a command to the transceiver.
uint8_t cc110x_write(cc110x_t *dev, uint8_t addr, uint8_t data)
Write to a single configuration register on the transceiver.
Constants for the CC1100/CC1101 driver.
Low-level GPIO peripheral driver interface definitions.
void spi_acquire(spi_t bus, spi_cs_t cs, spi_mode_t mode, spi_clk_t clk)
Start a new SPI transaction.
void spi_release(spi_t bus)
Finish an ongoing SPI transaction by releasing the given SPI bus.
@ SPI_MODE_0
CPOL=0, CPHA=0.
Definition periph_cpu.h:40
Low-level SPI peripheral driver interface definition.
spi_t spi
SPI bus connected to the device.
Definition cc110x.h:461
spi_clk_t spi_clk
SPI clock to use (max 6.5 MHz)
Definition cc110x.h:462
spi_cs_t cs
GPIO pin connected to chip select.
Definition cc110x.h:463
Device descriptor for CC1100/CC1101 transceivers.
Definition cc110x.h:511
cc110x_params_t params
Configuration of the driver.
Definition cc110x.h:520