--- a/LPCBeremiz.py Thu Dec 10 12:30:49 2009 +0100
+++ b/LPCBeremiz.py Thu Dec 10 12:31:42 2009 +0100
@@ -347,7 +347,8 @@
srcpath = os.path.join(src,i)
dstpath = os.path.join(dst,i)
if os.path.isdir(srcpath):
- os.makedirs(dstpath)
+ if not os.path.exists(dstpath):
+ os.makedirs(dstpath)
mycopytree(srcpath, dstpath)
elif os.path.isfile(srcpath):
shutil.copy2(srcpath, dstpath)
--- a/targets/LPC/plc_LPC_main.c Thu Dec 10 12:30:49 2009 +0100
+++ b/targets/LPC/plc_LPC_main.c Thu Dec 10 12:31:42 2009 +0100
@@ -94,7 +94,7 @@
}
void Retain(unsigned int offset, unsigned int count, void *p)
-{t
+{
}
void Remind(unsigned int offset, unsigned int count, void *p)