App to configure a DDS (AD9854) using a K64F. USB an Ethernet were used as interface.

Dependencies:   jro mbed AD9854 mbed-rtos I2CLCD k64f_EthLink SerialDriver FreescaleIAP EthernetInterface

Revision:
3:f84802422619
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test_iap.cpp	Tue Feb 24 20:09:49 2015 +0000
@@ -0,0 +1,27 @@
+#include "mbed.h"
+#include "FreescaleIAP.h"
+ 
+ #if 0
+int main() {
+    int address = flash_size() - SECTOR_SIZE;           //Write in last sector
+    
+    int *data = (int*)address;
+    char *data_str = (char*)address;
+    printf("Starting\r\n"); 
+    erase_sector(address);
+    int numbers[10] = {0, 1, 10, 100, 1000, 10000, 1000000, 10000000, 100000000, 1000000000};
+    char *ip = "a12b3c4d5";
+    //program_flash(address, (char*)&numbers, 40);        //10 integers of 4 bytes each: 40 bytes length
+    program_flash(address, ip, strlen(ip));                     //15 chars of 4 bytes each: 60 bytes length
+    printf("Resulting flash: \r\n");
+    //for (int i = 0; i<10; i++)
+        //printf("%d\r\n", data[i]);
+    //
+    printf("%s\r\n", data_str);
+    printf("Done\r\n\n");
+        
+ 
+    while (true) {
+    }
+}
+#endif
\ No newline at end of file