In search of a good Stamp IDE for Linux
lorderico
Posts: 12
I finally got my basic stamp working on my Ubuntu computer, and now I am trying to look for a decent IDE to work with. Using the windows IDE with wine is terrible because all of the text is small and overlapping. However, I like the fact that it colors my words correctly, capitalizes them, etc... Is there a good IDE for Linux (specifically Ubuntu) that you know of?
Thanks,
Eric
Thanks,
Eric
Comments
http://www.parallax.com/tabid/441/Default.aspx
A lot of the PBASIC syntax doesn't work (SELECT, DO..LOOP, DEBUGIN, etc) If I write around the limitations the programs work, but I'm getting frustrated.
One of the other ones (second listed) doesn't compile on my system (Xubuntu 8.10)
If the first one doesn't work I might have to give up my soul and go MS.
It works for now.
Eric
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
I'll give Wine a shot. I was worried there would be issues connecting to serial so never really tried it.
First, download the bstamp program from that website and install it with the instructions (http://bstamp.sourceforge.net/install/).
Then download the tokenizer from http://www.parallax.com/tabid/441/Default.aspx . It is the bottom link. Again, use the instructions to install the tokenizer. I think that this is the only way to connect to the basic stamp in linux. The editor only makes it easier to code by highlighting the code, and providing a syntax checker, it cannot connect to the stamp. If there is a way that it can, please let me know.
If you use a usb stamp, use ttyUSB# instead of ttyS# (where # is the number of the port).
I've found that if you get a "a basic stamp isn't found" error, you should delete the bstamp symbolic link and remake it. Or else turn the stamp off and on. Or else the basic stamp battery might be low.
One more thing. If you use the command debugin, in order to input into the stamp use these intructions:
open a new terminal tab.
type echo text_here > /dev/bstamp
where text_here is whatever you want to send to the stamp.
Hope this helps anyone trying to use the stamp in Linux.
Eric