STM32 F4 RTC driver is fully coded (but not tested)

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4176 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2011-12-14 19:12:00 +00:00
parent 8bf1779001
commit 9922992d84
11 changed files with 639 additions and 51 deletions
+24
View File
@@ -236,6 +236,18 @@
# define illvdbg(x...)
#endif
#ifdef CONFIG_DEBUG_ANALOG
# define adbg(format, arg...) dbg(format, ##arg)
# define alldbg(format, arg...) lldbg(format, ##arg)
# define avdbg(format, arg...) vdbg(format, ##arg)
# define allvdbg(format, arg...) llvdbg(format, ##arg)
#else
# define adbg(x...)
# define alldbg(x...)
# define avdbg(x...)
# define allvdbg(x...)
#endif
#ifdef CONFIG_DEBUG_GRAPHICS
# define gdbg(format, arg...) dbg(format, ##arg)
# define glldbg(format, arg...) lldbg(format, ##arg)
@@ -393,6 +405,18 @@
# define illvdbg (void)
#endif
#ifdef CONFIG_DEBUG_ANALOG
# define adbg dbg
# define alldbg lldbg
# define avdbg vdbg
# define allvdbg llvdbg
#else
# define adbg (void)
# define alldbg (void)
# define avdbg (void)
# define allvdbg (void)
#endif
#ifdef CONFIG_DEBUG_GRAPHICS
# define gdbg dbg
# define glldbg lldbg