1
0
Fork 0
This repository has been archived on 2019-12-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
arduinisten/arduino-0018-windows/hardware/tools/avr/pn/clips/winavr.clips

44 lines
491 B
Text
Raw Normal View History

2010-03-30 21:53:44 +02:00
<?xml version="1.0"?>
<clips name="WinAVR">
<clip name="Application"><![CDATA[
#include <avr/io.h>
static void avr_init(void);
int main(void)
{
avr_init();
for(;;)
{
// Tasks here.
}
return(0);
}
static void avr_init(void)
{
// Initialize device here.
|
return;
}
]]>
</clip>
<clip name="Function"><![CDATA[
void |(void)
{
}
]]>
</clip>
</clips>