1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-16 08:29:15 +01:00

flight/Libraries/fifo_buffer: Use platform independent <stdint.h> instead of "stm32xxx.h" to get definition of intX_t types

This commit is contained in:
Corvus Corax 2011-08-14 12:47:15 +02:00
parent f766ba47aa
commit 8a47ade16b

View File

@ -26,7 +26,7 @@
#ifndef _FIFO_BUFFER_H_ #ifndef _FIFO_BUFFER_H_
#define _FIFO_BUFFER_H_ #define _FIFO_BUFFER_H_
#include "stm32f10x.h" #include <stdint.h>
// ********************* // *********************