Open source software development tools for the Atmel AVR series.
0
votes
2answers
39 views
How to flash error if a macro not defined?
I want my program to flash compile time error like "LCD_PORT not defined" if it is not defined in program itself. For that I modified the header file like this
.
.
.
#if LCD_IO_MODE
#ifndef LCD_PORT
...
0
votes
2answers
102 views
Generate/ output clock pulse ( C code )
Im using Ethernut 2.1 B and I need a C program that outputs a clock signal at the timer 1 output B, with other words on output OCIB. The frequency of the clock signal should be at 1.0 kHz.
Anyone ...
0
votes
2answers
183 views
Compiling .c to .hex - cc1.exe: error: avr25: No such file or directory
Today I finally managed to program attiny2313a via Arduino Uno. It was a test blink program. After it was uploaded I saw that the LED blinked with 8 seconds delays instead of 1 second, so I decided to ...
3
votes
1answer
339 views
AVR-C error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token [closed]
I'm currently attempting to take the code library written for the Arduino USB Host shield and decouple it from the Arduino core libraries so that I can use the code in a non-Arduino microcontroller ...
1
vote
1answer
212 views
memcpy_P function AVR?
void * memcpy_P( void * dest, PGM_VOID_P src, size_t n )
Could someone please tell me where the above function is implemented in the avr libc library?
I can only seem to find a definition for the ...
0
votes
1answer
960 views
Implementing timer code for Atmega 8 into atmega 16
This code snippet is written for atmega 8 taken from clapper circuit using atmega 8.Can anyone convert this code snippet for atmega-16 with a little explanation.As i am trying to implement the same ...
-1
votes
1answer
69 views
How to link GNU command line compiler with C# [closed]
I am trying to execute the make command from my C# program (via spawning cmd). The shell is spawned, but compilation does not work (make is not executed).
Everything works fine when I type make in a ...
3
votes
1answer
55 views
WinAVR and native Windows console apps
I'm not that experienced with C, but I've been happily hacking firmware on some hobby projects using WinAVR. I'm visually impaired so I prefer using make files and the command line, instead of a ...
2
votes
1answer
200 views
AES function in AVR Crypto Lib not compiling
I'm trying to use the AES function in AVR Crypto Lib (http://avrcryptolib.das-labor.org/trac/wiki/AES) in my AVR project however when I copy all the required files it gives me the errors below. I'm ...
0
votes
1answer
149 views
Cannot change variable using itself in avr-gcc?
I'm having a problem with some C code for a microcontroller. It seems like a language or compiler problem, but the program will compile just fine. When ran on the microcontroller, however, the problem ...
0
votes
2answers
304 views
Embedded C Passing a String to function
I'm trying to send an array of characters in C, byte by byte to an output for a microcontroller. I'm using the following code:
int main() {
...
LogOutput("Hello World!");
}
void LogOutput(char ...
2
votes
1answer
303 views
WINAVR not finding file in include path with whitespace
When I supply an path for EXTRAINCDIRS (in the Makefile, following the sample provided by WINAVR) without whitespace, the compiler is able to find my header file, but when I use a path containing ...
0
votes
1answer
86 views
Multi-interrupt
my question is about real time data logging and multi-interrupt.
i am trying to program an MCU-ATMega 1280 by winAVR to make it read the pulses from the quadrature encoder(20um/pitch) and store the ...
0
votes
1answer
122 views
having trouble with winavr gcc in eclipse c/c++
I am using eclipse c/c++ when i create a c project then it does not shows winavr gcc in the toolchain list but i have installed WinAVR-20100110 in c drive and my eclipse is also in the same directory.
...
0
votes
2answers
1k views
C++; eclipse linker error
So working on getting my eclipse IDE going so I can develop my arduino uno in eclipse.
My C++ is weak so this is probably a nube error on my part.
I have a blink program that looks for an arduino ...
0
votes
1answer
237 views
Linking .h & .c Files to Main.c with WinAVR
I am using WINAVR to progam an Amtel ATMEGA328 Chip.
I am trying to Link a library to my file but I am not sure exactly how to do it, and what I need to edit in the make file.
I have a lcd_lib.h and ...
0
votes
1answer
400 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 ...
2
votes
2answers
909 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 ...
0
votes
1answer
375 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: ...
3
votes
3answers
570 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.
...
0
votes
1answer
1k 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 ...
2
votes
1answer
902 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
2answers
1k 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 ...
1
vote
3answers
389 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
186 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 )
...
0
votes
3answers
1k 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
...
3
votes
7answers
785 views
Assign delays for 1 ms or 2 ms in C?
I'm using code to configure a simple robot. I'm using WinAVR, and the code used there is similar to C, but without stdio.h libraries and such, so code for simple stuff should be entered manually (for ...
1
vote
3answers
913 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 ...
1
vote
1answer
6k 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++??
10
votes
5answers
3k 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 ...
0
votes
2answers
377 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
484 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