Rev Author Line No. Line
2804 kakl 1 /**** BootLoader Test****/
2  
3 #CASE // Case sensitive compiler
4  
5 #include "bltest.h"
6  
7 void main() // Main of loaded program
8 {
9 int8 i=0;
10  
11 while(TRUE)
12 {
13 printf("# Boot Loader Test >>> %u\r\n",i++);
14 delay_ms(100);
15 // restart_wdt();
16 }
17 }
18  
2815 kakl 19 #include "..\common\dbloader.h"