Browse Source

Replace lost end of at45.c.

Peter Pearse 17 năm trước cách đây
mục cha
commit
0c42f36f15
1 tập tin đã thay đổi với 14 bổ sung0 xóa
  1. 14 0
      drivers/at45.c

+ 14 - 0
drivers/at45.c

@@ -547,4 +547,18 @@ int AT91F_DataFlashRead(
 	return DATAFLASH_OK;
 }
 
+/*---------------------------------------------------------------------------*/
+/* Function Name       : AT91F_DataflashProbe 				     */
+/* Object              : 						     */
+/* Input Parameters    : 						     */
+/* Return value	       : Dataflash status register			     */
+/*---------------------------------------------------------------------------*/ 
+int AT91F_DataflashProbe(int cs, AT91PS_DataflashDesc pDesc) {
+	AT91F_SpiEnable(cs);
+	AT91F_DataFlashGetStatus(pDesc);
+	return((pDesc->command[1] == 0xFF)? 0: pDesc->command[1] & 0x3C); 
+}
+
+#endif
+