Skip to content
Snippets Groups Projects
Select Git revision
  • 10df176b0fb932d61f0dc5d6bfd0a0942501fc40
  • master default protected
  • v0.10.0
  • v0.10.0-rc2
  • v0.10.0-rc1
  • v0.9.0
  • v0.9.0-rc1
  • v0.8.0
  • v0.8.0-rc2
  • v0.8.0-rc1
  • v0.7.0
  • v0.7.0-rc2
  • v0.7.0-rc1
  • v0.6.1
  • v0.6.0
  • v0.6.0-rc2
  • v0.6.0-rc1
  • v0.5.0
  • v0.5.0-rc2
  • v0.5.0-rc1
  • v0.4.0
  • v0.4.0-rc2
22 results

AUTHORS.ChangeLog

Blame
  • ring.IMXRT1062.ino 583 B
    //
    // ring.IMXRT1062.ino
    //
    // ring oscillator test
    //
    // Neil Gershenfeld 8/12/21
    //
    // This work may be reproduced, modified, distributed,
    // performed, and displayed for any purpose, but must
    // acknowledge this project. Copyright is retained and
    // must be preserved. The work is provided as is; no
    // warranty is provided, and users accept all liability.
    //
    
    void setup() {
       pinMode(0,OUTPUT);
       }
    
    void loop() {
       while (1) {
          uint8_t data = GPIO6_DR;
          if (data & 0b100) // pin 1
             GPIO6_DR = 0;
          else
            GPIO6_DR = 0b1000; // pin 0
          }
       }