Re: [Amforth] successful compilation with avra

2023-08-28 Thread Jan Kromhout via Amforth-devel
Hello, Seems simple to use the avra compiler. Is it posible to show example how the build is doing? Cheers, Jan Verstuurd vanaf mijn iPad > Op 28 aug. 2023 om 09:02 heeft Mark Roth het volgende > geschreven: > > You are using the same repo I was for avra Tristan. I just cloned the >

Re: [Amforth] how to use bitmask:

2019-07-03 Thread Jan Kromhout via Amforth-devel
Hello, After trying for a while, I failed to get these three words together. Do not master the bitmask. Despite the examples and the email. Can someone please help me with this. This is my simple code. The source is from flashForth. The tree words are setBitmask,clearBitmask and testBitmask.

[Amforth] how to use bitmask:

2019-06-17 Thread Jan Kromhout via Amforth-devel
Hello, I need to do a bitmask on register. These are the constants, and mask $24 constant ddrb $25 constant portb \ bit masks %000100 constant mSS ( PB2 ) %10 constant mSCK ( PB5 ) I wont 1. to set the bits in ddrb with the bitmask mSS 2. to clear bits in portb with the bitmask mSCK In

Re: [Amforth] Need some help with the SPI

2019-06-09 Thread Jan Kromhout
Dear Peter This is the code I need to model in amForth // enable SPI.Master SPI.setDataMode(SPI_MODE0); SPI.setBitOrder(MSBFIRST); SPI.setClockDivider(SPI_CLOCK_DIV4); SPI.begin(); What to do with \ check SPI device datasheet for mode settings : spi.setmode ( spi-mode -- ) spi.mode

Re: [Amforth] Need some help with the SPI

2019-06-08 Thread Jan Kromhout via Amforth-devel
X if that is of any help. > > Kind regards, > > Tristan > > > On 07Jun19 21:37, Erich Wälde wrote: >> Hello Jan, >> >> Jan Kromhout via Amforth-devel writes: >> >>> Hello Tristan,Erich >>> >>> This is far over my kn

Re: [Amforth] Need some help with the SPI

2019-06-07 Thread Jan Kromhout via Amforth-devel
> Op 7 jun. 2019, om 19:50 heeft Erich Wälde het volgende > geschreven: > > Hello Jan, > > > Jan Kromhout writes: > >> Hi Tristan, >> >> What to load in the right sequence to fellow the examples in >> http://amforth.sourceforge.net/TG/re

Re: [Amforth] Need some help with the SPI

2019-06-07 Thread Jan Kromhout
even: Hello Jan, A quick question first. You have built your AmForth hex files with words/spirw.asm ? Kind regards, Tristan On 07Jun19 17:06, Jan Kromhout via Amforth-devel wrote: Hello I have take a close look into SPI routines. I really not understand them. I need simple make a conn

Re: [Amforth] Need some help with the SPI

2019-06-07 Thread Jan Kromhout via Amforth-devel
gt; Kind regards, > > Tristan > >> On 07Jun19 17:06, Jan Kromhout via Amforth-devel wrote: >> Hello >> >> I have take a close look into SPI routines. >> I really not understand them. >> >> I need simple make a connection withe the arduino in amForth. >

[Amforth] Need some help with the SPI

2019-06-07 Thread Jan Kromhout via Amforth-devel
Hello I have take a close look into SPI routines. I really not understand them. I need simple make a connection withe the arduino in amForth. The basics I understand how to make a pin high or low etc. But I don’t know how to start to initialize the SPI etc. Can someone help me with this or give

[Amforth] I2C

2019-06-04 Thread Jan Kromhout
Hello, Ho do I set the parameters for the speed if the I2C to 400 kHz? Thanks for any help. : init_i2c ( --- ) \ init at 100 kHz i2c.prescaler/1 #72 i2c.init ; Thanks for any help. Cheers, Jan ___ Amforth-devel mailing list for

[Amforth] SPI interface on the arduino

2019-06-04 Thread Jan Kromhout via Amforth-devel
Hello, I need to read and write to the SPI interface (bus) on the arduino. (pin 10,11,12,13) Wich words are the best to use? Thanks for any help. Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/

Re: [Amforth] Problem loading hex file into 328p

