I updated the pbp.lang file, here's the updated version, which should recognize all pbp and bas files as picbasic pro. Just put it in /usr/share/gtksourceview-2.0/language-specs/
pbp.lang.zip
also, I know alot of people out there that's just starting out still use the jdm programmers, so here's something for you too using picprog:
Have fun and hope this helps some people that uses linux.#!/bin/sh
comport="/dev/ttyS0"
pic="16f628a"
wine c:/pbp/pbpw -e -s -ac:/Program Files/Microchip/MPASM Suite/MPASMWIN -p$pic $GEDIT_CURRENT_DOCUMENT_NAME
var=$GEDIT_CURRENT_DOCUMENT_NAME
var2=${var%???}
outasm=$var2"ASM"
wine c:/Program\ Files/Microchip/MPASM\ Suite/mpasmwin /q /e /l $outasm
outhex=${var2}"HEX"
picprog --erase --burn --input $outhex --device $pic --p $comport
also, I'd like to see your input on this macrackit btw, see what can be improved or added, I know it'd be nice to add a chip selector in the main program, but not sure how to do that atm.
Bookmarks