removed read bit from bus pirate writes, bp compile fix

This commit is contained in:
Michael Ossmann
2012-06-08 15:42:28 -06:00
parent fa4e1ce0f7
commit 65e5707e3f

View File

@ -10,13 +10,13 @@
#include <string.h> #include <string.h>
#include "max2837.h" #include "max2837.h"
#include "max2837_regs.def" // private register def macros #include "max2837_regs.def" // private register def macros
#include <libopencm3/lpc43xx/ssp.h>
#if (defined DEBUG || defined BUS_PIRATE) #if (defined DEBUG || defined BUS_PIRATE)
#include <stdio.h> #include <stdio.h>
#define LOG printf #define LOG printf
#else #else
#define LOG(x,...) #define LOG(x,...)
#include <libopencm3/lpc43xx/ssp.h>
#endif #endif
/* Default register values. */ /* Default register values. */
@ -78,7 +78,7 @@ uint16_t max2837_spi_read(uint8_t r) {
void max2837_spi_write(uint8_t r, uint16_t v) { void max2837_spi_write(uint8_t r, uint16_t v) {
#ifdef BUS_PIRATE #ifdef BUS_PIRATE
LOG("{0x%02x 0x%02x]\n", 0x80 | ((uint16_t)r<<2) | ((v>>8) & 0x3), LOG("{0x%02x 0x%02x]\n", 0x00 | ((uint16_t)r<<2) | ((v>>8) & 0x3),
v & 0xff); v & 0xff);
#elif DEBUG #elif DEBUG
LOG("0x%03x -> reg%d\n", v, r); LOG("0x%03x -> reg%d\n", v, r);