mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-26 09:45:33 +03:00
Allow override of stm32f7xx UART AFs (#5184)
This commit is contained in:
parent
8cfea6aefc
commit
e18a1c73db
3 changed files with 38 additions and 1 deletions
|
@ -28,6 +28,9 @@
|
|||
#define CONCAT_HELPER(x,y) x ## y
|
||||
#define CONCAT(x,y) CONCAT_HELPER(x, y)
|
||||
|
||||
#define CONCAT3_HELPER(x, y, z) x ## y ## z
|
||||
#define CONCAT3(x, y, z) CONCAT3_HELPER(x, y, z)
|
||||
|
||||
#define CONCAT4_HELPER(x, y, z, w) x ## y ## z ## w
|
||||
#define CONCAT4(x, y, z, w) CONCAT4_HELPER(x, y, z, w)
|
||||
|
||||
|
@ -106,4 +109,4 @@ void * memcpy_fn ( void * destination, const void * source, size_t num ) asm("me
|
|||
#define FALLTHROUGH do {} while(0)
|
||||
#endif
|
||||
|
||||
#define ALIGNED(x) __attribute__ ((aligned(x)))
|
||||
#define ALIGNED(x) __attribute__ ((aligned(x)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue