AVR : i need help about development board schematic diagram : REPLY
please i need help about up [img] http://i.ebayimg.com/images/g/6DwAAOSwwE5WU~9h/s-l500.jpg [/img] i need schematic diagram
View ArticleAVR : i need help about development board schematic diagram : REPLY
What I see on the board: Connector for serial communication with IC max232 and sone capacitors. A crystal with two capacitors. This is the clock for the 8051. Power through a jack or the USB connector...
View ArticleAVR : i need help about development board schematic diagram : REPLY
[quote:e632ee4dad="bzijlstra"]What I see on the board: Connector for serial communication with IC max232 and sone capacitors. A crystal with two capacitors. This is the clock for the 8051. Power...
View ArticleBASCOM Project Blog : Weatherstation : REPLY
If you want the windbearing in characters, instead of degrees add this to the code [code:1:a176f4a895]Dim Nsew_value As Single Dim Nsew As String * 4 Call Lcd_text( "Windbearing:" , 5 , 272 , 2 ,...
View ArticleBASCOM-AVR : Programmer problem: "Chip differs at bytes address: ... : REPLY
I use this board from Olimex: [url]https://www.olimex.com/Products/AVR/Development/AVR-IO-M16/[/url] I understand the processor is ATmega16 ? My programmer is an Olimex AVR-ISP-MK2. The sourcefile...
View ArticleBASCOM-AVR : Programmer problem: "Chip differs at bytes address: ... : REPLY
I did test to make screenshot of AVR-type. It is ATMega16 indeed. But now programming the chip works fine. I made no changes to the program. Strange ! Case closed.
View ArticleShare your working BASCOM-AVR code here : S6D0129 Color display library : REPLY
Hi! Have anyone tried not only write to this display, but read data too? Does reading work?
View ArticleBASCOM-ARDUINO : Help _ simple examble for RX UART data : REPLY
[quote:e92652a38f="bzijlstra"]In this forum check Bascom Project Blog, and get the source code of the weatherstation. In it a routine for the Arduino Mega with just what you want. Below the inkey...
View ArticleBASCOM-ARDUINO : Help _ simple examble for RX UART data : REPLY
[quote:b967d638db="bzijlstra"]In this forum check Bascom Project Blog, and get the source code of the weatherstation. In it a routine for the Arduino Mega with just what you want. Below the inkey...
View ArticleBASCOM-ARDUINO : Help _ simple examble for RX UART data : REPLY
What I don't understand is how you Dim value as byte and later on check if value = "AAA" a byte is a value of 0 - 255. What you need is a string to hold the characters. You first have to grab all...
View ArticleBASCOM-AVR : DS1307 xMega issue : REPLY
I used the ds1307 with Hardware I2C on Xmega. Bus voltage 3.3V with active termination from Bascom help, power supply 5V - Vih is 2.2V, so 3.3V for logical 1 is ok....
View ArticleShare your working BASCOM-AVR code here : S6D0129 Color display library : REPLY
[quote:f6bb8883d8="Mrshilov"]Yes, reading works.[/quote:f6bb8883d8] Is there any cheats to get it work? I checked my code thoroughly, found no errors. I use 8-bit interface mode. Pull NRD down, wait...
View ArticleShare your working BASCOM-AVR code here : S6D0129 Color display library : REPLY
Are you set R22h (Read Data from GRAM Register) before reading?
View ArticleShare your working BASCOM-AVR code here : Fast library for SSD1289 LCD +...
Thank you Mrshilov, for sharing this library!
View ArticleBASCOM-AVR : mathematical equation : NEWTOPIC
Hello everyone How do I write this equation in BASCOM AVR??? [b:abef7f7f4d][color=red:abef7f7f4d](BASCOM-AVR version : 2.0.7.8 )[/b:abef7f7f4d][/color:abef7f7f4d]
View ArticleBASCOM-AVR : mathematical equation : REPLY
As you probably know, Bascom can only handle expressions one piece at a time, so you must break your complex expressions down into small pieces, evaluate each piece, then combine them back together,...
View ArticleBASCOM-AVR : mathematical equation : REPLY
Adrian said all I add You must increase the size of stack from the help (memory usage and local) [quote:78356def9a] The software stack is used to store the addresses of LOCAL variables and for...
View ArticleBASCOM-AVR : Serial Input with Atemega 128 : NEWTOPIC
Hi the following code example show a test peace for serial code with the Atemega 128. The Atemega 128 has 2 uarts so the configuration is not so easy as until now. But i did it :-) The serial output...
View ArticleBASCOM-AVR : Serial Input with Atemega 128 : REPLY
- always check the samplesCHIPS folder. it contains simple samples for most processors. in this case there is m128.bas which show communication for both serial ports. - when you only need COM2, you...
View Article