vote up 8 vote down star
1

Does anybody use FORTH for embedded programming?

flag

40% accept rate
1  
+1 for the title. :) – Jason S Jan 30 at 0:41

15 Answers

vote up 2 vote down

I wrote code in FORTH for an embedded system about 15 years ago and really enjoyed it, but nothing since then (it's been C and C++ since, so it's been downhill all the way). I used MPE PC PowerForth by MicroProcessor Engineering Ltd. They're still around, so there must be a market (in the UK at least) for FORTH.

link|flag
vote up 1 vote down

I used FORTH on an old 6809 processor, over 20 years ago. I think the FORTH kernal fit within 1-2K (ROM).

FYI: there is a dotnet FORTH compiler (Compiles directly to IL code). Its a bit larger though (20MB).

link|flag
vote up 1 vote down

Honk Honk!!

I've always thought Forth was a beautiful language. Threaded code is a very powerful idea that seems to have been forgotten somewhere along the way.

Though my favourite threaded interpretive language has to be LOGO (falls into nostalgic reverie about BBC Micros and motorized turtles)

Thanks for reminding me.

link|flag
vote up 2 vote down

Crazy 3D emulator of Jupiter ACE, an ancient Forth based computer...info

link|flag
vote up 3 vote down

Hey - it was the only real language available for an Atari 400 at the time. I used it for an on-line videotext (interwhat?) banking application.

link|flag
vote up 2 vote down

I don't use forth directly but I cannot fail to mention user and system RPL on the HP calculators. I fell in love with user RPL on the HP28x and still love to use it on the HP50.

link|flag
vote up 8 vote down

Well over twenty years ago I was working in my first job, in a two person embedded development company. One day my boss (the hardware guy) came to me (the straight out of university software guy) and announced he had found the ultimate solution to our software development problems. We jumped in his car and went to visit a company he insisted knew the one true way to avoid all the usual productivity problems. It was an amusing and impressive visit that has stuck in my mind. The company we visited developed very prosaic equipment for gas dispensing and metering applications or somesuch. The cool thing was that all the engineers were apparently barefoot hippies. The uber software god there was about 14 years old, he was actually still a schoolboy, the son of the development boss. I can't remember whether we waited for the son to join the team at 4pm or so that day.

The point of my rambling story was that these guys really could do amazing things, all with Forth. In those pioneer days developing embedded software had some challenges that would be completely foreign to a contemporary developer, used to calling on the resources of a global internet connected community. In those days resources arrived by mail. In my part of the world, you would do something like order a rudimentary cross assembler, and then wait weeks for the product to arrive on a floppy disk. In the meantime you would plan how you were going to debug your app with an oscilloscope. However these Forth guys were way ahead of the game. For example, given a totally new CPU they could wirewrap a rudimentary host system, and roll their own native embedded Forth development system for the new chip, using nothing more than the technical reference manual for that chip, in less than a day. (The innermost primitives only were machine dependent, and they were so few in number that the task was manageable with hand assembled machine code).

Unfortunately at the time I simply didn't have the skill or confidence to pick up their approach and run with it. Years later the company had allowed new product development to whither but were still selling the old products as a cash cow. Someone decided there was scope to do something new with the product line and hired a friend of mine to take a look at the original source code. Last I heard he was busily converting it all to C, which is a shame in a way.

link|flag
vote up 2 vote down

Notation Reverse Polish I Hate

link|flag
vote up 2 vote down

Forth is perfect for writing code running in small microcontrollers. For example, rforth1 targets Microchip PIC 18Fxxx family and generates very efficient native code for those microcontrollers.

link|flag
vote up 1 vote down

The greatest benefit that I derived from learning FORTH early in my career is the ability to read PostScript. Very similar.

link|flag
vote up 2 vote down

Not for a couple of years.

I did have to work with a very strange forth dialect on some legacy products a few years ago.

And in the past I've used it as an environment for testing and verifying hardware (particularly accessing peripherals while they were still under development). Absolutely fantastic in that environment as it's all self contained, and you don't have to go upgrading firmware every time you want to do something new.

link|flag
vote up 2 vote down

Sun's OpenBoot used Forth in a boot firmware environment. I worked on FCode ethernet drivers to allow the Sparcstation to boot itself over the network.

Apple used the same system in later models of the PowerPC macintosh.

link|flag
vote up 2 vote down

I happen to be a odd bird -- one that loves the Forth language. I have coded in Forth in a embedded system, and on a Ultrasound machine, and a control system for building environments. It has been a while, and I am always looking for applications that are using this language. Unfortunately it's use has been limited. If you get a chance check out Chuck Moore's interview on his newest Forth engine. It will be interesting to see where his newest chip turns up. If you have questions in regards to your embedded app. I would be happy to help when possible. a-waden@microsoft.com -- Hope the spelling is ok

link|flag
vote up 4 vote down

I wrote a few Palm OS apps with Quartus Forth. It was fun, and learning Forth was a great intellectual workout, but I don't think I'd use Forth again.

As to whether anybody uses it for embedded development, you can check with FORTH, Inc.. They stay in business somehow.

I'd say that Forth is similar to Lisp/Scheme, in that learning it exposes you to ways of thinking that will make you a better programmer, but it is unlikely you are going to make a living using it on real-world projects.

link|flag
you forgot to say "sadly" - it is unlikely you are going to make a living using it on real-world projects :-/ – Andy Dent Nov 19 at 2:37
vote up 3 vote down

FreeBSD does, in its bootloader. See this paper.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.