Example #1
0
int main(void)
{
	InitPeripherals();     
    
	SDBG_RegisterSmallCmd('s', Callback_s);
	SDBG_RegisterSmallCmd('e', Callback_e);
	//MUART_Printf("\nCAMERA Start!\n");
	SDBG_Printf("\nCAMERA Start!\n");
	while (1)
		DoMainLoop();   
	return 0;
}
Example #2
0
int main(void)
{
	InitPeripherals();
    
	SDBG_RegisterSmallCmd('s', Callback_s);
	SDBG_RegisterSmallCmd('e', Callback_e);
	
	while (1)
		DoMainLoop();
	
	return 0;
}