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 to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1510 - 1539 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1510
Hi, I am trying to get Timers.c executing on the ATMEL STK501 development board with the ATmega128 uC. I modified the AVRX makefile and Examples makefile to...
justinmwebster
Offline Send Email
Mar 1, 2007
12:56 pm
1511
... So are you running an 8MHz crystal on your 128?...
jaydmdigital
Offline Send Email
Mar 1, 2007
5:29 pm
1512
Nope, I am running the mega128 from the 3.686 MHz STK500 clock. I had tried that previously, but without success. I built a clean AVRX 2.6f with just the CPU...
justinmwebster
Offline Send Email
Mar 2, 2007
6:38 am
1513
Hi Justin, ... I just saw an email on the avr-libc list that may be relevant. It was mentioning that some types of optimizations are only available for the ...
Dave Hylands
dhylands_99
Offline Send Email
Mar 2, 2007
7:27 am
1514
Hi Dave, Thanks for the input. I commented out: #pragma optimize=z 4 And no luck. I think this is used for the IAR compiler. I am using the GCC compiler. ...
justinmwebster
Offline Send Email
Mar 2, 2007
7:45 am
1515
Ok, I have finally gotten the LEDs to flash. I disabled the Atmega 103 compatibility fuse for the STK500 using AVR studio. That was luck, I would have never...
justinmwebster
Offline Send Email
Mar 2, 2007
8:51 am
1516
Looking at the code for AvrXWaitTimer, the comment mentions that the routine must stay critical, but the routine itself comprises of only: subi p1l, lo8(-2)...
darkdragonnascar
darkdragonna...
Offline Send Email
Mar 3, 2007
11:46 pm
1517
AvrXWaitTimer() simply decrements a pointer and "falls through" to the wait semaphore routine. It is, indeed, non-critical code since it is just adjusting the...
larry barello
lbarello
Offline Send Email
Mar 4, 2007
12:21 am
1518
Ahhh, I see. Thanks! ... the wait ... just ... The ... critical section ... one and I ... there is a ... tells the ... time it ... makes no ... to make ... ...
darkdragonnascar
darkdragonna...
Offline Send Email
Mar 4, 2007
7:06 am
1519
Hello. I am a student from Indonesia . I am interested using AvrX in my project. My simple project is a RTC using DS1337. I make 3 task : task 1 (read data...
liem_ieie
Offline Send Email
Mar 6, 2007
4:49 am
1520
Hi, I need some info about the Message Queue functionality. The website does not provide the info I require. I have looked in the code, and it seems the...
justinmwebster
Offline Send Email
Mar 7, 2007
9:45 am
1521
It is up to you to manage the creation and destruction of queue elements. You could declare an array, you could use malloc(), etc. And yes, you need to wait...
larry barello
lbarello
Offline Send Email
Mar 7, 2007
2:43 pm
1522
Hi Larry, Can you please answer a few more questions. I presume your Message queues are multi-thread safe - more than one thread can read from a queue? Also,...
justinmwebster
Offline Send Email
Mar 8, 2007
10:46 am
1523
Yes, everything about AvrX is thread safe. If the queue is empty the tasks will queue onto the queue waiting. The first one to block will be the first to be...
larry barello
lbarello
Offline Send Email
Mar 8, 2007
1:50 pm
1524
Hello, my name is Daniel and I´m new in this group! I have a problem with tht compiling of the AvrX 2.6e modified to ATmega16. That is my error when I want to...
penzibr
Offline Send Email
Mar 9, 2007
2:37 pm
1525
Hello, I have few questions. #1 I know that AvrX has 16 priority levels. How you could descripe these levels: 1 = highest and 16 = lowest, or how is this...
jvillstedt
Offline Send Email
Mar 12, 2007
1:37 pm
1526
Four bits are reserved in the task data structure (PID) for the priority, hence 16 levels. This is archaic: I looked at the current code and apparently I...
larry barello
lbarello
Offline Send Email
Mar 12, 2007
2:12 pm
1527
Hi, Could anyone tell me why my task stop sometimes? Here is my example. This example is taken from tskIOwatcher.c module. TCB delayTmr is defined in main.c...
jvillstedt
Offline Send Email
Mar 12, 2007
8:00 pm
1528
Hi, If AVRX is compiled to a library using GCC, can i link it to a project using IAR. Regards, Harmon...
hcsicat
Offline Send Email
Mar 20, 2007
10:43 am
1529
Dear all, I make a TWI in my AVRX program. But it doesn't work, i found that the program never enter the twi interrupt. my code for the interrupt are: ...
zmh
zhu_minghuan
Offline Send Email
Mar 22, 2007
12:11 pm
1530
... I made a mistake, I can enter TWI interrupt, but can not save the local varible in the task Twislave, when TWI interrupt occured. I change the local...
zmh
zhu_minghuan
Offline Send Email
Mar 23, 2007
1:24 am
1531
Local and automatic variables are placed on the stack (or registers on the AVR, then the stack when full). Register values and the stack, in an interrupt...
larry barello
lbarello
Offline Send Email
Mar 23, 2007
5:15 am
1532
Hello, everybody! I have a question in MessageQueue. MessageQueue have two members, one is the pointer to MessageControlBlock, the other one is <pProcessID...
yu_bo
Offline Send Email
Mar 26, 2007
1:23 pm
1533
The semaphore in the MessageQueue is for receivers to queue waiting for a message. It can also be used by senders that block waiting for a receiver. The...
larry barello
lbarello
Offline Send Email
Mar 26, 2007
1:36 pm
1534
Hi Larry, I have a question abbout local variables. In AvrX2.9f, some APIs using pointers and tempororary variables, such as (Z, temp3:temp2, temp1:temp0), but...
yu_bo
Offline Send Email
Mar 28, 2007
1:18 am
1535
Avrx saves any registers needed to comply with GCC C calling conventions. IntProlog is preparing the current task for a context switch (from one set of...
larry barello
lbarello
Offline Send Email
Mar 28, 2007
5:22 am
1536
Avrx saves any registers needed to comply with GCC C calling conventions. IntProlog is preparing the current task for a context switch (from one set of...
larry barello
lbarello
Offline Send Email
Mar 28, 2007
5:28 am
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
Messages 1510 - 1539 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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