RFFC5071: Rename rffc5071_drv->rffc5071_spi.

This commit is contained in:
Jared Boone
2014-11-09 09:39:28 -08:00
parent 69867bb637
commit 786a8fd2e1
6 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ extern "C"
#include <stdbool.h> #include <stdbool.h>
#include "max2837_drv.h" #include "max2837_drv.h"
#include "rffc5071_drv.h" #include "rffc5071.h"
#include "w25q80bv.h" #include "w25q80bv.h"
/* hardware identification number */ /* hardware identification number */

View File

@ -34,7 +34,7 @@
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include "rffc5071.h" #include "rffc5071.h"
#include "rffc5071_drv.h" #include "rffc5071_spi.h"
#include "rffc5071_regs.def" // private register def macros #include "rffc5071_regs.def" // private register def macros
#include "hackrf_core.h" #include "hackrf_core.h"

View File

@ -25,7 +25,7 @@
#include <stdint.h> #include <stdint.h>
#include "rffc5071_drv.h" #include "rffc5071_spi.h"
/* Initialize chip. Call _setup() externally, as it calls _init(). */ /* Initialize chip. Call _setup() externally, as it calls _init(). */
extern void rffc5071_init(rffc5071_driver_t* const drv); extern void rffc5071_init(rffc5071_driver_t* const drv);

View File

@ -138,7 +138,7 @@ macro(DeclareTargets)
${PATH_HACKRF_FIRMWARE_COMMON}/max2837_drv.c ${PATH_HACKRF_FIRMWARE_COMMON}/max2837_drv.c
${PATH_HACKRF_FIRMWARE_COMMON}/max5864.c ${PATH_HACKRF_FIRMWARE_COMMON}/max5864.c
${PATH_HACKRF_FIRMWARE_COMMON}/rffc5071.c ${PATH_HACKRF_FIRMWARE_COMMON}/rffc5071.c
${PATH_HACKRF_FIRMWARE_COMMON}/rffc5071_drv.c ${PATH_HACKRF_FIRMWARE_COMMON}/rffc5071_spi.c
m0_bin.s m0_bin.s
) )