[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] 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] 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] 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-devel@lists.sourceforge.

[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] 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% */ pinMode(P

[Amforth] shiftOut

2018-10-31 Thread Jan Kromhout
Hi, Is there a equivalence of the Arduino "shiftOut(dataPin, clockPin, bitOrder, value)" in Amforth? Cheers, Jan ___ Amforth-devel mailing list for http://amforth.sf.net/ Amforth-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinf

[Amforth] Question about Timer1 - is there a bug?

2018-11-02 Thread Jan Kromhout
Hi, I have taken the TIMER_1 example, and make some small change. Instead of the timer1.tick I toggle pin-7 of the Arduino. With the values as in the listing I measure a frequency of 15,2 Hz with my scoop. When I change some of the preload value by hand no change is seeing. Frequency is staying

[Amforth] Overwritten timer1

2018-11-02 Thread Jan Kromhout
Thanks Tristian, Yes, I’m looking for something i can use for multplexing 7-segment displays. But still strange I can’t use this timer freely. How could we figger out where this oceurs? But still thanks again for your helpfull remarks. Cheers, Jan Verstuurd vanaf mijn iPad ___

Re: [Amforth] Question about Timer1 - is there a bug?

2018-11-03 Thread Jan Kromhout
oad it. Regards Richard On 11/3/18, Jan Kromhout mailto:krom1...@hotmail.com>> wrote: Hi, I have taken the TIMER_1 example, and make some small change. Instead of the timer1.tick I toggle pin-7 of the Arduino. With the values as in the listing I measure a frequency of 15,2 Hz with my sc

[Amforth] External Interrupt Mask Register

2018-11-04 Thread Jan Kromhout
Hi, I have a strange behavior and can’t explain. The ATmega328P supports two external interrupts which are individually enabled by setting bits INT1 and INT0 in the External Interrupt Mask Register (EIMSK) The address is $1d. When I look to the documentation te bits 0 and 1 are R/W and the other

Re: [Amforth] External Interrupt Mask Register

2018-11-05 Thread Jan Kromhout
Tristan, Thanks again for your hulp. Please can you provide me the link to download the datasheet your mention. When I look to the datasheets they only have about 25 pages!!. Cheers, Jan > Op 5 nov. 2018, om 09:47 heeft Tristan Williams het > volgende geschreven: > > Jan, > >> The addres

[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

[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 https://lists.sourceforge.net/lists/listinfo/amf

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 fo

[Amforth] I2C Generic

2018-11-09 Thread Jan Kromhout
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, and I have translate it to Forth. The display is not working. I include the Forth code. What is wrong? Thangs for any help. Cheers, Jan \ Gravitech display, I2C Generic

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-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] 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,

[Amforth] My first I2C connection with amForth

2018-11-12 Thread Jan Kromhout
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 now it comes. When I give a reset of the Arduino and afterwards I want to write a value to the LCD then it simply d

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 now

[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: Segment_Map

[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? Cheer

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 >

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
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, > >

[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 MacBoo

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 afternoon it

[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 lfuse:w:0xFF:m

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] 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 /Users/

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] 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 anot

[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 tem

[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] 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

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

[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

[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

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
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-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 fo

[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 https://lists.sourceforge.net/lists/li

Re: [Amforth] Turnkey

2019-02-26 Thread Jan Kromhout
way? Cheers, Jan Op 25 feb. 2019, om 21:36 heeft Erich Wälde mailto:ew.fo...@nassur.net>> het volgende geschreven: Hello Jan, Jan Kromhout writes: I have create a turnkey project, how can I remove the turnkey so it will not start at start-up? :-) Well, let's see. How did you &qu

[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 http://amforth.sf.

Re: [Amforth] Need some help with the SPI

2019-06-07 Thread Jan Kromhout
eschreven: 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 con

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 pin

[Amforth] AMForth 4.8, not running on arduno uno rev3

2012-05-01 Thread Jan Kromhout
where in it. (thanks Chuck!!) Fuse also conform documentation Arduino. Get the latest FTDI driver for Windows, also for my IMAC running Lion 10.7 I have tried a lot of terminal programs for Windows also for the IMAC with no results. Has anyone get the same problems? Thanks! Cheers, Jan Kromhout

[Amforth] VT100 terminal IMAC

2012-05-02 Thread Jan Kromhout
Hello, I am searching for a free ware VT100 terminal emulater for the IMAC. Can you give me me some sugestions? Cheers Jan kromhout -- Live Security Virtual Conference Exclusive live event will cover all the ways

Re: [Amforth] VT100 terminal IMAC

2012-05-03 Thread Jan Kromhout
also have the possibility to delete some text or as an example the text from a certain position to the end of the line. I think wit VT100 emulation this will working perfect. Cheers, Jan Kromhout Hellevoetsluis-NL Op 3 mei 2012, om 09:24 heeft Ulrich Hoffmann het volgende geschreven:

[Amforth] Lock and Unlock fuse AMForth Arduno UNO

2012-05-03 Thread Jan Kromhout
Hi, Is it needed to unlock before flashing and later lock? If yes what are the codes for lock and unlock for the arduino UNO? Thanks for any help Cheers, Jan Kromhout -- Live Security Virtual Conference Exclusive

Re: [Amforth] Issues with a word compile - flash or eeprom write issues

2012-05-06 Thread Jan Kromhout
Hi When I take 2 new 328p with boot on it ( buy it recently from original supplier) then when I read the lock byte the should be the same? If my working version has an other number, because I did some stupid things, I always can set it back to the origional value with avrdude? Jan kromhout

Re: [Amforth] Issues with a word compile - flash or eeprom write issues

2012-05-06 Thread Jan Kromhout
Hi Matthias, Thanks for the quick response. If I understand correctly the best is to buy some bare 328p chips, and flash them without tatching the lock bits This is perhaps the issue that my Amfort is not won't to run. Cheers, Jan Op 6 mei 2012, om 19:16 heeft Matthias Trute het volgende ges

Re: [Amforth] Issues with a word compile - flash or eeprom write issues

2012-05-06 Thread Jan Kromhout
Hellevoetsluis-NL Op 6 mei 2012, om 21:00 heeft Erich Waelde het volgende geschreven: > Hello, > > On 05/06/2012 08:12 PM, Jan Kromhout wrote: >> >> If I understand correctly the best is to buy some bare 328p chips, >> and flash them without tatching the lock bits. > >

Re: [Amforth] Issues with a word compile - flash or eeprom write issues

2012-05-06 Thread Jan Kromhout
Thanks Paulo, Could sommething going wrong with the burner? Can you give me a hint how to do this on the OSX. I have not yet the experiance. Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 6 mei 2012 om 22:27 heeft Paulo Ferreira het volgende geschreven: > > On 2012

Re: [Amforth] Issues with a word compile - flash or eeprom write issues

2012-05-06 Thread Jan Kromhout
king. So I will try to flash it from my Mac OSX. Best regards, Jan Op 6 mei 2012, om 23:24 heeft Paulo Ferreira het volgende geschreven: > > On 2012/05/06, at 21:52, Jan Kromhout wrote: > >> Thanks Paulo, >> >> Could sommething going wrong with the burner? >> C

Re: [Amforth] Issues with a word compile - flash or eeprom write issues

2012-05-07 Thread Jan Kromhout
same under windows XP and without any error message, nu running AMForth. Cheers, Jan Op 6 mei 2012, om 22:52 heeft Jan Kromhout het volgende geschreven: > Thanks Paulo, > > Could sommething going wrong with the burner? > Can you give me a hint how to do this on the OSX. > I h

Re: [Amforth] Issues with a word compile - flash or eeprom write issues

2012-05-07 Thread Jan Kromhout
Hi Chuck I am glad that the problem is solved. I am not in real time a programmer but a mechanical engineer who is writing optimization tools for dispatching powerplants. But my hobby is electronics, and the arduino. Cheers, Jan Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 7 mei

[Amforth] How to activate the floating point package

2012-05-07 Thread Jan Kromhout
Hello, How do I activate the floting point packages? Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL -- Live Security Virtual Conference Exclusive live event will cover all the ways today's securit

Re: [Amforth] Issues with a word compile - flash or eeprom write issues

2012-05-07 Thread Jan Kromhout
sitate to ask me anything you think I might be able to help you > with. I will probably ask you some questions in the near future on running > fig-forth on the microKim ;) > cheers, > -chuck > > On Mon, May 7, 2012 at 8:54 AM, Jan Kromhout wrote: > >> Hi Chuck >>

[Amforth] Dubble words, no error message!!

2012-05-07 Thread Jan Kromhout
Hello, A few hours ago I first really started amforth What strikes me is that I can enter two identical words without an error. This is not the case in other forth versions that I have used. Is this a conscious choice or a bug? Cheers, Jan Kromhout

[Amforth] Extra words in AMForth

2012-05-09 Thread Jan Kromhout
idea to exchange these knowledge. Can give someone give me some help? Thanks in advance, and regards Jan Kromhout Hellevoetsluis-NL -- Live Security Virtual Conference Exclusive live event will cover all the ways

[Amforth] Random number generator

2012-05-09 Thread Jan Kromhout
Hello, I need a random number generator in AMForth. (It may be a generator thats generate 0..1023 as an integer) Has someone make this one for AMForth? Regards, Jan Kromhout Hellevoetsluis-NL -- Live Security Virtual

[Amforth] Question about sbi,cbi

2012-05-10 Thread Jan Kromhout
Hello, I'm looking in some code to look how the analog write is working. I see commands like sbi(…,…) and chi(…,…) What are they doing? (in plain englisch) Cheers, Jan Kromhout Hellevoetsluis-NL -- Live Sec

Re: [Amforth] Extra words in AMForth

2012-05-10 Thread Jan Kromhout
:23 +0200 > From: ew.fo...@nassur.net > To: amforth-devel@lists.sourceforge.net > Subject: Re: [Amforth] Extra words in AMForth > > Hello Jan, > > On 05/09/2012 09:11 PM, Jan Kromhout wrote: > > I think that is a good idea to have the standard/elementary > > words ha

[Amforth] Amforth with windows XP and Windows 7

2012-05-11 Thread Jan Kromhout
working perfect. Any idee what to do now? Thanks for any help. Cheers Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL -- Live Security Virtual Conference Exclusive live event will cover all the ways today's sec

[Amforth] MacWise, lite

2012-05-11 Thread Jan Kromhout
Hello, Is it posible to read a text file direct, so I can load forth words. Like teraterm is doing? Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL -- Live Security Virtual Conference Exclusive live event

[Amforth] Tiny Pascal Fig-Forth

2012-05-12 Thread Jan Kromhout
Hello, I'm looking for a copy of the booklet "Tiny Pascal in Fig-Forth" Can someone help me with this? A long time ago I own this booklet, but now it is going! Any form is welcome. Cheers, Jan kromhout Sacharovlaan 3 3223HM He

[Amforth] bset and bclr

2012-05-13 Thread Jan Kromhout
Hello I whas reading the German "das Fort magazin, vierte Dimension" and find two interesting commands for manupulating on a simple way individual bits with bset and bclr. Why are these not implemented in amForth?. Is thebsource for these two available? Regards, Jan kromhout Sach

[Amforth] Compiled Version 4.8 with AVR (windows) studio not running

2012-05-14 Thread Jan Kromhout
. Jan Kromhout Hellevoetsluis-NL -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will in

Re: [Amforth] Fast pin I/O lib in asm - new names

2012-05-14 Thread Jan Kromhout
Hello, It is a nice future. The only way to get it in the arduino is by the assembler? Regards, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 14 mei 2012 om 17:26 heeft "pito" het volgende geschreven: > A simple test on fastio.lib (there is no correction on the do-

Re: [Amforth] Fast pin I/O lib in asm - new names

2012-05-14 Thread Jan Kromhout
Pito, Do you have experience witch compiling under windows. When I compile it with the AVRstudio 4.19 my version will not running, problems with the usb. This when I use it under windows also on my Imc Please can you help perhaps? Cheers, Jan Op 14 mei 2012, om 17:51 heeft pito het volgende

Re: [Amforth] Compiled Version 4.8 with AVR (windows) studio not running

2012-05-14 Thread Jan Kromhout
Are you making the hex files under windows or unix? And are you take for the arduino the same files as on the net? Jan Op 14 mei 2012, om 19:04 heeft Erich Waelde het volgende geschreven: > Hi Jan, > > On 05/14/2012 04:28 PM, Jan Kromhout wrote: >> Hello, >> I foun

Re: [Amforth] Compiled Version 4.8 with AVR (windows) studio not running

2012-05-14 Thread Jan Kromhout
Hi, Matthias, The same with version 5! I compare my file with the file on source forge and there are lot of differences. Regards, Jan Op 14 mei 2012, om 19:33 heeft Matthias Trute het volgende geschreven: > Hi Jan, > >> I found some strange thing. >> I compiled the version 4.8 under windo

Re: [Amforth] Compiled Version 4.8 with AVR (windows) studio not running

2012-05-14 Thread Jan Kromhout
No, I have the 328P-PU! Do you have experience with windows? Jan Op 14 mei 2012, om 19:44 heeft pito het volgende geschreven: > Jan, > hopefuly you are not flashing the atmega8u2 (UNO usb interface) with > amforth.. p. > > - PŮVODNÍ ZPRÁVA - > Od: "Matthias Trute" > Komu: "Everythi

Re: [Amforth] Fast pin I/O lib in asm - new names

2012-05-14 Thread Jan Kromhout
ly (for given chip)? What kind of programmer do you use? > P. > > - PŮVODNÍ ZPRÁVA - > Od: "Jan Kromhout" > Komu: "Everything around amforth" > > Předmět: Re: [Amforth] Fast pin I/O lib in asm - new names > Datum: 14.5.2012 - 18:56:54 > >&

Re: [Amforth] Fast pin I/O lib in asm - new names

2012-05-14 Thread Jan Kromhout
Dear All, My compilation is running. After making some hard references to the code as mention in the user manual it is working as it should be! Jan Op 14 mei 2012, om 20:29 heeft Jan Kromhout het volgende geschreven: > TinyusbIPS > > > Op 14 mei 2012, om 19:22 heeft pito

Re: [Amforth] Compiled Version 4.8 with AVR (windows) studio not running

2012-05-14 Thread Jan Kromhout
Wich burner are you using? Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 14 mei 2012 om 20:06 heeft "pito" het volgende geschreven: > I am working with amforth from windows only.. > Terminal: Forfiter 1.5 Interface: Bluetooth - cheap interface > @115kbaud > Com

Re: [Amforth] Fast pin I/O lib in asm - new names

2012-05-15 Thread Jan Kromhout
should be! > > > Jan > > > Op 14 mei 2012, om 20:29 heeft Jan Kromhout het volgende geschreven: > > > TinyusbIPS > > > > > > Op 14 mei 2012, om 19:22 heeft pito het volgende geschreven: > > > >> What does it mean problem with USB? U

[Amforth] Stabel version 4.8

2012-05-15 Thread Jan Kromhout
the AMFort I have put a delay of 1 sec. Reading is not so fast, but this is for the moment the only way. I havent any experience with Pyton, so i can't use the tool. For the rest I am very satisfy with this Forth, and have played allot of time to get it running. Cheers Jan Kro

Re: [Amforth] Stabel version 4.8

2012-05-15 Thread Jan Kromhout
quot;test OK" option > So the amforth has time to process the line up to 5secs, when it > does faster and sends an "ok" it does not wait 5secs. > Then it works fine even @ 115kbaud :) > p. > > - PŮVODNÍ ZPRÁVA - > Od: "Jan Kromhout" > Komu: am

Re: [Amforth] Stabel version 4.8

2012-05-15 Thread Jan Kromhout
endof endcase and after give a return after the encase the system is hanging. Could not give any new words in. For example : test ; gives : ?? -13 1 Again I need to flash. Has anyone a solution? Jan Op 15 mei 2012, om 19:19 heeft Jan Kromhout het volgende geschreven: > Where to find

Re: [Amforth] Stabel version 4.8

2012-05-15 Thread Jan Kromhout
you have exceeded 80chars in the line buffer, don't you? > p. > > - PŮVODNÍ ZPRÁVA ----- > Od: "Jan Kromhout" > Komu: "Everything around amforth" > > Předmět: Re: [Amforth] Stabel version 4.8 > Datum: 15.5.2012 - 19:37:58 > >> Hello, &g

Re: [Amforth] Stabel version 4.8

2012-05-15 Thread Jan Kromhout
fer, don't you? > p. > > - PŮVODNÍ ZPRÁVA - > Od: "Jan Kromhout" > Komu: "Everything around amforth" > > Předmět: Re: [Amforth] Stabel version 4.8 > Datum: 15.5.2012 - 19:37:58 > >> Hello, >> >> I use the duemilanove

Re: [Amforth] Stabel version 4.8

2012-05-19 Thread Jan Kromhout
Thanks Matthias, Where can I find it? Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 17 mei 2012 om 11:35 heeft Matthias Trute het volgende geschreven: > Hi Jan, > >> It try it again, but when I load a simple case structure into the arduine I >> get a c

Re: [Amforth] Stabel version 4.8

2012-05-21 Thread Jan Kromhout
Matthias thanks. I have perhaps a stupid question. When I have flashed a version on the arduino witch files and in what order should I load them to get a minimum ans system? Cheers, Jan Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 19 mei 2012 om 19:40 heeft Matthias Trute het

[Amforth] TWI

2012-05-24 Thread Jan Kromhout
Hello, When I try to load spi.frt the definition is missing. Can't find the definition of in the direcory. Where can I find it? Thanks, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL -- Live Security Vi

[Amforth] Loading the assembler

2012-05-24 Thread Jan Kromhout
Hello, When I try to load the assembler I get an error when loading. It stops on the line : "assembler definitions" Should I load some files before starting to load the assembler? Thanks Jan kromhout Sacharovlaan 3 3223HM Hellevo

Re: [Amforth] Loading the assembler

2012-05-26 Thread Jan Kromhout
Dear Mathias Thanks for the answer. I dont understand your answer, "just replace assembler with " Can you explane that please? Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 25 mei 2012 om 20:09 heeft Matthias Trute het volgende geschreven: > Hi Jan, >

[Amforth] Save a copy of amForth

2012-05-30 Thread Jan Kromhout
Hello, I wont to make a forth version that fills my needs. Is it posible to write a copy of the hex part and the eep part, so when I load these later that I have my base forth back, or should I set some pointers before I save? Thanks in advance Cheers, Jan kromhout Sacharovlaan 3 3223HM

Re: [Amforth] Save a copy of amForth

2012-05-30 Thread Jan Kromhout
Thanks, do you have written amforth-float? Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 30 mei 2012 om 16:13 heeft "pito" het volgende geschreven: > Jan, > what I do is after creation of my "basic setup" I do download both > hex

[Amforth] need some help

2012-05-30 Thread Jan Kromhout
Hello, I wont to include 2 asm files.It is for me the first time to do this.Can someone help me with a sugestion where to place these so the compiler is taken them. The files are: 2r_from.asm2to_r.asm Thanks in advance for anny help. Cheers, Jan KromhoutHellevoetsluis-NL

Re: [Amforth] need some help

2012-05-30 Thread Jan Kromhout
Hi Mathias, Thanks for this. It is working. How can I figure out wich words are not include? Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 30 mei 2012 om 21:08 heeft Matthias Trute het volgende geschreven: > Hi Jan, > >> Hello, I wont to include 2 asm files.

[Amforth] Vocabulary

2012-05-31 Thread Jan Kromhout
Hello, I tested the word vocabulary with vocabulary test-vocabulary only forth also test-vocabulary definitions: test1 ." test1" ; : test2 ." test2" ; : test3 ." test3" ; : test4 ." test4" ; : test5 ." test5" ;previous definitions On one thing all is working fine. When I wont to go back to the

Re: [Amforth] Vocabulary

2012-05-31 Thread Jan Kromhout
fo...@nassur.net > To: amforth-devel@lists.sourceforge.net > Subject: Re: [Amforth] Vocabulary > > Hi Jan, > > On 05/31/2012 12:14 PM, Jan Kromhout wrote: > > > > Hello, I tested the word vocabulary with vocabulary test-vocabulary > > only forth also test-vocab

Re: [Amforth] need some help

2012-05-31 Thread Jan Kromhout
Hi Mathias, I have include in to the "dict_appl.inc" the last two words. .include "dict_interrupt.inc" .include "dict_usart.inc" .include "dict_wl.inc" .include "dict_minimum.inc" .include "words/2to_r.asm" .include "words/2r_from.asm" But when I load the case.frt then the words 2r> and 2>r are

[Amforth] TWI - 7segment display Gravitech.us

2012-06-01 Thread Jan Kromhout
s in advance. Cheers, Jan Kromhout Hellevoetsluis-NL -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape ha

Re: [Amforth] TWI - 7segment display Gravitech.us

2012-06-01 Thread Jan Kromhout
Dear Erich What should I give in at f-cpu=1600 Try twi.scan? But no result. Thanks for any help! Cheers Jan Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 1 jun. 2012 om 21:36 heeft Erich Waelde het volgende geschreven: > Hi Jan, > > > On 06/01/2012 08:58 PM,

Re: [Amforth] TWI - 7segment display Gravitech.us

2012-06-02 Thread Jan Kromhout
> > Hi Jan, > > > On 06/01/2012 08:58 PM, Jan Kromhout wrote: > > It is not working. > > Where exactly is "it"? > > Can you talk to the twi device? Did you try twi.scan? It should > report every device on the twi bus. > > Did you enable the

Re: [Amforth] TWI - 7segment display Gravitech.us

2012-06-03 Thread Jan Kromhout
great forum!!! Cheers, Jan kromhout Sacharovlaan 3 3223HM Hellevoetsluis-NL Op 3 jun. 2012 om 19:39 heeft Matthias Trute het volgende geschreven: > Hi Jan, > > I'm not an expert for TWI, some I've spend some time with EEPROM > modules (dont use the code in the lib

  1   2   >