This commit is contained in:
Kai Lauterbach 2012-01-11 19:02:37 +01:00
parent f7df4ec29a
commit 040a46e0fd
2 changed files with 3 additions and 3 deletions

View file

@ -47,7 +47,7 @@ int main(int argc, char **argv)
printf("starting animation as single shot\n"); printf("starting animation as single shot\n");
lc_setMode(MODE_ANIMATION_SINGLE); lc_setMode(MODE_ANIMATION_SINGLE);
} }
else if (argc == 5 && !strcmp((char*)argv[1], "--view")) else if (argc == 3 && !strcmp((char*)argv[1], "--view"))
{ {
lc_setMode(MODE_ANIMATION_STOP); lc_setMode(MODE_ANIMATION_STOP);

View file

@ -12,13 +12,13 @@ Firmware features:
* 100Hz frame refresh rate. * 100Hz frame refresh rate.
* The EEPROM contains 32 frames. Every frame will be displayed. * The EEPROM contains 32 frames. Every frame will be displayed.
* Every frame has it's own lifetime. This is the delay between two bordering frames. * Every frame has it's own lifetime. This is the delay between two bordering frames.
* Hid conform USB 1.1 device with vendor id 16c0 and device id 05df. * Hid conform USB 1.1 device with vendor id 0x16c0 and device id 0x05df.
* 3 firmware modes are adjustable via USB. * 3 firmware modes are adjustable via USB.
MODE_ANIMATION_STOP - Animation stopped. Single frames can be shown until MODE_ANIMATION_STOP - Animation stopped. Single frames can be shown until
it will be overwritten. it will be overwritten.
MODE_ANIMATION_SINGLE - Animation runs only once MODE_ANIMATION_STOP MODE_ANIMATION_SINGLE - Animation runs only once MODE_ANIMATION_STOP
will be entered after the last frame. will be entered after the last frame.
MODE_ANIMATION_LOOP - Animation runs endless. (default mode at startup) MODE_ANIMATION_LOOP - Animation runs endless. (default mode at startup)
* Single frames can be transfered via USBand also save into the EEPROM. The * Single frames can be transfered via USB and also written into the EEPROM. The
position in the EEPROM is elective settable. position in the EEPROM is elective settable.