Skip to content

Instantly share code, notes, and snippets.

@frank9615
Created December 4, 2018 21:07
Show Gist options
  • Save frank9615/0af60976b4df8eb7ab8eff98a16b06c6 to your computer and use it in GitHub Desktop.
Save frank9615/0af60976b4df8eb7ab8eff98a16b06c6 to your computer and use it in GitHub Desktop.
HEX
2000B420 CONSTANT ARM_TIMER_CNT
: us@ ARM_TIMER_CNT @ ;
: usecs ;
: msecs 1000 * ;
: secs 1000000 * ;
: us us@ + BEGIN DUP us@ - 0<= UNTIL DROP ;
: LEDON 00010000 20200028 ! ;
: LEDOFF 00010000 2020001C ! ;
: BLINK BEGIN LEDON 42 msecs us LEDOFF 42 msecs us 0 UNTIL ;
BLINK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment