Search the web
Sign In
New User? Sign Up
avrx · Support group for the AvrX RTOS
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1537 - 1566 of 1835   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1537
When compiling for the atmega168 I get this error: if I change the target it assembles fine.. what am I missing? (using 2.6f) Assembling:...
j_s_connell
Offline Send Email
Apr 4, 2007
11:42 pm
1538
Fixed my problem, looks like register naming problem (maybe i have an older version of avrx). To fix added following to avrx_generatesinglestepinterrupt.S: ...
j_s_connell
Offline Send Email
Apr 5, 2007
6:29 am
1539
Hi Larry: IntProlog have such code: ldd R25, Y+_R25 ; need to restore this register (used for SREG) IntProlog use R25 to save SREG then push it. So the R25...
yu_bo
Offline Send Email
Apr 6, 2007
10:43 am
1540
IntProlog does not "know" where it is coming from (C code, your own assembly code, somewhere inside a C function due to an interrupt, etc) so it has to save...
larry barello
lbarello
Offline Send Email
Apr 6, 2007
2:09 pm
1541
I'm attempting to use AvrX 2.6g on an ATmega168 and at first my compilation of everything with the latest WinAVR tools seemed to work. However, I've since...
michael_peter_thompson
michael_pete...
Offline Send Email
Apr 9, 2007
12:59 am
1542
For "context switch", must save all the processor state for one task. It is ok. When call IntProlog, all registers and SREG state are saved. When IntProlog...
yu_bo
Offline Send Email
Apr 9, 2007
10:53 am
1543
... First of all, you can use sei(); and cli(); to enable and disable interrupts. In the following code you've enabled interrupts rather than disabled as the...
Brian Logan
getsmedown2001
Offline Send Email
Apr 9, 2007
11:37 am
1544
IntProlog is not only used to perform 1/2 context switch in interrupt handlers but also in C procedures that cause a context switch (e.g. AvrXSetSemaphore())....
larry Barello
lbarello
Offline Send Email
Apr 9, 2007
1:49 pm
1545
Brian, Thanks for the suggestions. ... I've reworked my serial code to work more like that provided in the AvrXSimpleSerial.c in AvrXSerialExample20060413.zip...
michael_peter_thompson
michael_pete...
Offline Send Email
Apr 9, 2007
11:11 pm
1546
... Just a quick update with AvrX on the ATmega168. I fixed the issue Brian mentioned above in the serial code, but I did have one line of code before...
michael_peter_thompson
michael_pete...
Offline Send Email
Apr 9, 2007
11:11 pm
1547
hi, I want to know how to port WinAVR libraries into CodeVision so that i can use them with codevision. If anyone has already done that please share (even if...
Pankaj Agrawal
pankaj_visitme
Offline Send Email
Apr 10, 2007
12:24 pm
1548
I decide to begin learning avrX... so here's what I did and problem #1. Installed AVRstudio update 4.13 Installed WinAVR - latest Compiled avrX kernel. No...
stevech11
Offline Send Email
Apr 11, 2007
4:23 am
1549
All the warnings are new with the latest compiler. The issue is that a lot of folks assumed that signed char (int8_t) == char and freely mixed and matched...
larry Barello
lbarello
Offline Send Email
Apr 11, 2007
12:52 pm
1550
Thanks, Larry. In addition to the type for char issue, the errors I got, shown below, included some where fdevopen() was changed quite a bit - different types...
stevech11
Offline Send Email
Apr 11, 2007
7:32 pm
1551
Hello, Mike! ... No, due to my schedule on the project, I wasn't able to spend more effort to track down this problem. Finally, I didn't use AvrX at all. ...
Clemens Koller
clemens.koller@...
Send Email
Apr 12, 2007
3:41 am
1552
Hi Steve, ... Unfortunately, this is avrlibc version dependant. I put the following in my code (which isn't avrx related, but has the same issues): I've used...
Dave Hylands
dhylands_99
Offline Send Email
Apr 12, 2007
3:51 am
1553
Thanks much. I changed the code in the serial examples as per the below, sort of, and now there are no compiler errors. I ran the two example serial programs...
stevech11
Offline Send Email
Apr 12, 2007
5:56 am
1554
Hi Larry, sorry for trouble you so much. I have a question in AvrXIntReschedule. Function AvrXIntReschedule have such codes: sts RunQueue+NextL, p1l sts...
yu_bo
Offline Send Email
Apr 12, 2007
8:05 am
1555
AvrXReschedule() is not well tested. I wrote it long ago as a favor to someone who wanted round-robin scheduling of like priority tasks. Despite not being...
larry Barello
lbarello
Offline Send Email
Apr 12, 2007
12:46 pm
1556
... The example is probably for an earlier version of AVRlibc. In particular, fdevopen was vastly improved. To use the older fdevopen nomenclature, you need...
nf4x
Online Now Send Email
Apr 12, 2007
2:33 pm
1557
It's my mistake, I just speculating based upon code inspection. Today I do some test in task reschedule. The two task, task2 and task3 , have the same...
yu_bo
Offline Send Email
Apr 13, 2007
2:12 am
1558
The code in timmer interruput is : AVRX_SIGINT(SIG_OVERFLOW0) { IntProlog(); TCNT0 = TCNT0_INIT; AvrXIntReschedule(); Epilog(); } Best wishes! YuBo...
yu_bo
Offline Send Email
Apr 13, 2007
2:24 am
1559
I too am having problems compiling the serial examples. I added the #define __STDIO_FDEVOPEN_COMPAT_12 and got a litle further, but got a link error now. Here...
Glenn Pipe
ggpipe
Offline Send Email
Apr 15, 2007
1:50 pm
1560
with the latest WinAVR and AVR Studio, I succeeded in getting the serial I/O examples to compile. O did not change any #ifdefs nor the .h, nor the makefile. I...
stevech11
Offline Send Email
Apr 15, 2007
6:23 pm
1561
correction to prior posting.. fdevopen( UART0_PutCharStdio, UART0_GetCharStdio );...
stevech11
Offline Send Email
Apr 16, 2007
3:45 am
1562
... Yeah I tried that too but I still get the same linking error. Thanks, Glenn...
Glenn Pipe
ggpipe
Offline Send Email
Apr 16, 2007
5:30 pm
1563
Have you put all settings back to "stock"? I can send you the example files I'm using if that'll help. _____ From: avrx@yahoogroups.com...
steve childress
stevech11
Offline Send Email
Apr 17, 2007
3:25 am
1564
Hi I am new with Avrx and I got the AVRX example code MessageTimers.c running fine on my old at90s8515 controller with 4.096 MHz clock. To be able to get it...
Henko Gouws
gouwsh
Offline Send Email
Apr 18, 2007
9:43 pm
1565
Hi all I have a problem with a switch-statement in a avrx-interrupt-routine? In the interrupt routine, I use a switch statement with a static variable. After...
rg.iftest
Offline Send Email
Apr 26, 2007
4:48 pm
1566
... Can you post the code for the interrupt?...
Brian Logan
getsmedown2001
Offline Send Email
Apr 26, 2007
6:41 pm
Messages 1537 - 1566 of 1835   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help