STM32 fixes for F4 32-bit timers

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4300 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-01-13 02:49:10 +00:00
parent cd567f546a
commit f158e56fca
6 changed files with 615 additions and 409 deletions
+4 -4
View File
@@ -144,12 +144,12 @@ EXTERN unsigned long long strtoull(const char *, char **, int);
#endif
EXTERN double_t strtod(const char *, char **);
#define atoi(nptr) strtol((nptr), NULL, 10);
#define atol(nptr) strtol((nptr), NULL, 10);
#define atoi(nptr) strtol((nptr), NULL, 10)
#define atol(nptr) strtol((nptr), NULL, 10)
#ifdef CONFIG_HAVE_LONG_LONG
#define atoll(nptr) strtoll((nptr), NULL, 10);
#define atoll(nptr) strtoll((nptr), NULL, 10)
#endif
#define atof(nptr) strtod((nptr), NULL);
#define atof(nptr) strtod((nptr), NULL)
/* Memory Management */