by inaki » Thu Dec 28, 2006 10:38 am
by inaki
Thu Dec 28, 2006 10:38 am
I have selected precisely this chip for my own Bioloid controller board. It is an amazing micro and very nice for robotics. Of course the serial nature of Bioloid servos is a great way to save lots of I/O pins.
RAM is a little scarce however(32K for Spin programs, Spin is the high level language used in Propeller). I have been using FRAM chips to store external data but for certain purposes more internal RAM would be necessary. For certain tasks you need to use ASM instead of Spin because this one becomes too slow, although for most purposes it is fine. You can combine both Spin and ASM to perform critical tasks in ASM while keeping general code in Spin. For example you can use the ASM Fast Serial object to communicate with AX12 servos while keeping the logic of the code in Spin.
There is a strong community of Propeller fans that build very interesting new "objects" every day to support any kind of device.
Parallax has anounced a project for making a new Propeller with more RAM (128K), in the future but this may take some time to be released.
I have selected precisely this chip for my own Bioloid controller board. It is an amazing micro and very nice for robotics. Of course the serial nature of Bioloid servos is a great way to save lots of I/O pins.
RAM is a little scarce however(32K for Spin programs, Spin is the high level language used in Propeller). I have been using FRAM chips to store external data but for certain purposes more internal RAM would be necessary. For certain tasks you need to use ASM instead of Spin because this one becomes too slow, although for most purposes it is fine. You can combine both Spin and ASM to perform critical tasks in ASM while keeping general code in Spin. For example you can use the ASM Fast Serial object to communicate with AX12 servos while keeping the logic of the code in Spin.
There is a strong community of Propeller fans that build very interesting new "objects" every day to support any kind of device.
Parallax has anounced a project for making a new Propeller with more RAM (128K), in the future but this may take some time to be released.
Last edited by inaki on Fri Dec 29, 2006 7:11 am, edited 1 time in total.