EForth1
eForth on Arduino UNO - interactive to your app. Support Pin Change and Timer interrupts, EEPROM turnkey system.
Install / Use
/learn @chochain/EForth1README
eForth1 - eForth for Arduino UNO
Dr. Chen-Hanson Ting, the name often associated with eForth and one of the inspiring figures of Forth community, wrote:
In all these years, I have thought that the eForth Model is a good model useful for all different processors and microcontrollers, and for all different applications. It is a very simple model for anybody who like to learn Forth and to use it for their own applications.
In 2011, Dr. Ting created <a href="https://chochain.github.io/eForth1/ref/328eForth.pdf" target="_blank">328eForth</a> to run Forth on Arduino UNO and wrote in his ceForth_33 document:
I was attracted to Arduino Uno Kit and ported eForth to it as 328eForth...writing to flash memory, I had to take over the bootload section which was monopolized by Arduino IDE...I extended Forth dictionary in the RAM memory. It worked. ...., it was only a teaser to entice new people to try Forth on Arduino Uno.
Personnally, I enjoyed the beauty of working on something small and simple, so decided to pick up Dr. Ting's eForth Model to push it beyond being a teaser. Here we go...
What is eForth1?
- An eForth for Arduino UNO/Nano implemented in C.
- .ino sketch file can be openned in Arduino IDE, no programmer to overwrite bootloader needed.
- Has 16-bit cells and stacks.
- Can read/write Arduino GPIO pins.
- Supports Arduino Timer and Pin Change Interrupts.
- Has C API to interface with user defined functions written in .ino.
- Can save/restore app to/from EEPROM.
- Can be embeded with other Arduino applications.
- Can become a turnkey system booting from saved EEPROM or enscripted Forth code.
How to install eForth1?
-
From Arduino IDE's Library Manager
Make sure you've hooked up one of Arduino Nano/Uno, or a development board that hosts ATmega328
> from Arduino IDE > Tools > Manage Libraries, enter FORTH in search box
> find eForth1 in the short list, select the latest version, and click the Install button
> from Files > Examples, find eForth1 in Examples from Custom Libraries at very buttom section
> load one of the eForth1 examples, such as 0_hello
> open Serial Monitor, set baud rate to 115200, and line ending to Both NL & CR
> hit compile and upload. You should see the 'ok' prompt
-
Or, from GitHub directly, if you prefer managing source codes manually
<p/>> git clone <a href="https://github.com/chochain/eForth1" target="_blank">https://github.com/chochain/eForth1</a> onto your local Sketch directory
> copy examples/0_hello/0_hello.ino from sub-directory, then rename it as eforth1.ino
> open eforth1.ino with Arduino IDE, and setup your Nano/Uno (or ATmega328) development board
> in eforth1.ino, change the <em>#include <eforth1.h></em> to <em>#include "./src/eforth1.h"</em>
> open Serial Monitor, set baud rate to 115200, and line ending to Both NL & CR
> compile and upload, you should see the 'ok' prompt
Hopefully, thing goes well and you get something like the snip below if eForth1 is uploaded successfully.
-
<img src="https://chochain.github.io/eForth1/images/eforth1_init_snip.png" width=400><br/>
Now type WORDS in the input bar and hit <return> to list all the words supprted by eForth1. It is ready to serve your future fun projects.
-
<img src="https://chochain.github.io/eForth1/images/eforth1_words_snip.png" width=400>
Different from Dr. Ting's
- Instead of the original 32-bit, CELL is 16-bit, and prmitives are 8-bit opcodes.
- To save space, primitives are compiled as bytecode and composite words are flagged address pointers.
- For speed, use direct threading model instead of original subroutine threaded,
- Instead of raw GPIO port read/write, eForth1 calls Arduino library functions i.g. PINMODE = pinMode, IN = digitalRead, OUT = digitalWrite, ...
- Support multi-tasking. Timer2 sliced at 1ms as the heart-beat with 8 ISR handler slots provided which Forth words can be assigned to. Timer1 is left free for Servo or other libraries.
- Support Delay (sleep). It does not pause the MCU nor does it interfer with interrupts. 16-bit delay max 32767ms, longer delay can be have by defining word that loops.
- Support Pin Change Interrupts. ISR handler slots are provided for each of Port B,C, and D.
- Support 32-bit clock (in ms). It takes 2 cells off 16-bit stack. Arithmetics for double are also provided. DNEGATE, D+, or D- plus the conversion words D>S, S>D.
Demos
-
LED blinker (assume you have a blue LED on pin 6, or try <a href="https://wokwi.com/projects/356793878308297729" target="_blank">this Wokwi project</a>)
<pre> > 1 6 PINMODE⏎ \ set pin 6 for OUTPUT, i.e. pinMode(6, OUTPUT=1) > : blue 6 IN 1 XOR 6 OUT ;⏎ \ create a word to toggle the blue LED > : blink FOR blue 500 DELAY NEXT ;⏎ \ create a word to blink (i.e. 500ms delay) > 9 blink⏎ \ run 10 cycles (i.e. 9,8,7,...,2,1,0 to on/off 5 times) </pre> -
Timer Interrupt Service Routine (a red LED on pin 5)
<pre> > 1 5 PINMODE⏎ \ set pin 5 for OUTPUT > : red 5 IN 1 XOR 5 OUT ;⏎ \ create an interrupt service routine (just a regular word) > ' red 200 0 TMISR⏎ \ make the ISR ticked every 0.2 seconds (= 200ms) > 1 TIMER⏎ \ enable timer, now you should see red LED blinking continuously > 19 blink⏎ \ let's have them both blink (blue LED 10 times) </pre>|Blinker|Interrupt Service| |:--|:--| |<a href="https://youtu.be/--iLaLC5cG0" target="_blank"><img src="https://img.youtube.com/vi/--iLaLC5cG0/1.jpg" width=200></a>|<a href="https://youtu.be/gr3OVOcgF4Q" target="_blank"><img src="https://img.youtube.com/vi/gr3OVOcgF4Q/1.jpg" width=200></a>|
-
Drives 8 Servos. Demo at <a href="https://wokwi.com/projects/356866133593965569" target="_blank">this Wokwi project</a>
-
Controls 4-legged Robot (8 servos) with ultrasound and IR remote. Demo code in ~/examples/8_kame
|Ultrasound Ranging|Walking| |:--|:--| |<a href="https://youtu.be/pvBo-G87Fzw" target="_blank"><img src="https://img.youtube.com/vi/pvBo-G87Fzw/1.jpg" width=300></a>|<a href="https://youtu.be/-zBb82UFZpA" target="_blank"><img src="https://img.youtube.com/vi/-zBb82UFZpA/default.jpg" width=300></a>|
-
Bluetooth (HC-05) communication. Demo code in ~/examples/9_bluetooth
-
WiFi (nRF24L01s) communication. Demo code in ~/examples/11_rf <img src="https://chochain.github.io/eForth1/images/eforth1_rf_comm.jpg" width=400>
Benchmark
- Classic 1 million cycles <pre> > : inner 999 FOR 34 DROP NEXT ;⏎ \ inner loop (put 34 on stack then drop it) > : outer 999 FOR inner NEXT ;⏎ \ create the outer loop > : bench CLOCK DNEGATE outer CLOCK D+ ;⏎ \ CLOCK returns a double value > bench⏎ \ benchmark the 1000x1000 cycles > 25492 0 ok> \ 25492ms =~ 25.5us/cycle (with one blinking ISR running in the background) </pre>
eForth1 Virtual Machine, User Variables, Dictionary and Standard FORTH words
See details in ~/docs/README here
eForth1 Arduino specific words
Digital and Analog IO
Instead of accessing memory mapped address (i.e. 0x20-0x3F), eForth1 uses the Arduino C functions to access GPIO pins. Not the preference by bare metal people but fast enough mostly and easier for new comers.
| Word | Usage | Function | |:--------|:-----------------------|:----------------------------------------| | PINMODE | ( f p -- ) | pinMode(f, p) | | IN | ( p -- 1|0 ) | digitalRead(p) | | OUT | ( 1|0 p -- ) | digitalWrite(p, 1|0) | | AIN | ( p -- n ) | n = analogRead(p), n:0~1023 | | PWM | ( n p -- ) | analogWrite(p, n), n:0~255, duty cycle* | | MAP | ( l0 h0 l1 h1 x -- y ) | y = map(x, l0, h0, l1, h1) | | CLOCK | ( -- ul uh ) | fetch millis(), in double precision | | DELAY | ( n -- ) | delay n milliseconds |
*Note1: Since Timer0 (pin 5, 6) is used for clock and Timer2 (pin 3, 11) is used for timer interrupt, eForth1 can only safely use Pin 9 and 10 for PWM (unless you don't need CLOCK or DELAY). Other pins behave like digital pins. Anything above and equals to 128 is treated as HIGH, below as LOW. On the other hand, AIN does not use any timer. It can be safely used with all Analog Pins.
*Note2: AIN can read Arduino UNO/Nano pin A0~A7. However, the max frequency and accuracy are affected by Timer prescaler.
Timer and Pin Change Interrupts
eForth1 uses a data structure to setup ISRs and capture interrupts. It supports 11 ISRs (interrupt service routines). 8 for Timer and 3 for Pin Change.
| Word | Usage | Function | |:------|:--------------|:-------------------------------------------| | TMISR | ( xt t n -- ) | make xt Timer ISR[n], ticks every t ms | | TIMER | ( 1|0 -- ) | 1: enable, 0: disable Timer2 Interrupt | | PCISR | ( xt p -- ) | make xt when p Pin Changes | | PCINT | ( n -- ) | 1: enable, 0: disable Pin Change Interrupt |
Note:
- Arduino UNO/Nano Timer2 is used for interrupt timing. It ticks at 1 millisecond as the base freq for timer interrupts.
- Timer0 is used for delay, and
- Timer1 is not used. It is delibrately left for other Arduino libraries such as servo driving.
- Pin Changes are flagged by port-D (pin D0-D7), Port-B (pin D8-D13), and Port-C (pin A0-A5).
