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 1263 - 1292 of 1912   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1263
I'm just getting started with avrx and looking at the monitor task. It looks like it's been left behind by recent changes to serialio, so I shouldn't really...
wimlwiml
Offline Send Email
Mar 5, 2006
6:26 am
1264
Hello, Is anyone using AvrX in an automotive or other safety-critical product? Thanks, Jonathan...
Jonathan Goldberg
jonathan_gol...
Offline Send Email
Mar 7, 2006
5:19 pm
1265
I am using AVRX as a CNC controller. I made G-code parser and linear/circular interpolation codeto support G01, G02, G03 command. I found AVRX code are not...
Muntak son
muntak
Offline Send Email
Mar 8, 2006
4:10 pm
1266
Hi everyone, I found in the database section that AvrXTestSemaphore should be changed to preserve the I-bit. I copied the code into this message. Can anyone...
marijnblokland
Offline Send Email
Mar 16, 2006
12:01 pm
1267
Hi everyone, I found in the database section that each timercontrolblock on the stack ought te be initialized. As my programming skills are rather limited I...
marijnblokland
Offline Send Email
Mar 16, 2006
12:50 pm
1268
Hi Brian and everyone else, over the past few hours I have been strugling with a problem regarding te EEPROM. I noticed that every once in while calibration...
marijnblokland
Offline Send Email
Mar 16, 2006
1:18 pm
1269
Attached is a "fixed" version of the file. Sorry, but there were a couple of things fixed since the last release. I'll add the critical section around the...
Larry Barello
lbarello
Offline Send Email
Mar 16, 2006
3:51 pm
1270
Hello , I have got a certain query on avrgcc. I am getting error. "No rule to make target test.o needed by test.elf" were test is my main file. i have already...
Naveen Koul
ernaveenkoul
Offline Send Email
Mar 20, 2006
12:32 pm
1271
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: ...
Giri Y. Atmaja
giri_y_atmaja
Offline Send Email
Mar 22, 2006
4:10 am
1272
I am not using AvrX, but I do have a TWI driver that seems to work great. I started with the Atmel app note for SMBus slave (AVR316) and wrote an SMBus ...
Larry Barello
lbarello
Offline Send Email
Mar 22, 2006
4:50 am
1273
... Do you have a makefile rule (implicit or explicit) that can make test.o? If implicit, maybe try making it explicit, just to check: test.o: test.c avr-gcc...
wimlwiml
Offline Send Email
Mar 25, 2006
8:11 am
1274
Giri, Although I don't use avrx (it's new to me, and with uni commitments I haven't had much free time to learn it), I have played with TWI using the...
Adam
adam_r76
Offline Send Email
Mar 25, 2006
3:11 pm
1275
yeah, it's the address. i've fix it up, and now it's working.. thanks a lot.. Regards, Giri...
Giri Y. Atmaja
giri_y_atmaja
Offline Send Email
Mar 27, 2006
7:21 am
1276
Hi there, I successfully built and uploaded the SerialExample task bundled with AvrX library, but can't manage to get the output string with a simple cat...
mirko.bordignon
Offline Send Email
Mar 28, 2006
3:39 pm
1277
I think the command line is *removing* the .eeprom section from the .hex output. Try simplifying your code to just poking some characters out the usart port ...
Larry Barello
lbarello
Offline Send Email
Mar 28, 2006
8:15 pm
1278
got all working larry, many thanks for the .eeprom hint (didn't pay enough attention probably) as for the serial issue, I just forgot to check my pc serial...
mirko.bordignon
Offline Send Email
Mar 28, 2006
9:12 pm
1279
I don't. I develop strictly under Windows using WinAVr cross compiler and tools. I then use the JTAG pod with Atmel Studio. I believe that you can use GDB +...
Larry Barello
lbarello
Offline Send Email
Mar 28, 2006
11:28 pm
1280
Hi friends, I'm working with Atmega128 microcontroller on MAVRIC-IIB board. I have loaded AvrX Operative System in the micro and I´m trying to comunicate the...
deividramos82
Offline Send Email
Apr 7, 2006
1:24 pm
1281
There are two serial examples. One buffered and one simple. The simple one blocks when the USART is full. The buffered one can accept up to the buffer size...
Larry Barello
lbarello
Offline Send Email
Apr 7, 2006
2:49 pm
1282
Thank you very much Larry!!! I will try in that way. See you. It's amazing. I have been in Seattle studing my last year of engineering. I was an exchange...
deividramos82
Offline Send Email
Apr 11, 2006
7:25 am
1283
Hi, thanks for the great OS. I'm really having fun learning it and using it. I've somehow caused some strange behavior on one of my threads and have been...
jputman004
Offline Send Email
Apr 13, 2006
9:28 pm
1284
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the avrx group. File :...
avrx@yahoogroups.com
Send Email
Apr 13, 2006
9:29 pm
1285
I updated the generalized serial I/O sample code and placed a .zip file out in the files section. The code uses the new FILE syntax which is more space ...
Larry Barello
lbarello
Offline Send Email
Apr 13, 2006
9:34 pm
1286
I have just started using AVRX - great stuff. I have been developing and testing on the run and have now come across a problem that has me 'stumped'. I am...
shane_bolton
Offline Send Email
Apr 19, 2006
1:17 pm
1287
Hello all I have a need for short delays while using AvrX (~ 100us). Usually I would do this with a for loop and some nops. If I use OPT = s (as specified),...
gryvnstn
Offline Send Email
Apr 19, 2006
2:09 pm
1288
Declare the loop variable as "volatile" to disable compiler optimization. e.g. static volatile uint8_t foo; ... for (foo = 0; foo < delay; foo++) { asm("nop");...
Larry Barello
lbarello
Offline Send Email
Apr 19, 2006
2:27 pm
1289
This isn't a lot of information to work with. Do the tasks ever block and allow another task to run? The entire premise of AvrX is that task run until...
Larry Barello
lbarello
Offline Send Email
Apr 19, 2006
2:29 pm
1290
Hi I'm not sure if this helps you to solve your problem, but I was once running into a problem when using other optimisation than 's'. The problem was, AvrX is...
Alex Raimondi
hidklecks
Offline Send Email
Apr 19, 2006
2:33 pm
1291
... kept in ... Thanks Alex. I will keep this in mind as I plug on. Regards Ray...
gryvnstn
Offline Send Email
Apr 19, 2006
5:45 pm
1292
Thanks Larry. Also for AvrX. I am slowly getting the hang of things and it is a joy to not have to worry (too much) about the housekeeping. Regards Ray ... ...
gryvnstn
Offline Send Email
Apr 19, 2006
5:46 pm
Messages 1263 - 1292 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