BASCOM-AVR Old versions : Timer : REPLY
if this problem solve my project completed with your help
View ArticleBASCOM Project Blog : My 10 year Project Finally complete : REPLY
congratulations with finishing your project. Thank you for the video and sharing your project. It does look like the real thing :-) The sounds are great too, i guess that was some work. Very...
View ArticleBASCOM-AVR : Determine unused RAM bounds : REPLY
___lcdcounter is only used when you select 16x1a display. So change the options, compiler, LCD so that it will select the 16x2 instead. I can not recommend to use the space as you do. future changes...
View ArticleBASCOM-AVR : BUG?: init Watchdog XMega : REPLY
what you refer to is the startup init code. the intention is to write 1 there, but now the &H3F of the earlier written rst_status is written which is wrong. I just corrected it.
View ArticleBASCOM Project Blog : 7 inch display board : REPLY
thanks for the clock addition and the link to the udp demo. It is a great demo, i hope the code will be shared as well. wifi makes it very versatile. I can think of many practical applications.
View ArticleBASCOM-AVR : Pin change interrupt on ATTINY4313 : REPLY
there was a typo in the bit name. just replace the intlist section for this one : [INTLIST] count=20 INTname1=INT0,$001,GIMSK.INT0,EIFR.INTF0 INTname2=INT1,$002,GIMSK.INT1,EIFR.INTF1...
View ArticleBASCOM-AVR : Filling byte arrays : REPLY
MWS wrote: > I know Bascom is easy to handle, but that doesn't mean one has to write such horrible code. > First, you use up sram to put constant data in it (it looks it is never changed), and...
View ArticleBASCOM-AVR : Filling byte arrays : REPLY
[quote:99d2a3d7e3="sidknox"]Horrible code? Well, I won't dispute that...[/quote:99d2a3d7e3] You [b:99d2a3d7e3]can't[/b:99d2a3d7e3] dispute that :D [quote:99d2a3d7e3]I am not a programmer, I am a...
View ArticleBASCOM-AVR : KTM-S1201 serial LCD help needed : REPLY
More than fifty views and no single answer? Is it something wrong with my formulation of the question? Btw, the problem is still there, I can print out numbers, but only by specifying it like:...
View ArticleBASCOM-AVR Old versions : Timer : REPLY
Thank you very much kimmi with your support i have compled project. where can i buy licence verson how much insallation made after purchasing if i formated pc can i re install how much price in indian...
View ArticleBASCOM-AVR : Graphic LCD 240x128 (T6963C) biger Fonts / Level Shifter Xme :...
Thank you, Kimmi and oszi for your reply. I will try it asap.
View ArticleBASCOM-AVR : ATTiny1634 Support : NEWTOPIC
Hi guys, Is there support for ATTiny1634 on Bascom 2.0.7.1 ? I don“t see it on the chip list. Maybe a similar would work? Regards, [b:150a1ff6cf][color=red:150a1ff6cf](BASCOM-AVR version : 2.0.7.1 ,...
View ArticleBASCOM-AVR Old versions : Timer : REPLY
Hi, Good you got it to work About Bascom goto main page here you will find more info about it http://www.mcselec.com/index.php?option=com_phpshop&page=shop.browse&category_id=5&Itemid=1
View ArticleBASCOM-AVR : pulse length capture : NEWTOPIC
hallo I'm trying to measure a pulselength. On int0 and 1 i connecting a square wave of 20 to 200Hz. I expect a stable reading, but this is completly precarious. Must i use "no save" on INT0 and 1? Can...
View ArticleBASCOM-AVR : pulse length capture : REPLY
Hi, Can't you use start/stop to start and stop the timer? I think enable/disable just touches the Interrupt bit, rather then actually letting the clock run. If you use nosave then you must manally...
View ArticleBASCOM-AVR : Virtual USB-port for AVR : REPLY
Mr.Ollopa how can I add this strings to library?: [code:1:c5cb6debe9] Period_number=8 COMPARE1A=Last_period TIMER1=Shift_delay [/code:1:c5cb6debe9] [i:c5cb6debe9]Last_period[/i:c5cb6debe9] &...
View ArticleBASCOM-AVR : KTM-S1201 serial LCD help needed : REPLY
Hi Kimmi, VE3LNY's page is my main source of information after the datasheet. I've studied his code and it seems rather simple to understand (even if you'r not speaking C like me). You can see this...
View ArticleBASCOM-AVR : KTM-S1201 serial LCD help needed : REPLY
digits are sent as 1 byte text (ascii) is sent as 2 byte [code:1:4bb57f075f]memcpy_P( &ucByte, &LCD_SegTable[ucIndex], 1 ); ucBuffer[1] = 0xd0 | ( ucByte & 0x0f ); ucBuffer[0] = 0xd0 | (...
View Article