/elec/audio-switcher

To get this branch, use:
bzr branch http://bzr.ed.am/elec/audio-switcher

« back to all changes in this revision

Viewing changes to src/wiring.h

  • Committer: Tim Marston
  • Date: 2012-11-22 22:01:52 UTC
  • Revision ID: tim@ed.am-20121122220152-paremcsc2gbccrjw
added timer utilities (wiring.c) from arduino library

Show diffs side-by-side

added added

removed removed

 
1
 
 
2
 
 
3
unsigned long millis(void);
 
4
 
 
5
unsigned long micros(void);
 
6
 
 
7
void delay(unsigned long ms);
 
8
 
 
9
void delayMicroseconds(unsigned int us);
 
10
 
 
11
void init_wiring_c(void);
 
12