git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7478 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2014-11-05 13:22:26 +00:00
parent 0519bcc615
commit 5dc2d488b4
2 changed files with 4 additions and 2 deletions

View File

@ -64,8 +64,8 @@
/* Core headers.*/
#include "chtypes.h"
#include "chsystypes.h"
#include "chconf.h"
#include "chsystypes.h"
#include "chcore.h"
#include "chdebug.h"
#include "chtm.h"

View File

@ -50,8 +50,10 @@
*/
#if (CH_CFG_ST_RESOLUTION == 32) || defined(__DOXYGEN__)
typedef uint32_t systime_t;
#else
#elif CH_CFG_ST_RESOLUTION == 16
typedef uint16_t systime_t;
#else
#error "invalid CH_CFG_ST_RESOLUTION setting"
#endif
/**