Skip to content
Snippets Groups Projects
Commit 606a4362 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Reduce STM32F4 compile warnings

parent ccef14e2
No related branches found
No related tags found
No related merge requests found
......@@ -110,6 +110,7 @@
#define NUM_SERIAL 1
#endif
#undef _BV
#define _BV(b) (1 << (b))
/**
......
......@@ -29,6 +29,7 @@
#ifndef _FASTIO_STM32F4_H
#define _FASTIO_STM32F4_H
#undef _BV
#define _BV(b) (1 << (b))
#define USEABLE_HARDWARE_PWM(p) true
......
......@@ -57,7 +57,7 @@
#define NANOSECONDS_PER_CYCLE (1000000000.0 / F_CPU)
// Remove compiler warning on an unused variable
#define UNUSED(x) (void) (x)
#define UNUSED(x) ((void)(x))
// Macros to make a string from a macro
#define STRINGIFY_(M) #M
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment