BASCOM-AVR : WS2811/2812 LED strip & Assembler code : REPLY
[quote:822124aa98="Flyby123"]Can anyone give me pointers on how change to code to word (>255 postions) addressing[/quote:822124aa98] I thought you've only wanted to use this code as starting point...
View ArticleBASCOM-AVR : waitus question : REPLY
It seems that after the 0-check which was added, the timing became wrong. I corrected it so it is more accurate, but waitus used with a low value variable ( for example 1) will not give a good result...
View ArticleBASCOM-AVR : Hardware uart config serial buffer size : REPLY
will you send the data at the same rate? in that case you would not need a buffer : do b=waitkey(#1) print #2, chr(b); loop you can not extend the buffer. but you can make your own buffer using the...
View ArticleVarious : LibertyBasic and BBCbasic for the PC side of Bascom : REPLY
Hi olhexy, You really should give Visual Basic Express a try. I will give Microsoft due credit, they make an excellent IDE. It can seem very busy to start with but if you go through some step by step...
View ArticleBASCOM-AVR : waitus question : REPLY
Thanks Mark, I can live with that. Also in my example the array is treated as a zero or some very small value. Will that be fixed also? Thanks again, Dave
View ArticleBASCOM-AVR : Hardware uart config serial buffer size : REPLY
Hi, maybe you can use a circular buffer. cheers
View ArticleBASCOM-AVR Old versions : mega16frequency : NEWTOPIC
dear sir can you help me writing some code in bascom avr i want frequency upto 80 khz
View ArticleBASCOM-AVR : about eprom read and write : NEWTOPIC
Hi everybody, I'm writing a program on a ATmega88, and want a little explain about write and read eprom. 1/ I want to write 1 integer (&HA5A5) in eprom (to be sure that a variable have this code...
View ArticleBASCOM-AVR : about eprom read and write : REPLY
eeprom variables are virtual, they only serve for read/writing as a replacement of read/write-eeprom. dim i as integer, ei as ERAM integer i=-100 'assign value to variable ei=i ' write to eeprom...
View ArticleBASCOM-AVR : about eprom read and write : REPLY
Hello Vincent If you have a look at AN #196 (you can find a link on the main mcs site) you can see the reading and writing of eeprom to store default values and changed values infact if you look at...
View ArticleBASCOM-AVR : about eprom read and write : REPLY
hello, Thanks for this so fast reply :-) I will see the AN196, and ask if I must have more informations. Thanks again Regards Vincent
View ArticleBASCOM-AVR : WS2811/2812 LED strip & Assembler code : REPLY
Hi MWS, thanks for the tip. Since I have no good idea what is done in ASM code I cannot mimic it with Basic. With that in mind I now have a more "don't fix if it ain't broken" approach. Since this...
View ArticleBASCOM-AVR : WS2811/2812 LED strip & Assembler code : REPLY
i'm very impressed on your imagination Flyby123. Don't you have any Idea to solve the problem with Basic? :lol:
View ArticleBASCOM-AVR : Hardware uart config serial buffer size : REPLY
Hi, here ist some background information: Sensor -> UART -> AVR -> UART -> GPRS Modem The sensor transmits every 60 seconds 20 bytes of binary data. This data should be collected until the...
View ArticleBASCOM-AVR : new question about print/input : NEWTOPIC
Hi everybody, I want to use RX and TX pins of the ATMega88 to send data with RF. Is it possible to send data with the transmitter like this: [code:1:acbc0d7a7d] print " test" print &HAA print...
View ArticleBASCOM-AVR : new question about print/input : REPLY
Sorry I have forget: Of the RX pin of the ATMega I can put directly the 433MhZ Receiver or I must put a RS232 ? Thanks
View ArticleBASCOM-AVR Old versions : mega16frequency : REPLY
How can get the frequency 80khz pl. help me to to get the 80khz frequency on portd.7 regfile = "m16def.dat" $crystal = 14745600 '14.745600 Ddrd = &B11111110 Ddrc = &B11110000 Dim Flag As Byte...
View ArticleBASCOM-AVR Old versions : [Ask] What's up with this program, direct active ?...
hallo rikiyanto , hown you connect ; pina.0 , pina.1 and pina.2 ? if you connect to ground (when push) then the code should like this : $regfile = "m8535.dat" $crystal = 12000000 $baud = 19200...
View ArticleBASCOM-AVR : WS2811/2812 LED strip & Assembler code : REPLY
[quote:808bde15b3="Flyby123"][code:1:808bde15b3]ld r0,x+[/code:1:808bde15b3][/quote:808bde15b3] Loads the byte indexed by X (XL & XH) into r0 and after the read increments X by one, this way...
View Article