/*
* main.c
*
* Created on: 2016 May 06 08:50:02
* Author: ferreije
*/
/**
* @brief main() - Application entry point
*
* Details of function
* 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)
{
}
}