2019-04-20 Thread Jan Kromhout via Amforth-devel
Hello, I use these with a pololu programmer v2.1 Laad de nieuwe versie: avrdude -p m328p -c avrispv2 -P /dev/tty.usbmodem00230362 -U efuse:w:0xFF:m -U hfuse:w:0xD9:m -U lfuse:w:0xFF:m -U flash:w:amforth.hex:i -U eeprom:w:amforth.eep.hex:i And it works great, no problems at all. Cheers, Jan

Re: [Amforth] Installation of most current version

2019-04-07 Thread Jan Kromhout via Amforth-devel
my old AVRIPSmkII programmer. I notice that > it's been obsoleted by Atmel! Can you suggest a more current model? > Thanks again! > Michael > K6MLE > > > > On 4/6/2019 11:35 AM, Jan Kromhout via Amforth-devel wrote: >> Hello Michael, >> >> amFor

Re: [Amforth] Installation of most current version

2019-04-06 Thread Jan Kromhout via Amforth-devel
Hello Michael, amForth has in the download the complete hex files! Cheers, Jan > Op 6 apr. 2019, om 20:20 heeft Michael Picco het > volgende geschreven: > > Hello, > > I am trying to get back to amForth after a hiatus (last used 5.2). > > Is there a set of compiling instructions suited

Re: [Amforth] ATmega4809 Curiosity Nano

2019-03-06 Thread Jan Kromhout via Amforth-devel
A nice board to play with it. What is the internal frequency? Found only that there is a 32k crystal mounted on the board. Cheers, Jan > Op 6 mrt. 2019, om 09:56 heeft Tristan Williams het > volgende geschreven: > > > I would like to try and see if I can get AmForth running on the >

[Amforth] Turnkey

2019-02-25 Thread Jan Kromhout
Hello, I have create a turnkey project, how can I remove the turnkey so it will not start at start-up? Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net

[Amforth] Error in example multitasking at amforth.sourceforge.net

2019-02-25 Thread Jan Kromhout via Amforth-devel
Hello, When I look to the example of multitasking I think something is wrong. This is the code at amforth.sourceforge.net : : starttasker task_demo task-init \ create TCB in RAM start-demo \ activate tasks job onlytask task_demo tcb>tid alsotask

Re: [Amforth] Soft Serial Port

2019-02-25 Thread Jan Kromhout
Tristan, What do you mean with “and a small sck period” Can you publish your code as an example how you have read your gps? With kindly regards, Jan Verstuurd vanaf mijn iPad > Op 17 feb. 2019 om 18:19 heeft Tristan Williams het > volgende geschreven: > > Jan, > >> Loading my Mega with

Re: [Amforth] Soft Serial Port

2019-02-17 Thread Jan Kromhout via Amforth-devel
project from your side. Will maybe a fix item into the repository of amforth. With kindly regards, Jan > Op 16 feb. 2019, om 22:07 heeft Jan Kromhout via Amforth-devel > het volgende geschreven: > > Tristian, > > Thank, I will start soon to explore this version. > Let

Re: [Amforth] Soft Serial Port

2019-02-16 Thread Jan Kromhout via Amforth-devel
GA 2560 are linked below > > https://www.mostlymostly.uk/post/2019.02.16/ > > Hope this helps and interested to hear how you get on. > > Best wishes, > Tristan > > > >> On 15Feb19 16:47, Jan Kromhout via Amforth-devel wrote: >> Tristan, >> >&

Re: [Amforth] Soft Serial Port

2019-02-15 Thread Jan Kromhout via Amforth-devel
e may be important with the Mega2560. I > used an avrisp2 compatible programmer and had no problems. However, I can > confirm that my usbtiny programmer couldn't program my Mega2560 successfully. > > Best wishes, > Tristan > > > > > > > > > On 15Feb19 14:20,

Re: [Amforth] Soft Serial Port

2019-02-15 Thread Jan Kromhout
Tristan, Found the hex files for the Mega, but don’t found the fuse values. Please can you help me out with these. Cheers, Jan > Op 15 feb. 2019, om 13:21 heeft Jan Kromhout het > volgende geschreven: > > Tristan, > > Thank. Where to find the hex files for the m

Re: [Amforth] Soft Serial Port

2019-02-15 Thread Jan Kromhout
t; > Jan, > > There is a link "source" in the text, but below is the url from the > link. > > https://www.mostlymostly.uk/files/source/uart1.forth > > Tristan > > >> On 15Feb19 11:15, Jan Kromhout via Amforth-devel wrote: >> Hi Tristan, >&

