IJFW - IchigoJamのBASICプログラムをメモリカード(MMCまたは互換カード)に保存したり読み出したりできるプログラム。メモリカードにファームウェアのファイルを置くだけで、電源ON時に自動的に書き換える機能も搭載(一応こちらがメイン)。LPC1114FN28専用。

Dependencies:   mbed

参考URL http://www.cyberchabudai.org/index.php/entry?tag=IJFW

Revision:
1:11f73f269fdc
Parent:
0:43cce7b453d0
--- a/UartIsp/UartIsp.h	Thu Apr 28 11:23:24 2016 +0000
+++ b/UartIsp/UartIsp.h	Wed Aug 17 07:19:20 2016 +0000
@@ -3,7 +3,7 @@
 
 #include "mbed.h"
 #include "UartIspBase.h"
-#include "FatfsIJFW.h"
+#include "FatfsIjfwConfigurable.h"
 
 class UartIsp : public UartIspBase {
 public:
@@ -17,7 +17,7 @@
         ERR_COPY_TO_FLASH,
     };
 
-    UartIsp(RawSerial* _serial, FatfsIJFW* _fs);
+    UartIsp(RawSerial* _serial, FatfsIjfwConfigurable* _fs);
     virtual ~UartIsp();
 
     virtual void writeSerial(const char val);
@@ -30,7 +30,7 @@
 protected:
     
     RawSerial* serial;
-    FatfsIJFW* fs;
+    FatfsIjfwConfigurable* fs;
     char* buffer;
 
 };