EASY TCP/IP : Wiznet W5500 : REPLY
if you send me the hardware i can add a lib for it. it is probably derived from w5200 so it should not be too much work. i did not checked the datasheets. do you have a link to the PDF ?
View ArticleBASCOM-AVR : Impulse counting : REPLY
Thank you guys! Both are actually very simple solutions. Not sure which one is better. Perhaps I'll just try them both. :wink:
View ArticleEASY TCP/IP : Wiznet W5500 : REPLY
you are probably right, the w5500 has to be similar to w5200. the datasheet for the w5500 can be found at wiznet pages. links are below my post. i would very much like to send you the hardware! is the...
View ArticleBASCOM-AVR : ATMega8 Trouble with ADC convertes : REPLY
Hello Plos and Paulvk. As indicated in the data sheet LM35 TI I put a 2k2 resistor in series with the output of integrated. Also remove the 100nF capacitor on analog input of the microcontroller. The...
View ArticleBASCOM-AVR : ATMega8 Trouble with ADC convertes : REPLY
Well done ! And thanks for letting us know. Something that's often forgotten. Good luck with the rest of the project and have fun (kudos to Ben)
View ArticleBASCOM-AVR : Library .equ references : REPLY
Bad sign when I reply to my own posts....... :) Looking at the library help file(s), routine in the examples, libDEMO.bas, code below.... I added the z = myconst as this is what I am trying to do....
View ArticleBASCOM-AVR : Library .equ references : REPLY
If you make the routine Test known to the main code via external, why do you believe that the main code would know about Testconst, i.e. its contained equ, which seems not to be part of Test?
View ArticleBASCOM-AVR : Library .equ references : REPLY
MWS- Cause it is contained in the report output of the compiler. Even if I add $external testconst I still get an error : Error : 242 Line : 23 Source variable does not match the target variable [ 0]...
View ArticleBASCOM-AVR : Library .equ references : REPLY
[quote:fdb9a77bc5="mmarlette"]It appears that a .equ is like a local CONST in the library. It can't be referenced outside of the library.[/quote:fdb9a77bc5] Yeah, tried some, but did not succeed...
View ArticleBASCOM-AVR : Calibration 32Mhz atxmega128a3 : REPLY
Hello Tiny, I have the same issue to calibrate the 32 Mhz, did you find the solution? Davide
View ArticleBASCOM-AVR : Library .equ references : REPLY
[quote:95fa3cd637="MWS"] The asterisk before ldi makes the compiler ignore the missing myc constant declaration, if you want to compile the lib via tools --> lib manager for making a lbx out...
View ArticleBASCOM-AVR : Calibration 32Mhz atxmega128a3 : REPLY
Hoi Davide, see the piece of code in previous post is enabled both clocks, the 32mhz and the 2 mhz and enable both ddll registers Best regards, Tiny
View ArticleBASCOM-AVR : Calibration 32Mhz atxmega128a3 : REPLY
Hi Tiny, I tried but the drift is about 400 khz in 5 minutes, from 32.4 Mhz to 32.0 Mhz, with or without dfll no difference. On some board I have 33.4 Mhz at the start. a little to much for 115200...
View ArticleBASCOM-AVR : 3 digit bcd? : NEWTOPIC
I want to build a counter with button from 0 to 999 and drive 3 digit 7 segment display. I read the help file and also some example and found examples only for 2 digits from 0 to 99 In the past with...
View ArticleBASCOM-AVR : 3 digit bcd? : REPLY
Hello petros047 There are a number of ways such a timer could be made. Do you want to multiplex the digits or use individual displays? As far as commands go makebcd is in Bascom. You can use my clock...
View ArticleBASCOM-AVR : Impulse counting : REPLY
Visovians way turned out to work a lot better. System runs perfectly now. Also I need that function actually four times. With the software counter method I wont need a chip with 4 16-bit-timers but...
View ArticleBASCOM-AVR : clock & date : NEWTOPIC
need help, I am a beginner baskom avr .. how do I make a software clock and date. here I use ATmega8. thank you .. :) [b:04dcd35a00][color=red:04dcd35a00](BASCOM-AVR version : 2.0.7.5 , Latest :...
View ArticleBASCOM-AVR : 3 digit bcd? : REPLY
[quote:ee79125e0e]In the past with assembly I use the routine bin2bcd16 for that propose. [/quote:ee79125e0e] You can use [code:1:ee79125e0e]Dim Number As Word Dim Tempw As Word Dim Hundreds As Word...
View ArticleBASCOM-AVR : clock & date : REPLY
Check [url=http://www.svet-el.si/english/index.php/projects/5-practical/43-avr191]this link. [/url] Cheers Jure
View ArticleBASCOM-AVR : clock & date : REPLY
Hell kiki This may also be helpful http://www.mcselec.com/index.php?option=com_content&task=view&id=318&Itemid=57 Regards Paul
View Article