123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- a/*
- / _____) _ | |
- ( (____ _____ ____ _| |_ _____ ____| |__
- \____ \| ___ | (_ _) ___ |/ ___) _ \
- _____) ) ____| | | || |_| ____( (___| | | |
- (______/|_____)_|_|_| \__)_____)\____)_| |_|
- (C)2019 Semtech
- Description:
- Functions used to handle LoRa concentrator SX1250 radios.
- License: Revised BSD License, see LICENSE.TXT file include in the project
- */
- /* -------------------------------------------------------------------------- */
- /* --- DEPENDANCIES --------------------------------------------------------- */
- #include <stdint.h> /* C99 types */
- #include <stdio.h> /* printf fprintf */
- #include <string.h> /* memcmp */
- #include "loragw_aux.h"
- #include "loragw_mcu.h"
- #include "sx1250_usb.h"
- /* -------------------------------------------------------------------------- */
- /* --- PRIVATE MACROS ------------------------------------------------------- */
- #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
- #if DEBUG_RAD == 1
- #define DEBUG_MSG(str) fprintf(stdout, str)
- #define DEBUG_PRINTF(fmt, args...) fprintf(stdout,"%s:%d: "fmt, __FUNCTION__, __LINE__, args)
- #define CHECK_NULL(a) if(a==NULL){fprintf(stderr,"%s:%d: ERROR: NULL POINTER AS ARGUMENT\n", __FUNCTION__, __LINE__);return -1;}
- #else
- #define DEBUG_MSG(str)
- #define DEBUG_PRINTF(fmt, args...)
- #define CHECK_NULL(a) if(a==NULL){return -1;}
- #endif
- /* -------------------------------------------------------------------------- */
- /* --- PRIVATE CONSTANTS ---------------------------------------------------- */
- #define WAIT_BUSY_SX1250_MS 1
- /* -------------------------------------------------------------------------- */
- /* --- PUBLIC FUNCTIONS DEFINITION ------------------------------------------ */
- int sx1250_usb_w(void *com_target, uint8_t spi_mux_target, sx1250_op_code_t op_code, uint8_t *data, uint16_t size) {
- int usb_device;
- uint8_t command_size = size + 7; /* 5 bytes: REQ metadata, 2 bytes: RAW SPI frame */
- uint8_t in_out_buf[command_size];
- int a;
- int i;
- /* check input variables */
- CHECK_NULL(com_target);
- CHECK_NULL(data);
- usb_device = *(int *)com_target;
- /* wait BUSY */
- wait_ms(WAIT_BUSY_SX1250_MS);
- /* prepare command */
- /* Request metadata */
- in_out_buf[0] = 0; /* Req ID */
- in_out_buf[1] = MCU_SPI_REQ_TYPE_READ_WRITE; /* Req type */
- in_out_buf[2] = MCU_SPI_TARGET_SX1302; /* MCU -> SX1302 */
- in_out_buf[3] = (uint8_t)((size + 2) >> 8); /* payload size + spi_mux_target + op_code */
- in_out_buf[4] = (uint8_t)((size + 2) >> 0); /* payload size + spi_mux_target + op_code */
- /* RAW SPI frame */
- in_out_buf[5] = spi_mux_target; /* SX1302 -> RADIO_A or RADIO_B */
- in_out_buf[6] = (uint8_t)op_code;
- for (i = 0; i < size; i++) {
- in_out_buf[i + 7] = data[i];
- }
- a = mcu_spi_write(usb_device, in_out_buf, command_size);
- /* determine return code */
- if (a != 0) {
- DEBUG_MSG("ERROR: USB SX1250 WRITE FAILURE\n");
- return -1;
- } else {
- DEBUG_MSG("Note: USB SX1250 write success\n");
- return 0;
- }
- }
- /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
- int sx1250_usb_r(void *com_target, uint8_t spi_mux_target, sx1250_op_code_t op_code, uint8_t *data, uint16_t size) {
- int usb_device;
- uint8_t command_size = size + 7; /* 5 bytes: REQ metadata, 2 bytes: RAW SPI frame */
- uint8_t in_out_buf[command_size];
- int a;
- int i;
- /* check input variables */
- CHECK_NULL(com_target);
- CHECK_NULL(data);
- usb_device = *(int *)com_target;
- /* wait BUSY */
- wait_ms(WAIT_BUSY_SX1250_MS);
- /* prepare command */
- /* Request metadata */
- in_out_buf[0] = 0; /* Req ID */
- in_out_buf[1] = MCU_SPI_REQ_TYPE_READ_WRITE; /* Req type */
- in_out_buf[2] = MCU_SPI_TARGET_SX1302; /* MCU -> SX1302 */
- in_out_buf[3] = (uint8_t)((size + 2) >> 8); /* payload size + spi_mux_target + op_code */
- in_out_buf[4] = (uint8_t)((size + 2) >> 0); /* payload size + spi_mux_target + op_code */
- /* RAW SPI frame */
- in_out_buf[5] = spi_mux_target; /* SX1302 -> RADIO_A or RADIO_B */
- in_out_buf[6] = (uint8_t)op_code;
- for (i = 0; i < size; i++) {
- in_out_buf[i + 7] = data[i];
- }
- a = mcu_spi_write(usb_device, in_out_buf, command_size);
- /* determine return code */
- if (a != 0) {
- DEBUG_MSG("ERROR: USB SX1250 READ FAILURE\n");
- return -1;
- } else {
- DEBUG_MSG("Note: USB SX1250 read success\n");
- memcpy(data, in_out_buf + 7, size); /* remove the first bytes, keep only the payload */
- return 0;
- }
- }
- /* --- EOF ------------------------------------------------------------------ */
|