22 lines
258 B
C++
22 lines
258 B
C++
|
/*
|
||
|
* $projectname$.cpp
|
||
|
*
|
||
|
* Created: $date$
|
||
|
* Author : $user$
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "sam.h"
|
||
|
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
/* Initialize the SAM system */
|
||
|
SystemInit();
|
||
|
|
||
|
/* Replace with your application code */
|
||
|
while (1)
|
||
|
{
|
||
|
}
|
||
|
}
|