diff --git a/bsp/Vango_V85xx/applications/main.c b/bsp/Vango_V85xx/applications/main.c index 26035bde9d554ec04cc625d464104615de7a3bda..c0926c341c9b7d6848b3c570fbbd34615532b08d 100644 --- a/bsp/Vango_V85xx/applications/main.c +++ b/bsp/Vango_V85xx/applications/main.c @@ -50,4 +50,4 @@ void assert_errhandler(uint8_t* file, uint32_t line) { } } -#endif \ No newline at end of file +#endif diff --git a/bsp/Vango_V85xx/drivers/board.h b/bsp/Vango_V85xx/drivers/board.h index 215ad0b1945799bf40dd510786f9161a5bb28130..e8e312d1100c45ae89b5cd9138947db6156133df 100644 --- a/bsp/Vango_V85xx/drivers/board.h +++ b/bsp/Vango_V85xx/drivers/board.h @@ -32,7 +32,13 @@ extern int __bss_end; #define HEAP_BEGIN ((void *)&__bss_end) #endif - #define HEAP_END V85XX_SRAM_END +/* #define DEBUG */ +#ifdef DEBUG +#define DEBUG_PRINTF(...) rt_kprintf(__VA_ARGS__) +#else +#define DEBUG_PRINTF(...) +#endif + #endif diff --git a/bsp/Vango_V85xx/drivers/drv_spi.c b/bsp/Vango_V85xx/drivers/drv_spi.c index 724e3cc40048238c5318a5df335f739810da64ce..ce0e5bd87d41c4fe659f8d01ea18ea1c74380c9b 100644 --- a/bsp/Vango_V85xx/drivers/drv_spi.c +++ b/bsp/Vango_V85xx/drivers/drv_spi.c @@ -22,13 +22,6 @@ #error "Please define at least one SPIx" #endif -/* #define DEBUG */ -#ifdef DEBUG -#define DEBUG_PRINTF(...) rt_kprintf(__VA_ARGS__) -#else -#define DEBUG_PRINTF(...) -#endif - /* private rt-thread spi ops function */ static rt_err_t configure(struct rt_spi_device* device, struct rt_spi_configuration* configuration); static rt_uint32_t xfer(struct rt_spi_device* device, struct rt_spi_message* message); @@ -199,7 +192,7 @@ int v85xx_hw_spi_init(void) result = rt_spi_bus_register(&spi_bus0, "spi1", &v85xx_spi_ops); - #endif +#endif #ifdef RT_USING_SPI2 static struct rt_spi_bus spi_bus1;