Tagged Questions

Open source software development tools for the Atmel AVR series.

learn more… | top users | synonyms

6
votes
5answers
1k views

8 bit enum, in C

I have to store instuctions, commands that I will be receiving via serial. The commands will be 8 bits long. I'd like to use Enumerations to deal with them in my code. Only a enumeration corresponds ...
2
votes
2answers
109 views

Leaving a data array (Font) in FLASH - PROGMEM in AVR GCC

Ahhh, PROGMEM, pointers, pointers to pointers, addresses of pointers... My head boggles. I have a data array for the font in question const uint8_t dejaVuSans9ptBitmaps[] = { /* @0 ' ' (5 ...
2
votes
3answers
111 views

Tasking with AVR-Ada

I'm trying to implement tasking features using AVR-Ada, but when I run make, I get these error messages: C:\avr_test>make avr-gcc.exe (GCC) 4.3.3 Copyright (C) 2008 Free Software Foundation, Inc. ...
2
votes
1answer
249 views

Using arduino Ethernet.h under Eclipse

I want to use eclipse for Arduino development and I have some issues. I use Eclipse + Eclipse AVR plugin + WinAVR. I managed to compile the Arduino core library into a static library. Now I want to ...
2
votes
3answers
298 views

Trying to define variables to specific memory locations

Hey, im using WinAVR and programing an ATMEGA32 in C. Basically, I want to link my C program to asm via the: asm(" ") command. Im trying to define memory locations in C to exact memory ...
2
votes
7answers
434 views

Assign delays for 1ms or 2ms in C?

Im using a code to configure a simple robot. Im using a WinAVR and the code used there is similar to C, but without stdio.h libraries and such, so codes for simple stuff should be entered manually ( ...
1
vote
3answers
213 views

pointers in C with a #define

The function: #define ASSOC(port) (*(volatile bit_field *) (&port)) The function call: #define SCLK ASSOC(PORTC).bit0 bit_field defined as a struct like this: typedef struct { unsigned ...
1
vote
2answers
124 views

How to combine two received inputs and read it as one whole number in WINAVR?

I want users to enter 2 digits using c=ReceiveByte() command. For example, I want the user to do the following : Enter 5 Enter 3 Output number 53 in ascii value on screen ( using hyperterminal ) ...
1
vote
1answer
3k views

How to compile and run c/c++ programs in Notepad++ using the WinAvr compiler

I want to use notepad++ instead of programmer's notepad. How can i use the WinAvr compiler with notepad++??
0
votes
1answer
61 views

Using LUFA as CDC for String Transmission

I'm trying to use my AT90USB162 (Minimus USB board) as a CDC for sending a constant string to an hyperterminal connected to a comport. So I got the demo code Demos/Device/ClassDriver/VirtualSerial and ...
0
votes
1answer
100 views

CMake error with AVR WINAVR compiler

The C compiler identification is GNU The CXX compiler identification is GNU Check for working C compiler: C:/WinAVR-20100110/bin/avr-gcc.exe Check for working C compiler: ...
0
votes
1answer
321 views

Build AVR Studio 4 project in AVR Studio 5

I have an AT90USB162 Minimus AVR which I want to integrate into a project. I downloaded the demo code from Minimus USB. This is a driver for using the AVR as a COM port. The project is written for ...
0
votes
3answers
289 views

Set a one bit in an 8-bit PIN without changing the other bits

Using winAVR for the following code. I got an 8-bit PIN here that I need to OR it with 00000010 or 0x02 to set the 7th bit. Now what I have to do is the following : Set Port B bit 7 Wait for 1ms ...
0
votes
3answers
570 views

Grouping Files in Project Explorer in Eclipse

I am newbie to Eclipse, I am planning to use it for AVR development with WinAVR and gcc. The feature I am looking for is the grouping of different files in the project, like all headers together, all ...
0
votes
2answers
339 views

help requires in winavr

i am trying to send ---.hex file to my siemens C55 throught serial port but while doing do i am getting an error "make.exe" program avrdude -p atmega8 -P com2 -c stk200 -U ...
-2
votes
2answers
425 views

Help required in WinAvr programming

i am trying to run a source code of win avr . after making the makefile when i try to send it using avrdude it is giving me error. Please any one can help me