Sunday, October 24, 2010

Social Networks Update

You can now find ZPUino in Twitter and Facebook.

Enjoy the news updates! :)

Also a new web page is on the forge, I hope to upload it soon.

Álvaro

Saturday, October 23, 2010

UI for ZPUino

Just forked Arduino UI and added specifics for ZPUino. Should work to some extent (some changes still required due to PPS).

You can get it here: http://github.com/alvieboy/ZPUino

Álvaro

Tuesday, October 19, 2010

PPS implemented

PPS is now implemented and tested. I uploaded to main git repository.

It can be disabled if one wishes, because it uses more LUTs than CPU core. Bootloader is now tuned to S3E eval board, new boards should arrive soon.

GPIO width was increased to maximum of 128 GPIO pins. Unused pins will be removed during synthesis.

Also I changed bootloader from C code to C++ code. This allows for template-based inlined functions for pinMode and digitalWrite, as well as other goodies that C++ can bring.

Álvaro

Saturday, October 16, 2010

New features, GUI first version

A new "interesting" feature is now under development, which is PPS - Peripheral Pin Select. This feature (although a LUT eater) allows you to redirect any peripheral pin (such as UART tx/rx, SPI) to any GPIO you might wish - and you can do it in run-time. Some microchip PIC include this feature, and for boards who do not actually include external devices it's always nice to be able to plug them in any connector board might provide, and redirect things like UART and SPI there.

Changes to Arduino IDE also went well - after modifying compiler rules to use standard makefiles you can actually use that same IDE to develop and even upload your "sketch" to ZPUino. Unfortunately Arduino developers do not see this "Makefile-based" build as a good thing, let's hope they do reconsider their position - everyone wins if they do.

Álvaro

Monday, October 4, 2010

Bootloader up and running.

Looks like bootloader and programmer work OK. Still a few things to do, like retry transmission, better detection of ZPUino on startup, and implement drivers for flash other than M25P16.

But generic flash programming seems to work very well. In future, if FPGA is also using SPI for program storage we can program both (FPGA and ZPUino) from a single application (will be slower, because I'm limiting programming to 115200 baud).

Jack decided to offer me a prototype of the upcoming Papilio Overshield (It's a Spartan3E with SPI flash and voltage level converters (5v) that looks like another arduino shield). Looks very promising.

Álvaro