neingeist
/
arduinisten
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

44 lines
491 B
XML

<?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>