From: Matthias T. <mt...@we...> - 2012-09-15 18:47:37
|
Hi Paul, Erich already did most of the work. > 3. Is there a list of the .set want ... options that can be used? Not really a list but a hint: You can look for lines like ".set WANT_... " in the core/ directory. One file is "macros.asm" which defines some generic settings. The other source for WANT options is the devices/<controller>/device.asm file. Here you find much more options depending on the controllertype: SPI, USART(s), TWI, various TIMERs etc. I'll add some more comments to the application template file ASAP. The WANT options are handled via conditional assembly. Just look for lines like ".if WANT...=" in the (again) core directory. The options are not exposed to the forth level however (one may think of environment queries, but thats left as a task for someone else, if really needed). > And, BTW great job on AMFORTH. It is great to have a FORTH that fits into > such a small micro. Thank you Matthias |