display22 - Labor für Interaktion
Dokumentation: FBAS (PAL) Composite Signalerzeugung
[db] 04.12.2006

Wie sollte ein FBAS Signal aussehen?

Tips zur Signalerzeugung, Timingfragen, Interrupts

JAVA:
  1. /* Delay for the given number of microseconds.
  2. * From D.Mellis for Arduino
  3. * Assumes a 16 MHz clock.
  4. * Disables interrupts, disrupts millis() if used frequently
  5. * note: digitalWrite() executes in 2.5 microseconds
  6. */
  7. void delayMicroseconds(unsigned int us) {
  8.     // calling avrlib's delay_us() function with low values (e.g. 1 or
  9.     // 2 microseconds) gives delays longer than desired.
  10.     //delay_us(us);