I am currently working on a project with an 18F4550. 32k seemed like it would be enough program memory ... I purchased some 18F2682, 18F2680 and 18F2685, because of their enormous program memory. However, simple Serin2 & Serout2, SDA & SCL do not work.

I did set the OSC in the 18F2680 as such
Code:
INCLUDE "P18F2680.INC"    ; MPASM  Header
        __CONFIG    _CONFIG1H,  _OSC_IRCIO67_1H 
        __CONFIG    _CONFIG2H, _WDT_ON_2H & _WDTPS_128_2H
        __CONFIG    _CONFIG3H, _PBADEN_OFF_3H & _LPT1OSC_OFF_3H & _MCLRE_ON_3H
        __CONFIG    _CONFIG4L, _LVP_OFF_4L
        NOLIST
But even such statements like PORTB.1=1 do nothing...
I have the INCLUDE "ALLDIGITAL.pbp"

Any help would be great.

Mike