Now when the new arduino for meag1280 is relased, the next step should be the lpc2148 arm. Does any have any thoughts around this, if this is possible etc...
I am missing the options of threading as well in the arduino language.. with
thread1 = new thread(sketch2);
thread1.start();
thread1.pause();
thread1.stop();
where all the code which would be run is inside the method void run() and is stored in a seperate sketch file, sketch2
and also file handling on sd card:
filehandle1 =fopen(">a:\test.txt");
filehandle1.write();
filehandle1.readLine();
filehandle1.read(0,1024);// read 1024 character from pos 0 etc...
similar would also be great for spi and i2c
Well any thougts around this?