Re: [Amforth] Soft Serial Port

2019-02-15 Thread Jan Kromhout via Amforth-devel
Hi Tristan, How can I acces the source, the link shows only an overview! Cheers, Jan Verstuurd vanaf mijn iPad > Op 15 feb. 2019 om 09:21 heeft Tristan Williams het > volgende geschreven: > > > > I've linked (below) some AmForth words I've written to help me use the > second hardware

[Amforth] Soft Serial Port

2019-01-24 Thread Jan Kromhout via Amforth-devel
Hello, Is soft-serial implemented in amForth. I wont to connect a serial device to the arduino. Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net

Re: [Amforth] Butterfly

2019-01-20 Thread Jan Kromhout via Amforth-devel
> Hi Jan, > > in amforth 6.3 there is a folder .../appl/avr-butterfly/ > > Regards > > Martin > > > > Am Samstag, 19. Januar 2019, 19:00:25 CET schrieb Jan Kromhout: >> Hello, >> >> Is there an amForth hex

[Amforth] Butterfly

2019-01-19 Thread Jan Kromhout
Hello, Is there an amForth hex file for the Butterfly available? Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/amforth-devel

[Amforth] Error

2019-01-18 Thread Jan Kromhout
Hello, Where can I find some description of the used error numbers? I have now -4 Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/amforth-devel

Re: [Amforth] String

2019-01-18 Thread Jan Kromhout
Thanks, it is working now. Next time I will read more careful! Cheers, Jan > Op 18 jan. 2019, om 16:01 heeft Richard Burden > het volgende geschreven: > > Jan > > The hint on the suggested page is ITYPE. > > Regards > Richard > > > On Fri., 18

Re: [Amforth] String

2019-01-18 Thread Jan Kromhout via Amforth-devel
Hi Matthias, I have read that but it is not working. : test s" test " type ; => no output : test s" test “ ; => no output I don’t know what is wrong! Jan > Op 18 jan. 2019, om 15:50 heeft Matthias Trute het volgende > geschreven: > > Hi Jan, > >> I try this and notting is

[Amforth] String

2019-01-18 Thread Jan Kromhout via Amforth-devel
Hello, I try this and notting is happens. How do I use this to print a string when I run a compiled word? : test s" test " type ; Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net

[Amforth] microsecond delay

2019-01-03 Thread Jan Kromhout
Hello, Is in AmForth a microsecond delay available? Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/amforth-devel

[Amforth] Reading from a TM1638

