BASCOM-AVR : Some bugs with TIMER3 variables and simulation with ICP1 (Ti :...
Hi, I think I found some minor issues with the ATMega 1284P and Timer1-Capture-Mode as well as Timer3: 1.) For TIMER3 the variable "TIFR3" (and possible the associated bit-names like "ICF3" etc.) is...
View ArticleBASCOM-AVR : Using a non-available/non-allowed channel with GETADC : NEWTOPIC
Hi there, the ATMEGA1284P has 31 ADC-channels. In a program I accidentially used a channel number above 31: A=GETADC(32) What happened, was that I got totally strange results in the Variable A. The...
View ArticleBASCOM-AVR : Some issues with the graphic converter and EADOGM 128x64 : NEWTOPIC
Hi there, When using the graphic converter tool to prepare some graphics for the EADOGM128x64 graphic lcd, I had some minor issues. When you load the attached "_Triangle_24x8.BMP" file with the...
View ArticleBASCOM-AVR : Some issues with the graphic converter and EADOGM 128x64 : REPLY
you should not use color pictures. if you open the picture in MS paint, and change the properties to B&W you will see how it is converted. And i guess that these are the pixels you mean. A b&w...
View ArticleBASCOM-AVR : Some issues with the graphic converter and EADOGM 128x64 : REPLY
[quote:870ae2d424="albertsm"]you should not use color pictures. if you open the picture in MS paint, and change the properties to B&W you will see how it is converted. And i guess that these are...
View ArticleBASCOM-AVR : Wish: Make Getadc return signed values : NEWTOPIC
Hi, in [code:1:4cd6812bbe]Config ADC .... [/code:1:4cd6812bbe] I don't see an option to declare signed differential mode. So, what happens is that one has to do a lot of thinking ([i:4cd6812bbe]I...
View ArticleBASCOM-AVR : Wish: Make Getadc return signed values : REPLY
Shouldn't 1 additional line of code solve the problem? DIM ADC_DIF as INTEGER ADC_DIF = GETADC(differential_channel) If Adc_dif.9 = 1 Then 'Test for negative Result Adc_dif = Adc_dif Or...
View ArticleBASCOM-AVR : Wish: Make Getadc return signed values : REPLY
[quote:7f7010c29e]Shouldn't 1 additional line of code solve the problem?[/quote:7f7010c29e] Yes, after recognizing the problem ... and trying to understand what Getadc brings out in that case since...
View ArticleBASCOM-AVR : Wish: Make Getadc return signed values : REPLY
[quote:2b63974ec1="Meister"]I don't see an option to declare signed differential mode.[/quote:2b63974ec1] Maybe because it's an easy task ? And maybe because there's no Atmel standard. A look in the...
View ArticleEASY TCP/IP : BootLoader with NM7010 : REPLY
in the next release i added $bootvector which will include the vector table. it will require more space. and you need to set the IVSEL bit yourself before using the interrupts. And : your normal...
View ArticleBASCOM-AVR : Wish: Make Getadc return signed values : REPLY
In agreement with MWS, the Getadc deliveres what it is asked to do. It is up to every programmer to do with it whatever they want to. Is "Thinking" ..."OUT" now??? I think it is time to retire if...
View ArticleBASCOM-AVR : Translating C code to Bascom-AVR : REPLY
Hello Dré, Thanks a lot :). I have downloaded the examples. This would help me to learn. Best regards.
View ArticleBASCOM-AVR : Using a non-available/non-allowed channel with GETADC : REPLY
..and make Getadc consume even more time. That's the way to go...make everything a bit slower. Don't you think that there should be some sesponsibility with the programmer? Hubert
View ArticleBASCOM-AVR : RTTY decode? : REPLY
TTY.. have learned it many decades ago (5-bit code) and it was outdated then! Hubert
View ArticleBASCOM-AVR : Wish: Make Getadc return signed values : REPLY
Thanks for those very constructive posts. My suggestion why not having Config ADC as versatile as Config ADCx with regard to differential signed mode. Regards, Meister.
View ArticleBASCOM-AVR : XMEGA and SD card without AVR DOS : NEWTOPIC
Hi, I am using XMEGA256D3. I need a huge Data storage. For Datalogger application. An SD card is much cheaper than a bank of EEPROMs. Can I use SD card without using AVR-DOS ? As I don't need all the...
View ArticleBASCOM-AVR : XMEGA and SD card without AVR DOS : REPLY
have a look at this, there is C Code for doing you wanted to do: http://www.microchip.com/forums/m432748-print.aspx
View ArticleBASCOM-AVR : Using a non-available/non-allowed channel with GETADC : REPLY
[quote:223df9e707="hgrueneis"] Don't you think that there should be some sesponsibility with the programmer? Hubert[/quote:223df9e707] No, I don't. Because it's a totally unexpected behaviour of...
View ArticleBASCOM-AVR : XMEGA and SD card without AVR DOS : REPLY
Thank you, but C is too much beyond me. Regards, Devidas
View ArticleBASCOM-AVR : Wish: Make Getadc return signed values : REPLY
[quote:edb25e372e="Meister"]My suggestion why not having Config ADC as versatile as Config ADCx with regard to differential signed mode.[/quote:edb25e372e] Because it makes a ton of work implementing...
View Article