[Amforth-devel] makefile correction?

2011-01-30 Thread Elliott Chapin
I am now looking at using avra under linux. Avra doesn't compile for me, so I am trying the static version. As recommended, I have downloaded amforth by svn, ... Accordingly, it appears that the makefile lines DIR_ATMEL=../../Atmel and AVRA=avra -I $(DIR_ATMEL)/Appnotes2 need to be changed. I

Re: [Amforth-devel] Question on Baud rates

2011-01-30 Thread Marcin Cieslak
> Now I just have 30 years since I last used Forth to overcome. :) Welcome onboard :) I never have had used it in my 8 bit times (I rejected FORTH64 as bizarre) and now I regret it. //Marcin -- Special Offer-- Download

Re: [Amforth-devel] Question on Baud rates

2011-01-30 Thread Dennis Cartier
On Sun, Jan 30, 2011 at 5:53 PM, Dennis Cartier wrote: > > Pito, I have pretty much the same thing (except for freq, and baud). I > noticed that you hard coded the device.asm where as mine did not have a > path. It did not seem to make a difference when I tried hard coding it > though. > > One thi

Re: [Amforth-devel] Question on Baud rates

2011-01-30 Thread Dennis Cartier
On Sun, Jan 30, 2011 at 5:24 PM, pito wrote: > Dennis, > this works for me (from template.asm): > > .include "devices/atmega1284p/device.asm" > ; amforth needs two essential parameters > ; cpu clock in hertz, 1MHz is factory default > .equ F_CPU = 2200 > ; initial baud rate of termin

Re: [Amforth-devel] Question on Baud rates

2011-01-30 Thread pito
Dennis, this works for me (from template.asm): .include "devices/atmega1284p/device.asm" ; amforth needs two essential parameters ; cpu clock in hertz, 1MHz is factory default .equ F_CPU = 2200 ; initial baud rate of terminal .equ BAUD = 115200 .set USART_B_VALUE = (1

[Amforth-devel] Question on Baud rates

2011-01-30 Thread Dennis Cartier
Hello All, I recently decided to try Amforth, but I have run across an odd issue and was hoping someone could point me in the right direction. I took the template project and set it up for an atmega168. The issue I am having is that I can't seem to get the serial port to run at the speed I reques