Merged from external project:
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 23 Oct 2008 17:06:01 +0000 (17:06 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 23 Oct 2008 17:06:01 +0000 (17:06 +0000)
**********
r22539 | batt | 2008-10-23 19:05:36 +0200(gio, 23 ott 2008) | 1 line

Reformat.
**********

git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1901 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/drv/dataflash_hwtest.c

index fa8085586d8c038d3624288426ee301435875b2f..05426fef6c75a2bdfd243ad098b9ade84a2d82df 100644 (file)
@@ -79,7 +79,7 @@
 #define DATAFLASH_MEM_MODEL            DFT_AT45DB642D
 
 // Function to set CS, this is typically implement in hw/hw_dataflash.{c, h}
 #define DATAFLASH_MEM_MODEL            DFT_AT45DB642D
 
 // Function to set CS, this is typically implement in hw/hw_dataflash.{c, h}
-#define DATAFLASH_FUNC_CS_SET     &dataflash_hw_setCS
+#define DATAFLASH_FUNC_CS_SET      dataflash_hw_setCS
 
 // Function to reset memery, this is typically implement in hw/hw_dataflash.{c, h}
 #define DATAFLASH_FUNC_RESET                     NULL
 
 // Function to reset memery, this is typically implement in hw/hw_dataflash.{c, h}
 #define DATAFLASH_FUNC_RESET                     NULL
@@ -205,28 +205,27 @@ int dataflash_testTearDown(void)
 #if 0
 int main(void)
 {
 #if 0
 int main(void)
 {
-        IRQ_ENABLE;
+       IRQ_ENABLE;
        kdbg_init();
 
        #if CONFIG_KERN
        kdbg_init();
 
        #if CONFIG_KERN
-                proc_init();
-        #endif
-
-        if (!dataflash_testSetUp())
-        {
-                LOG_INFO("DATAFLASH setup..ok\n");
-        }
-        else
-        {
-                LOG_ERR("DATAFLASH setup..fail!\n");
-                return EOF;
-        }
-
-               dataflash_testRun();
-
-        for(;;)
-        {
-        }
-
+       proc_init();
+    #endif
+
+       if (!dataflash_testSetUp())
+       {
+                       LOG_INFO("DATAFLASH setup..ok\n");
+       }
+       else
+       {
+                       LOG_ERR("DATAFLASH setup..fail!\n");
+                       return EOF;
+       }
+
+       dataflash_testRun();
+
+       for(;;)
+       {
+       }
 }
 #endif
 }
 #endif