I just came across this -https://sites.google.com/site/artcfox/demystifying-the-tlc5940 - the guy has spent a lot of time writing what must be the definitive guide to TLC5940 chips, and thought I'd flag it in case anyone else would find it helpful.
He does unfortunately use the h/w clock out from a bare ATMega chip, which from what I understand isn't available on the arduino, but it's worth a read anyway just for the general approach to solving a programming (or indeed any!) problem.
Clock out is available on D8:
CLKO, Divided System Clock: The divided system clock can be output on the PB0 pin. The divided system clock
will be output if the CKOUT Fuse is programmed, regardless of the PORTB0 and DDB0 settings. It will also be output during reset.
markvr:
He does unfortunately use the h/w clock out from a bare ATMega chip, which from what I understand isn't available on the arduino, but it's worth a read anyway just for the general approach to solving a programming (or indeed any!) problem.
The CLK0 signal comes out on PB0 which is Arduino Pin 8.
Ah thanks both. I read somewhere in his book/site (which of course I can't find now...) that it was better to use a "bare" ATMega chip because the arduino didn't breakout the clock output.
Because:
a) You have to set fuse bits to enable it.
b) You don't need it - the Mega328 is perfectly capable of putting a clock signal on other pins (which is what the TLC library does).