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.
44 lines
491 B
Plaintext
44 lines
491 B
Plaintext
15 years ago
|
<?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>
|