Em 8/4/2011 02:21, Justin Richards escreveu: > This works > > ROM char Open[] =3D "Opening Port\r\n"; > . > . > . > serPutRomString(Open); > > > But for quick and dirty debugging I would like to do this > > serPutRomString("Opening Port\r\n") > > which failes so i tried > > serPutRomString(ROM char "Opening Port\r\n") > serPutRomString(ROM char * "Opening Port\r\n") > serPutRomString((ROM char) "Opening Port\r\n") > > Can this be done without first declaring an array of chars as type ROM ch= ar. > > Justin Try adding the lost semicolon after ")" : "serPutRomString("Opening Port\r\n");" --=20 http://www.piclist.com PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist .