Changeset 1120


Ignore:
Timestamp:
04/02/11 03:47:39 (2 years ago)
Author:
reyalP
Message:

fix ixus100_sd780 build from last change

Location:
trunk/platform/ixus100_sd780
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/platform/ixus100_sd780/kbd.c

    r1102 r1120  
    217217        long l; 
    218218 
    219         l=Fopen_Fut("A/PropDmp.txt","a"); 
     219        l=_Fopen_Fut("A/PropDmp.txt","a"); 
    220220        for (i=0;i<300;i++){ 
    221221                _GetPropertyCase(i, &avv, sizeof(avv)); // 23 for DiGiC III 
    222222                sprintf(aStr,"[%3d]=(%8x)\n",i,avv); 
    223                 Fwrite_Fut(aStr,1,strlen(aStr),l); 
    224         } 
    225         Fflush_Fut(l); 
    226         Fclose_Fut(l); 
     223                _Fwrite_Fut(aStr,1,strlen(aStr),l); 
     224        } 
     225        _Fflush_Fut(l); 
     226        _Fclose_Fut(l); 
    227227} 
    228228 
     
    248248        j=0; 
    249249 
    250         l=Fopen_Fut("A/aHookList.txt","ab"); 
     250        l=_Fopen_Fut("A/aHookList.txt","ab"); 
    251251 
    252252        while (j<aHookNum) 
     
    265265                                sprintf(sampleChr,"loc:%8x - data:%8x - *data:unsafe\n",myPtr,*myPtr);//*myPtr); 
    266266                        } 
    267                         Fwrite_Fut(sampleChr,1,63,l); 
     267                        _Fwrite_Fut(sampleChr,1,63,l); 
    268268                        myPtr++; 
    269269                } 
    270270                sprintf(sampleChr,"Next Hook\n",myPtr,*myPtr,*myPtr); 
    271                 Fwrite_Fut(sampleChr,1,63,l); 
    272                 Fflush_Fut(l); 
    273         } 
    274         Fflush_Fut(l); 
    275         Fclose_Fut(l); 
     271                _Fwrite_Fut(sampleChr,1,63,l); 
     272                _Fflush_Fut(l); 
     273        } 
     274        _Fflush_Fut(l); 
     275        _Fclose_Fut(l); 
    276276        return 0; 
    277277 
  • trunk/platform/ixus100_sd780/sub/100c/boot.c

    r955 r1120  
    145145        char filen[32]; 
    146146 
    147         l = Fopen_Fut("A/0xCF90a.bin","ab"); 
    148         Fwrite_Fut((void*)(START_ADDRESS),1,FWSIZE,l); 
    149         Fflush_Fut(l); 
    150         Fclose_Fut(l); 
    151         l = Fopen_Fut("A/0xCF90b.bin","ab"); 
    152         Fwrite_Fut((void*)(START_ADDRESS2),1,FWSIZE,l); 
    153         Fflush_Fut(l); 
    154         Fclose_Fut(l); 
     147        l = _Fopen_Fut("A/0xCF90a.bin","ab"); 
     148        _Fwrite_Fut((void*)(START_ADDRESS),1,FWSIZE,l); 
     149        _Fflush_Fut(l); 
     150        _Fclose_Fut(l); 
     151        l = _Fopen_Fut("A/0xCF90b.bin","ab"); 
     152        _Fwrite_Fut((void*)(START_ADDRESS2),1,FWSIZE,l); 
     153        _Fflush_Fut(l); 
     154        _Fclose_Fut(l); 
    155155 
    156156        //jF = open("/_term", O_RDONLY,0777); 
Note: See TracChangeset for help on using the changeset viewer.