cdk4avr-users Mailing List for AVR Cross Development Kit
Brought to you by:
slz
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
From: Stephan L. <li...@ma...> - 2006-10-13 06:13:58
|
Am Donnerstag, 12. Oktober 2006 17:26 schrieb Thomas Loos: > Hi! Hi Thomas, > I've been working with WinAVR for a few months now, > and I have been waiting for a good time to get a Linux > development environment up and running. I downloaded > the RPMs from the cdk4avr sourceforge page in the list > of a "typical" system at: > > http://cdk4avr.sourceforge.net/ Welcome to Linux and CDK4AVR! > > I am having problems with dependencies and I can't > seem to find rpms that will resolve them without help. > Here is the output from one attemp: > > perl-base is needed by > cdk-avr-avarice-2.4-20060128.i586 > libintl.so.3 is needed by > cdk-avr-avarice-2.4-20060128.i586 That is a known problem with cross-distribution RPM handling. All the CDK4AVR packages was (re-)building on a standard Mandrake 2006. All RPM packages are depending on even this environment. The RPM installation on other distribution than Mandrake 2006 (ex. SuSE or FC) can fail. To solve your problems with dependencies you have to checkup the availability of the missing packages and libraries by hand and install the CDK4AVR packages with option --nodeps In your case: (1) "perl-base" is the Mandrake RPM package name -- on FC5 the package name is "perl" --> checkup with rpm -qi perl --> is it installed it is ok (2) "libintl.so.3" is the basic libintl library for internationalization. On Mandrake the package name is "libintl3" and was originally generated from "gettext" -- on FC5 the package name with even this library should be "gettext" --> checkup with rpm -qi gettext --> is it installed it is ok (3) installing with: rpm -hiv cdk-avr-avarice-2.4-20060128.i586.rpm --nodeps NOTE: You should know the version 2.4 of avarice is out-dated since a few days. I'm working on e new package release -- be tuned. Good luck, Stephan Linz > > Any ideas where I can get perl-base and libint1.so.3 > for Fedora Core 5? > > I'm not the only one in the world trying this so > hopefully someone can help! > > Thanks, > Tom > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > cdk4avr-users mailing list > cdk...@li... > https://lists.sourceforge.net/lists/listinfo/cdk4avr-users -- Mit freundlichen Gruessen Stephan Linz ========================================================================= Stephan Linz Softwareentwicklung MAZeT GmbH Email: mailto:li...@ma... Goeschwitzer Str. 32 Tel. : (3641) 2809-55 D-07745 Jena Fax : (3641) 2809-12 Besuchen Sie bitte unsere Web-Seiten: http://www.MAZeT.de ========================================================================= pub 1024D/958C74A7 2004-08-04 Stephan Linz <li...@ma...> Key fingerprint = 49B7 9706 04FD 9540 C863 DECB B59F 7974 958C 74A7 ========================================================================= |
From: Thomas L. <to...@ya...> - 2006-10-12 15:26:32
|
Hi! I've been working with WinAVR for a few months now, and I have been waiting for a good time to get a Linux development environment up and running. I downloaded the RPMs from the cdk4avr sourceforge page in the list of a "typical" system at: http://cdk4avr.sourceforge.net/ I am having problems with dependencies and I can't seem to find rpms that will resolve them without help. Here is the output from one attemp: perl-base is needed by cdk-avr-avarice-2.4-20060128.i586 libintl.so.3 is needed by cdk-avr-avarice-2.4-20060128.i586 Any ideas where I can get perl-base and libint1.so.3 for Fedora Core 5? I'm not the only one in the world trying this so hopefully someone can help! Thanks, Tom __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Stephan L. <li...@li...> - 2004-01-05 09:20:40
|
Hi Cezary, your problem is not cdk4avr tool chain related -- please contact one of the more related AVR email lists or forums. Ask the maintainer of simulavr: avr-gcc-list(at)avr1(dot)org http://www.avrfreaks.com Best Regards, Stephan Linz Am Dienstag, 30. Dezember 2003 17:43 schrieb Cezary Krzy?anowski: > Hi there > > I've wrote an alarm clock in C for the at90s2313 and I'm trying to test > it via simulavr and avr-gdb. Everything works just fine, but it doesn't > handle the interrupt. My interrupt occurs, when the timer0 overflows. > I've set the globab interrupt flag, the timer0interrupt flag and nothing > happens :/ The programs runs aimlesly (while (1)) doing nothing, cause > it doeasn't react to interrupts. I've tried to run the demo program from > avr-libc package, the one with pwn diode switching, but it doesn't work > eihter :/ I've also tried to find some way in avr-gdb to send an > interrupt to the program, but I was unable to find anything. Is it > possible to debug programs with interrupts?? > > Thx in advance > Cz@rny > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > cdk4avr-users mailing list > cdk...@li... > https://lists.sourceforge.net/lists/listinfo/cdk4avr-users -- -------------------------------------------------------- Li-Pro.Net |
From: <dhu...@o2...> - 2003-12-30 16:43:10
|
Hi there I've wrote an alarm clock in C for the at90s2313 and I'm trying to test it via simulavr and avr-gdb. Everything works just fine, but it doesn't handle the interrupt. My interrupt occurs, when the timer0 overflows. I've set the globab interrupt flag, the timer0interrupt flag and nothing happens :/ The programs runs aimlesly (while (1)) doing nothing, cause it doeasn't react to interrupts. I've tried to run the demo program from avr-libc package, the one with pwn diode switching, but it doesn't work eihter :/ I've also tried to find some way in avr-gdb to send an interrupt to the program, but I was unable to find anything. Is it possible to debug programs with interrupts?? Thx in advance Cz@rny |