28 lines
434 B
C
28 lines
434 B
C
|
/*
|
||
|
* main.c
|
||
|
*
|
||
|
* Created on: 2016 May 06 08:50:02
|
||
|
* Author: ferreije
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
|
||
|
* @brief main() - Application entry point
|
||
|
*
|
||
|
* <b>Details of function</b><br>
|
||
|
* This routine is the application entry point. It is invoked by the device startup code.
|
||
|
*/
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
|
||
|
/* Placeholder for user application code. The while loop below can be replaced with user application code. */
|
||
|
while(1U)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|