BASCOM-AVR : Sequential brake light hardware ?? : REPLY
The voltage in a car is far from being clean! You will encounter noise and spikes of unpedictable shape an voltage. Recon 100V spikes at least. That means, a simple R-R divider is not an option. Also...
View ArticleBASCOM-AVR : Sequential brake light hardware ?? : REPLY
The voltage in a car is far from being clean! You will encounter noise and spikes of unpedictable shape an voltage. Recon 100V spikes at least. That means, a simple R-R divider is not an option. Also...
View ArticleBASCOM-AVR : Sequential brake light hardware ?? : REPLY
I agree with Arera, and I would go even further, as to put 78L05 regulators on each of the inputs. This guarantees that the voltage getting to the 2313 input [b:5320f53dbf]IS [/b:5320f53dbf] the...
View ArticleBASCOM-AVR : Assembler Question : REPLY
the glcdRA6963.lib will only work with the RA6963 chip. I can not believe your display still has the T6963. I use the T6963 based displays too for a long time. and i found that there is 1 design that...
View ArticleBASCOM-AVR : Sequential brake light hardware ?? : REPLY
I would use opto-couplers but would not use a common ground I would run through one or two diodes the power to the lamps thus generating a constant voltage for the opto-couplers and supply the micro...
View ArticleAVR-DOS : Two DOS systems on one xmega : REPLY
Hi, it is [b:dff501aebe]not[/b:dff501aebe] possible, to run 2 AVR-DOS in parallel. On one side an AVR-CPU has to less SRAM, to keep information of two DOS-Systems (FAT-Table, Directories) on the other...
View ArticleAVR-DOS : sdhc datalogger using atmega 128 : REPLY
Hi, do you use the SDHC-Drive? SHDC-Cards need an different driver than the SD-Cards up to 2GB. But the SDHC-Driver can work with SD-Cards too. Please note, that not all cards can work correctly with...
View ArticleAVR-DOS : Two DOS systems on one xmega : REPLY
Hi, Thanks for the reply. In that case how do I read a MMC card and copy its files on my resident AVR-DOS mmc card ? Please suggest. Devidas
View ArticleBASCOM-AVR : Divide a word into two bytes : NEWTOPIC
Hi Can someone please help me divide a Word into two bytes. so the Word becomes highbyte and lowbyte. Best regards Øyvind [b:49ed556bf0][color=red:49ed556bf0](BASCOM-AVR version : 2.0.7.6...
View ArticleBASCOM-AVR : Divide a word into two bytes : REPLY
Hi, Take a look at the High() and Low() statements. Frank
View ArticleBASCOM-AVR : Divide a word into two bytes : REPLY
Hi Thanx that was what i was looking for :-) Øyvind
View ArticleBASCOM-AVR : Divide a word into two bytes : REPLY
You can also use overlay you can divide word, long and doubles int bytes with overlay [code:1:1291ec6f01] Dim Theword as word Dim Thebytes(2) as byte At Theword overlay [/code:1:1291ec6f01] Regards Paul
View ArticleBASCOM-AVR : 4x40 lcd and lcd4e2.lib : NEWTOPIC
Hi. Been surching the forum, but cant find an answer. I made my pcb before checking the lcd4e.lib, so my lcd pins are on two different ports (ARG......) This is my pins; Config Lcdpin = Pin , Db4 =...
View ArticleBASCOM-AVR : Atmega1280 pins does not output : NEWTOPIC
Hi, I have a problem getting some pins on the arduino Mega board I'm using to simply toggle on-off. I set them as outputs and use the "SET" and "RESET" commands to toggle the pins. But for some reason...
View ArticleBASCOM-AVR : Atmega1280 pins does not output : REPLY
Hi Tronicgr, I don't think this is the full answer, but this bit Direction_high.0 = 0 Direction_high.2 = 1 Direction_high.3 = 0 Direction_high.4 = 1 should use the same bits as Dout9 =...
View ArticleBASCOM-AVR : problem with aritmatic : REPLY
Hi Kiki, [quote:1071b7ad89] Pul = Pul + 6 ''here the problem..if interrupt we switch 2 time then "pul" is 12 so i want 6+6=2,how to create that [/quote:1071b7ad89] This code is doing the correct...
View ArticleBASCOM-AVR : Atmega1280 pins does not output : REPLY
It's not pin but port [code] ...... Config Porta.2 = Output '11 Config Porta.0 = Output '12 Dout1 Alias Portb.4 : Ddrb.4 = 1 Dout2 Alias Porth.6 : Ddrh.6 = 1 ....... [/code0...
View ArticleBASCOM-AVR : Sequential brake light hardware ?? : REPLY
[quote:cfa8799249="Deanus"]I agree with Arera, and I would go even further, as to put 78L05 regulators on each of the inputs. [/quote:cfa8799249] Strange idea, now you must project your 78L05 against...
View ArticleAVR-DOS : Two DOS systems on one xmega : REPLY
[quote:97a876ca7b]In that case how do I read a MMC card and copy its files on my resident AVR-DOS mmc card ? [/quote:97a876ca7b] Depending on the amount of data you want to copy you could read through...
View ArticleBASCOM-AVR : Sequential brake light hardware ?? : REPLY
I forgot to mention the other reason I used the diodes was to let me know when no current was flowing which means a blown bulb. Regards Paul
View Article