|
Paparazzi UAS
v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
|
uint8_t tx_irq_status
The last send interrupt status.
@ CYRF6936_IDLE
The chip is idle and can be used.
uint8_t rx_count
The length of the received packet.
uint8_t buffer_length
The length of the buffer used for MULTIWRITE.
bool cyrf6936_write_chan_sop_data_crc(struct Cyrf6936 *cyrf, const uint8_t chan, const uint8_t sop_code[], const uint8_t data_code[], const uint16_t crc_seed)
Set the channel, SOP code, DATA code and the CRC seed.
SPI transaction structure.
uint8_t buffer[CYRF6936_MAX_BUFFER]
The buffer used to write/read multiple registers.
uint8_t rx_status
The last receive status.
uint8_t rx_packet[16]
The last received packet.
SPI peripheral structure.
struct spi_periph * spi_p
The SPI peripheral for the connection.
bool cyrf6936_send(struct Cyrf6936 *cyrf, const uint8_t data[], const uint8_t length)
Send a packet with a certain length.
uint8_t buffer_idx
The index of the buffer used for MULTIWRITE and used as sub-status for other statuses.
@ CYRF6936_UNINIT
The chip isn't initialized.
uint8_t output_buf[17]
The output buffer for the SPI transaction.
bool has_irq
When the CYRF6936 is done reading the irq.
void cyrf6936_init(struct Cyrf6936 *cyrf, struct spi_periph *spi_p, const uint8_t slave_idx, const uint32_t rst_port, const uint16_t rst_pin)
Initializing the cyrf chip.
@ CYRF6936_CHAN_SOP_DATA_CRC
The chip is setting the channel, SOP code, DATA code and the CRC seed.
bool cyrf6936_write(struct Cyrf6936 *cyrf, const uint8_t addr, const uint8_t data)
Write to one register.
#define CYRF6936_MAX_BUFFER
The max buffer size in the cyrf6936 structure.
bool cyrf6936_multi_write(struct Cyrf6936 *cyrf, const uint8_t data[][2], const uint8_t length)
Write to multiple registers one byte.
uint8_t mfg_id[6]
The manufacturer id of the CYRF6936 chip.
uint8_t slave_idx
slave id: SPI_SLAVE0 to SPI_SLAVE4
void cyrf6936_event(struct Cyrf6936 *cyrf)
The on event call for the CYRF6936 chip.
@ CYRF6936_DATA_CODE
The chip is writing a data code.
@ CYRF6936_RX_IRQ_STATUS_PACKET
The chip is getting the receive irq status, receive status and the receive packet.
bool cyrf6936_read_rx_irq_status_packet(struct Cyrf6936 *cyrf)
Read the RX IRQ status register, the rx status register and the rx packet.
@ CYRF6936_SEND
The chip is busy sending a packet.
uint8_t rx_irq_status
The last receive interrupt status.
struct spi_transaction spi_t
The SPI transaction used for the writing and reading of registers.
enum Cyrf6936Status status
The status of the CYRF6936 chip.
@ CYRF6936_MULTIWRITE
The chip is writing multiple registers.
@ CYRF6936_GET_MFG_ID
The chip is busy with getting the manufacturer ID.
uint8_t input_buf[17]
The input buffer for the SPI transaction.