2019-01-03 Thread Jan Kromhout
hello, The best wishes for 2019. I’m try to get info from a TM1638 ( reading button status). This is my simple routine, I read the lower byte first! The code is simple and is straight forward Is the code correct? Does anyone have experience whit this? variable received_byte : receiveByte (

[Amforth] Assembler routines

2018-12-26 Thread Jan Kromhout
Dear all When I look to this part of the code of the double add, is it correct that temp4 to temp 7 is the second part of d+, but how to get the first part? Thanks again for any help. Cheers, Jan ld temp2, Y+ ld temp3, Y+ ld temp4, Y+ == second item from the stack == ld

Re: [Amforth] Need some help to construct an .asm file

2018-12-25 Thread Jan Kromhout via Amforth-devel
Thanks for the rsponse. Merry Christmad, Jan Verstuurd vanaf mijn iPad > Op 25 dec. 2018 om 10:36 heeft Matthias Trute het volgende > geschreven: > > Am Montag, den 24.12.2018, 17:51 +0000 schrieb Jan Kromhout: >> Hello, >> >> I wont to write my own routine i

[Amforth] Need some help to construct an .asm file

2018-12-24 Thread Jan Kromhout
Hello, I wont to write my own routine in assembler as a learning goal. Have looked into a lot of asm routines, but can’t figure out how to add two doubles into R16 to R23 and after the calculation put R16 to R19 back to the stack. Can I use R16 to R19 freely for my own use, or should I take

Re: [Amforth] Assembler listing of some words

2018-12-21 Thread Jan Kromhout via Amforth-devel
Hello Erich, This was helpfull Cheers, Jan > Op 21 dec. 2018, om 17:15 heeft Erich Wälde het > volgende geschreven: > > Hello Jan, > > Jan Kromhout via Amforth-devel writes: > >> Hello, >> >> I was looking into some words (.asm). >> Can so

[Amforth] Assembler listing of some words

2018-12-21 Thread Jan Kromhout via Amforth-devel
Hello, I was looking into some words (.asm). Can someone explain me why the content of the first data word is different. PLUSSTORE => .dw $ff02 RSHIFT => .dw $ff06 PLUS => .dw $ff01 Cheers, Jan ___ Amforth-devel mailing list for

Re: [Amforth] get-recognizer & set-recognizer

2018-12-21 Thread Jan Kromhout via Amforth-devel
raw value to > the "linear" value by applying a correction. > > \ H_25 [%] = c1 + c2*Hraw + c3*Hraw^2 > \ 12bit:c1=-4 c2=0.0405 c3=-2.8e-6 > > I have scaled the calculation by 10^7 and thus eliminated the need to > work with floating point. > >

Re: [Amforth] get-recognizer & set-recognizer

2018-12-21 Thread Jan Kromhout
Op 21 dec. 2018, om 10:55 heeft Jan Kromhout het > volgende geschreven: > > Hello, > > Try to load the Floating point package. > How do, or find I the words get-recognizer and set-recognizer? > > What is the meaning of the word "place-rec" and what i

[Amforth] get-recognizer & set-recognizer

2018-12-21 Thread Jan Kromhout
Hello, Try to load the Floating point package. How do, or find I the words get-recognizer and set-recognizer? What is the meaning of the word "place-rec" and what is the input? Thanks for any help. Cheers Jan |S| 930|: place-rec ( xt -- ) |S| 931| get-recognizer |E= ?? -13 14

Re: [Amforth] Floating point

2018-12-19 Thread Jan Kromhout via Amforth-devel
ords/get-recognizer.asm" .include "words/set-recognizer.asm" Please can someone help me out with this? Cheers, Jan > Op 18 dec. 2018, om 20:40 heeft Jan Kromhout via Amforth-devel > het volgende geschreven: > > Hello, > > I would like to play with

[Amforth] Floating point

2018-12-18 Thread Jan Kromhout via Amforth-devel
Hello, I would like to play with the floating point package. Has anyone integrated the floting point in AmForth. Can not assemble a version for myself. Can someone please help me with a version for the Arduino (hex file). I’am running now version 6.7 Cheers, Jan

Re: [Amforth] Flashing AmForth to Arduino Leonardo

2018-12-13 Thread Jan Kromhout
e reporting? Kind regards, Tristan On 13Dec18 10:09, Jan Kromhout wrote: Hi, Flashing the Arduino Uno is giving no problems. Try to flash the Leonardo. I’m using the Pololu AVR programmer v2.1 This is my command. MacBook-Pro-van-Jan-10:avrdude jankromhout$ avrdude -p m32u4 -c avrispv2 -P /dev/tty.u

[Amforth] Flashing AmForth to Arduino Leonardo

2018-12-13 Thread Jan Kromhout
Hi, Flashing the Arduino Uno is giving no problems. Try to flash the Leonardo. I’m using the Pololu AVR programmer v2.1 This is my command. MacBook-Pro-van-Jan-10:avrdude jankromhout$ avrdude -p m32u4 -c avrispv2 -P /dev/tty.usbmodem00230362 -U efuse:w:0xFF:m -U hfuse:w:0xD9:m -U

Re: [Amforth] amforth-shell.py

2018-12-07 Thread Jan Kromhout
Hello, Problem found, when loading something went wrong which amforth was not correct anymore! cheers, Jan > Op 7 dec. 2018, om 14:24 heeft Jan Kromhout het > volgende geschreven: > > Hello, > > > After running for several weeks amforth-shell.py, this after

[Amforth] amforth-shell.py

2018-12-07 Thread Jan Kromhout
Hello, After running for several weeks amforth-shell.py, this afternoon it is stopped with an Unexpected exception. Even after resetting the mac or install a new amforth-shell.py this is not working. Can someone help me with this Cheers Jan Last login: Fri Dec 7 14:17:07 on console

Re: [Amforth] buffer:

2018-12-06 Thread Jan Kromhout
Last question for this evening. When I make a variable : variable buffer 1024 allot => is this in flash? Thanks for the great help this evening. Met een vriendelijke groet, Jan > Op 6 dec. 2018, om 20:18 heeft Jan Kromhout het > volgende geschreven: > > Martin, &

Re: [Amforth] buffer:

2018-12-06 Thread Jan Kromhout via Amforth-devel
Martin, Thanks. When I construct this and make a buffer of 1024 and after the buffer I create a dummy so I can calculate the difference. ‘ dummy - ‘ buffer = 1029. Thats means there is a space of 1024 bytes or words available. How can I store/read a byte or word to the location? This I have

Re: [Amforth] buffer:

2018-12-06 Thread Jan Kromhout via Amforth-devel
ber 2018, 20:06:45 CET schrieb Jan Kromhout via > Amforth-devel: > > Maybe this helps: > > Variable buffer 1024 allot > > This gives a buffer in RAM > > Or do you need it in FLASH? > > tot ziens > > Martin > > > >> Thanks Martin, &g

Re: [Amforth] buffer:

2018-12-06 Thread Jan Kromhout
Martin, When I look to this [ buffersize 2 * 16 / ] literal 0 do than I get a very low value. Is it correct what you have written? Cheers, Jan Op 6 dec. 2018, om 20:03 heeft Martin Bitter mailto:martin.bit...@t-online.de>> het volgende geschreven: [ buffersize 2 * 16 / ] literal 0 do

Re: [Amforth] buffer:

2018-12-06 Thread Jan Kromhout via Amforth-devel
BTW You'r marching through 1009 * 16 words in memory - is that what you > want? > > Am Donnerstag, 6. Dezember 2018, 19:46:33 CET schrieb Jan Kromhout via > Amforth-devel: >> Hello, >> >> I have make a buffer, after loading the program I aspect that all > location

[Amforth] buffer:

2018-12-06 Thread Jan Kromhout via Amforth-devel
Hello, I have make a buffer, after loading the program I aspect that all locations will be zero. When take a look there are some places with values! /Users/jankromhout/Documents/amforth-6.7/tools (ATmega328P)> clearBuffer ok (ATmega328P)> .Buffer 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Re: [Amforth] Forward declaration for recursive word

2018-12-05 Thread Jan Kromhout
Thanks Matthis, It is working now. Do you know if the construction “ TO and VALUE “ is available for amForth? Cheers Jan > Op 5 dec. 2018, om 19:28 heeft Matthias Trute het volgende > geschreven: > > Am Mittwoch, den 05.12.2018, 13:50 +0100 schrieb Jan Kromhout via >

[Amforth] Forward declaration for recursive word

2018-12-05 Thread Jan Kromhout via Amforth-devel
ce”. When I look for this word in the dictionary I can’t find it. Do I a search with grep -nr ‘iplace’ amforth-6.7 grep is find only dup 1- swap @i here iplace here count ( copy to temporary ram) What is this iplace? Cheers, Jan Kromhout ___ A

[Amforth] PROGMEM

2018-12-03 Thread Jan Kromhout
Hello, I have this code in my program (Arduino IDE). // Standard ASCII 5x7 font static const unsigned char font[] PROGMEM = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x5B, 0x4F, 0x5B, 0x3E, 0x3E, 0x6B, 0x4F, 0x6B, 0x3E, 0x1C, 0x3E, 0x7C, 0x3E, 0x1C, How do I translate that to amForth?

[Amforth] buffer: with memory error????

2018-11-13 Thread Jan Kromhout
Hello, I are struggle with the buffer: As you can see I create two array’s. I expect that when I initialize this I can read the value. It's not true. As you can see, values are overwritten. Am I doing something wrong? Cheers, Jan \ Segment byte maps for numbers 0 to 9 10 buffer:

Re: [Amforth] My first I2C connection with amForth

2018-11-12 Thread Jan Kromhout
018, om 19:30 heeft Jan Kromhout het > volgende geschreven: > > Hi, > > After a few days of trial and error, I finally managed to control the 12c-LCD > mine. > A stupid interpretation caused the delay, eventually solved. > My tests are running well. > > But

Re: [Amforth] I2C Generic

2018-11-11 Thread Jan Kromhout
ilto:h...@tjnw.co.uk>> het volgende geschreven: Jan, This device is need only one byte per command, so I have used i2c.c!. Do you ave a clou? but it might be expecting two single bytes, one immediately after the other. Try Number digit 2 7SEG i2c.n! Best wishes, Tristan On 10Nov18 17:27,

Re: [Amforth] I2C Generic

2018-11-10 Thread Jan Kromhout
eed only one byte per command, so I have used i2c.c!. >> Do you ave a clou? > > but it might be expecting two single bytes, one immediately after the other. > > Try > > Number digit 2 7SEG i2c.n! > > Best wishes, > Tristan > > > > On 10Nov18 17:27, J

Re: [Amforth] Clock Works

2018-11-10 Thread Jan Kromhout via Amforth-devel
Hello, Find the source!! Cheers, Jan > Op 10 nov. 2018, om 16:26 heeft Jan Kromhout via Amforth-devel > het volgende geschreven: > > Hello, > > Where can I download the software of the articles of Clock Works. > The link https://wiki.forth-ev.de/doku.php/projects

Re: [Amforth] I2C Generic

2018-11-10 Thread Jan Kromhout via Amforth-devel
on't know the Gravitech shield > but if you are sending multiple bytes i2c.n! might be useful. > > Best wishes, > Tristan > > On 09Nov18 19:21, Jan Kromhout wrote: >> Hi, >> >> This is my first step on the I2C road. >> I have a Gravitech shield for the A

Re: [Amforth] I2C Generic

2018-11-09 Thread Jan Kromhout
Hello Erich, The i2c scanner is seeing $38, should i still shift to $70? Cheers Jan Verstuurd vanaf mijn iPad > Op 9 nov. 2018 om 22:30 heeft Jan Kromhout via Amforth-devel > het volgende geschreven: > > Thanks Erich, > > Do I need this to start ev

Re: [Amforth] I2C Generic

2018-11-09 Thread Jan Kromhout via Amforth-devel
hift it by one position to "$70". > > Just an idea. > Cheers, > Erich > > Jan Kromhout writes: > >> Hi, >> >> This is my first step on the I2C road. >> I have a Gravitech shield for the Arduino, that work well. >> The code is very simple,

Re: [Amforth] Fuse settings for Leonardo

2018-11-09 Thread Jan Kromhout
Thanks again Matthias! > Op 9 nov. 2018, om 18:57 heeft Matthias Trute het volgende > geschreven: > > Am Freitag, den 09.11.2018, 15:49 +0000 schrieb Jan Kromhout: >> Hi, >> >> I wont testing amForth on the Leonardo. >> What are are the fuse settings

[Amforth] Fuse settings for Leonardo

2018-11-09 Thread Jan Kromhout
Hi, I wont testing amForth on the Leonardo. What are are the fuse settings for the Leonardo? Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net

[Amforth] c,

2018-11-06 Thread Jan Kromhout
Hi, When I use for example gforth I can use the c, word. I wont to use this also in amForth in combination with c@. The word c, is not available, how to do this. I think this is a good way to use not so much memory. Thanks for any help. Cheers, Jan \ Segment byte maps for numbers 0 to 9

Re: [Amforth] External Interrupt Mask Register

2018-11-05 Thread Jan Kromhout via Amforth-devel
Tristan, I have found the datasheet. Cheers, Jan Verstuurd vanaf mijn iPad > Op 5 nov. 2018 om 11:26 heeft Jan Kromhout het > volgende geschreven: > > Tristan, > > Thanks again for your hulp. > Please can you provide me the link to download the datasheet your me

[Amforth] Question about Timer

2018-11-03 Thread Jan Kromhout via Amforth-devel
I agree with that. I came to the same conclusion. Checked yesterday also the code and found no action on this address. Tristian gave me a hint, and I will try it. Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/

[Amforth] Question about Timer-1

2018-11-02 Thread Jan Kromhout via Amforth-devel
Hi, I have take a look into the excellent work of Erich Walde “Clock Works”. When I walk trough the code I see that Timer1 is used freely. Is it correct that I can use this timer with his interrupts freely without any harm/restrictions for Amforth? Cheers, Jan

[Amforth] Thanks

2018-10-31 Thread Jan Kromhout via Amforth-devel
Hi, Thanks all, information was very helpful. Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/amforth-devel

[Amforth] Need some help

2018-10-29 Thread Jan Kromhout
Hi, I have this simple Arduino program thats put a PWM signal to port 9 of the Arduino. Checked with my RIGOL and the PWM is changed when I change the value of ppm. #define PWM_A 9 /* Pin-9 on Arduino Board */ void setup() { Serial.begin(115200); int pwm = 200; /* duty 50% */

[Amforth] the word "see"

2018-10-26 Thread Jan Kromhout
Hi, I have installed the word “see" When I look to one of my former installed words I get this > see toggle ?? -4 10 What is wrong with “see” Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net

[Amforth] Coolterm as terminal

2018-10-26 Thread Jan Kromhout via Amforth-devel
Tristan, I’m using an original Arduino-Uno The next thing is to figure out how to include some of the .frt files. Docu is hard to understand. It is working now with MacBook-Pro-van-Jan-6:tools jankromhout$ ./amforth-shell.py -p /dev/tty.usbmodem1421 -s 38400 -i —rtscts I greatly

[Amforth] Coolterm as terminal

2018-10-25 Thread Jan Kromhout via Amforth-devel
Tristan, Thanks for the help this day. It is “working” but wen I type in a command a get an error back from amForth. See my output. Anny idee what is going wrong? Cheers Jan Last login: Thu Oct 25 18:54:18 on ttys000 MacBook-Pro-van-Jan-6:~ jankromhout$ cd

[Amforth] Coolterm as terminal

2018-10-25 Thread Jan Kromhout via Amforth-devel
Thanks Tristan, When I run it get the error “no module named serial” Check my versions of Python and when I type "import serial” there is no problem. So I don’t know how to fix this! Cheers, Jan ___ Amforth-devel mailing list for

[Amforth] Coolterm as terminal

2018-10-24 Thread Jan Kromhout via Amforth-devel
Tristan, I have tried to get it working without any result, I use macOS High Sierra. Do you have tips to get it running? Do you use Python 2 or 3 Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/

[Amforth] Coolterm as terminal

2018-10-24 Thread Jan Kromhout via Amforth-devel
Hello, I use Coolterm as terminal. Is it posible to use “include" to load several screens with one command? This as example like this #include install/2-fetch.frt #include install/2-store.frt #include install/quotations.frt #include install/search-name.frt #include install/find-name.frt

[Amforth] How to make a Full system

2018-10-24 Thread Jan Kromhout via Amforth-devel
Hi, I try to compile a full system, but most of the time I don’t know the sequens of loading the individual files. Is there some overview how to load these files (sequence)? When the building system is complete is it possible to make a backup of the system and load this afterwards (make a

[Amforth] Arduino Nano

2018-10-24 Thread Jan Kromhout
Peter, With the same fuse settings as you send before for the Arduino Uno? Do you have assembled the source by your self, or taken from Github? Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/

[Amforth] Arduino nano

2018-10-23 Thread Jan Kromhout via Amforth-devel
Hi, I have an Arduino Nano 328P, can I load it with the forth of the Arduino Uno? If posible can I use the same fuse settings as my Arduino Uno? Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/

[Amforth] Finding files

2018-10-22 Thread Jan Kromhout
Hello, Where can I find the definition files of the words “SEE, .S, DUMP” Cheers Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/amforth-devel

[Amforth] Setting of the fuses Arduino Ono

2018-10-16 Thread Jan Kromhout
When loading AmForth into my Arduino Uno I get an error on the end. My question is what to do in that case? Are my settings of the fuse one? Cheers, Jan avrdude: verifying ... avrdude: verification error, first mismatch at byte 0x 0xfd != 0x05 avrdude: verification error; content

[Amforth] Coolterm on the Mac

2018-10-16 Thread Jan Kromhout
Thanks Peter for the response. How do you have setup Coolterm? When I try to delete a character two dots are printed! Thanks for any help. Jan Kromhout Hellevoetsluis-NL ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel

[Amforth] How to download complete set of data from source forge.net

2018-10-16 Thread Jan Kromhout via Amforth-devel
Hello, In https://sourceforge.net/p/amforth/code/HEAD/tree/releases/ <http://sourceforge.net/> I found the release 6.7. How can I complete download this in one to my computer? Thanks for any help. Jan Kromhout Hellevoetsluis-NL ___ Amforth

[Amforth] A good editor/terminal for MacOSX

2018-10-15 Thread Jan Kromhout via Amforth-devel
Hello, What is a good editor/terminal to type in Forth, and also send the Forth files to the Arduino? Thanks for any help. Jan Kromhout Hellevoetsluis-NL ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net

[Amforth] Question

2018-10-15 Thread Jan Kromhout via Amforth-devel
Hello, It’s a while ago that I implemented AmForth (4.8) on a Arduino. Now I am a little confused. Where to find the source with all libs like postpone.frt. Cannot find them. Please can you help me out? With kindly regards, Jan Kromhout Hellevoetsluis-NL

Re: [Amforth] A shout out to Keith Amidon for amforth-shell.py

2013-12-06 Thread Jan Kromhout
Hello, Can I use this Phyton script also under windows? Cheers, Jan Op 5 dec. 2013, om 19:28 heeft Enoch i...@hotmail.com het volgende geschreven: craig and heather cal...@gmail.com writes: I just want to say thanks to Keith for his work on this great tool. I had never run Python in my

[Amforth] Flash size exceeded

2013-11-23 Thread Jan Kromhout
Hello, When I activate .include dict_w1.inc the next error apears in avr-studio 5. What to do to include this? Error 7 *** Flash size exceeded, please edit your dict_appl_core file to use less space! Aborting. C:\amforth-5.1\core\amforth.asm 21 0 AMFORTH5P1_328P Jan Kromhout Hellevoetsluis

[Amforth] where to find the examples on the repositry

2013-11-22 Thread Jan Kromhout
Hello, Please can some one tell me where to find the examples, I forget the link! Thanks for any help. Regards, Jan Kromhout Hellevoetsluis-NL -- Shape the Mobile Experience: Free Subscription Software experts

[Amforth] Led 13 always on

2013-11-22 Thread Jan Kromhout
I have installed version 5.1 on my arduino, works great. Now I see led 13 is always on! Is this a normal situation or is there a hidden bug? Cheers, Jan Kromhout -- Shape the Mobile Experience: Free Subscription

[Amforth] SPI

2013-11-20 Thread Jan Kromhout
Hello, Please can you tell me where to find the SPI words. Are there SPI exampels? Thanks for any help, and regards. Jan Kromhout Hellevoetsluis-NL -- Shape the Mobile Experience: Free Subscription Software experts

[Amforth] Fuses Arduino

2013-11-19 Thread Jan Kromhout
Hello, I compiled the latest version of Amforth 5.1 with the AVR studio 5.0. without any error! Load the hex and eep file to the Arduino, and no results. What are the value of the fuses? I found these values? L=0xFF H=0xD8 E=0xFD Thanks for any help. Jan Kromhout

Re: [Amforth] Where to store my word?

2012-06-18 Thread Jan Kromhout
Dear Michael, I try to convert the lib bitnames.frt. See the results here. There is going sommething wrong, but get not the finger behand it. I have used the latest version. Please can you take a look? Cheers, Jan FLOAD '\\psf\Home\Documents\amforth-4.8\amforth-4.8\lib\bitnames.frt' ; V

Re: [Amforth] Where to store my word?

2012-06-17 Thread Jan Kromhout
Hi Michael, What is changed? I also not find the win32 forth version any more! Please can you take a look! Thanks in advanced. Cheers. Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 16 jun. 2012 om 18:27 heeft Kalus Michael mik.ka...@googlemail.com het volgende geschreven: Hi Jan

Re: [Amforth] Where to store my word?

2012-06-15 Thread Jan Kromhout
Thank, go to try it. One remark, the night is also for sleeping. Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 15 jun. 2012 om 00:18 heeft Kalus Michael mik.ka...@googlemail.com het volgende geschreven: Hi Jan. Am 14.06.2012 um 07:53 schrieb Jan Kromhout: .. 2. Can I

Re: [Amforth] Problem running amforth 4.8 on an Arduino Uno - am I doing this right?

2012-06-15 Thread Jan Kromhout
. The name is not unu but du.? If this is not working I will send you my running version. One thing, I have bought the mkii programmer, and after that I got a running by my own compiled version. Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 14 jun. 2012 om 22:21 heeft Alaric

[Amforth] Word Extension in assembler

2012-06-14 Thread Jan Kromhout
and flashed? And in wich file I need to include it. I call ist uitvoer.asm Thanks for any help. Cheers Jan Kromhout Hellevoetsluis-NL -- Live Security Virtual Conference

[Amforth] Where to store my word?

2012-06-13 Thread Jan Kromhout
Hello, I have make a word to include in amForth. Where should I store it so it will be assembled? Thanks for any help. Cheers, Jan Kromhout ; uitvoer ( -- ) ; = ; Date : 13.06.2012 ; version 1.00 ; User written word ; write a simple text

Re: [Amforth] Where to store my word?

2012-06-13 Thread Jan Kromhout
Hi Michael, Thanks for this! Have two questions 1. Is this also working for the 4.8 version 2. Can I used it with Win32for compiler under windows? Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 14 jun. 2012 om 00:25 heeft Kalus Michael mik.ka...@googlemail.com het volgende

  1   2   >