entity mytest is end mytest; library mylib; use mylib.mypkg.all; architecture behav of mytest is begin process begin report msg severity note; wait; end process; end behav; m feed' href='http://git.panaceas.org/cgit/avr/micronucleus/atom/commandline/library/littleWire_util.h?h=v2.0b' type='application/atom+xml'/>
summaryrefslogtreecommitdiffstats
path: root/commandline/library/littleWire_util.h
blob: 27dc172102c0d8693c21a6759dfc6b4194c0e525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LITTLEWIRE_UTIL_H
#define LITTLEWIRE_UTIL_H

#if defined WIN
    #include <windows.h>
#else
    #include <unistd.h>
#endif

/* Delay in miliseconds */
void delay(unsigned int duration);

#endif