Hi, I have only one 4550 and I want to try it to another chip, I only have pic18f2550..I followed some instructions to comment the default config fuse in PBP INC files. I tried to compile this part of the code..
Code:
    '<FL_PIC18F2550>'    '<FL_PBPL>'
    DEFINE OSC 48
    @ __CONFIG   _CONFIG1L, _PLLDIV_1_1L & _CPUDIV_OSC1_PLL2_1L & _USBDIV_2_1L
    @ __CONFIG   _CONFIG1H, _FOSC_HSPLL_HS_1H
    @ __CONFIG   _CONFIG2H, _WDT_OFF_2H & _WDTPS_512_2H
    @ __CONFIG   _CONFIG2L, _PWRT_ON_2L & _VREGEN_ON_2L
    @ __CONFIG   _CONFIG3H, _PBADEN_OFF_3H & _MCLRE_OFF_3H
    @ __CONFIG   _CONFIG4L, _LVP_OFF_4L & _XINST_OFF_4L
    Include "modedefs.bas"
        ' Alias PIC pins and registers for SD/MMC card
    SD_WE        VAR    PORTA.4    ' SD card write protect
    SD_WE_TRIS   VAR    TRISA.4    ' SD card write protect direction
    SDI          VAR    PORTA.5    ' SPI data in SD #7
    SDI_TRIS     VAR    TRISA.5    ' SPI data in direction
    SCL          VAR    PORTA.3    ' SPI clock  SD #5
    SCL_TRIS     VAR    TRISA.3    ' SPI clock direction
    SD_CS        VAR    PORTC.2    ' SD card chip select SD #1
    SD_CS_TRIS   VAR    TRISC.2    ' SD card chip select direction
    SD_CD        VAR    PORTC.0    ' SD card detect
    SD_CD_TRIS   VAR    TRISC.0    ' SD card detect direction
    SDO          VAR    PORTC.1    ' SPI data out   SD #2
    SDO_TRIS     VAR    TRISC.1    ' SPI data out direction
But gives me the following compilation error...
Name:  compile_erro.gif
Views: 492
Size:  8.9 KB

regards,
tacbanon