avr-gcc is a suite of executable software development tools for Atmel AVR RISC processors
1
vote
1answer
43 views
Byte array unioned with a struct (byte aligment)
I would like to combine a struct and a byte array in a union. The compiler is gcc.
Is the following considered good/save code for a 32bit embedded controller (AVR)?
Do I have to worry about the byte ...
0
votes
0answers
73 views
Arduino Leonardo stuck [duplicate]
I accidentally uploaded some code without any mention to
void loop() { }
or
void setup() { }
As a result I uploaded it as:
int main(void) {
...
while(1) { infinite loop }
}
Now I ...
0
votes
1answer
38 views
avr-gcc: No such file or directory
I have been following the TinyOS tutorial at this link: http://www.cse.wustl.edu/~lu/cse521s/Slides/tutorial.pdf. I cannot get the final project code to compile in tinyos. I'm using windows xp with ...
1
vote
1answer
92 views
C++ Standard compliance in AVR-GCC
I'm learning to program my Arduino, but I have a pretty solid background in C++, which means that I was very disappointed to find that I couldn't use the C++ Standard Library. I've been looking around ...
1
vote
1answer
66 views
GCC linking / symbol name mangling with C and assembler files
I'm having some trouble compiling and linking a library that's written in assembler with my program code which is in C. In my case it's for an AVR microcontroller using the avr-gcc suite, but I ...
0
votes
1answer
40 views
__attribute__((OS_main)) results in strange behaviour in AVR
I don't know how to precisely described the error I am seeing. If I set up my port register in main() everything works as intended. However if I try to do it in a function, the program halts.
main.c:
...
1
vote
0answers
58 views
What does `asm(“” : “+r” (myVar));` mean in AVR-GCC?
I found following lines in the code of someone else:
uint16_t someConstantFactorVariable = ...;
asm("" : "+r" (someConstantFactorVariable));
The someConstantFactorVariable is inside a frequently ...
2
votes
3answers
115 views
Unexpected global variable read result in C++ using avr-gcc for (local variable access is as expected)
I am getting unexpected global variable read results when compiling the following code in avr-gcc 4.6.2 for ATmega328:
#include <avr/io.h>
#include <util/delay.h>
#define LED_PORT ...
7
votes
4answers
180 views
can GCC print out intermediate results?
Check the code below:
#include <avr/io.h>
const uint16_t baudrate = 9600;
void setupUART( void ) {
uint16_t ubrr = ( ( F_CPU / ( 16 * (float) baudrate ) ) - 1 + .5 );
UBRRH = ...
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
...
-1
votes
1answer
76 views
How to construct/create a uint8_t variable emulating a USB Buffer Value
I am using Atmel Studio and I am programming with
Atmel Studio 6 (Version: 6.0.1996 - Service Pack 2)
AVRGCC
I have a variable that receives the value of the usb UART comunication
/* Buffer to hold ...
0
votes
1answer
326 views
Accessing RTC(DS1307) through I2C in ATmega16
I have written a code to access RTC(DS1307) through I2C using ATmega16 and I am using compiler AVR Studio 4.
Code is given below:-
#include<avr/io.h>
#include<util/delay.h>
#define F_CPU ...
1
vote
2answers
1k views
Android cannot talk to arduino using avrdude
I am using avrdude for android (http://code.google.com/p/andavr/).
I can compile the c code. I can run
$ avr-gcc -Os -DF_CPU=16000000UL -mmcu=atmega328p -c -o led.o led.c
$ avr-gcc -mmcu=atmega328p ...
1
vote
1answer
150 views
Arduino inline ASM not working as expected
I'm trying to build a clock, so I'm working with ASM and an arduino. For most parts, plain C will be fine, but for preparing the time to be output to BCD to Decimal converters I decided to go with ...
1
vote
1answer
252 views
how to activate 16bit timer on AVR programming
I have an atmega168a chip. I use Counter 0 to toggle PORTC by using ISR(TIMER0_COMPA_vect) and ISR(TIMERB_COMPA_vect) interrupt sub-routines. I would like to activate the 16-bit timer when if ...
1
vote
1answer
121 views
Makefile Circular Dependency + No such file error
I have been trying to write a makefile for my avr gcc project using a template. This is my first time writing one (so far i've just been using the default inbuilt makefile in AVR Studio 4)
When i try ...
0
votes
1answer
67 views
Mega Arduino 2560 and Eclipse
I have an Arduino Mega 2560. I want to make it communicate with Eclipse in order set a program on it. I have managed to work with Arduino Uno and Arduino Pro Mini until now.
With Arduino Mega 2560, ...
0
votes
1answer
58 views
avr-gcc link error with independent obj
a little project of avr, when i directly compile main.c(all other c are included in main.c), all ok.
avr-gcc -Wall -mmcu=atmega8 -g -O1 $1 -o $1.out
avr-objdump -dS $1.out>$1.asm
with ...
0
votes
1answer
190 views
Serial communication in Atmega128
I want send some string to PC via serial bus. In cute com its displaying the string along with some chars are missing and at the starting and end of the string its appending some hex numbers. Why this ...
0
votes
2answers
184 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 ...
0
votes
3answers
177 views
System calls not working in Atmel AVR Studio (with ASF)
I am not getting answers on the AVR Freaks forum and wonder if someone here could help me.
The answer might lie in this SO question, but I am not sure why it would be necessary.
Basically, I have my ...
1
vote
1answer
74 views
Interacting with an AVR Microcontroller on a Mac
I have recently purchased the ATiny84 microcontroller and I was wondering if I could upload code to it from my Macbook Pro that runs snowleopard. Specifically, could I run c files and FreeRTOS?
1
vote
1answer
109 views
Have linker remove unused object files for avr/gcc
I'm using avr-gcc for an atmega-328p micro controller.
The code is built with:
avr-gcc -g -Wall -Os -mmcu=atmega328p -D__AVR_ATmega3280__ -DARCH_AVR -I/usr/avr/include -DF_CPU=16000000 -c -o heap.o ...
-1
votes
1answer
181 views
Switch statement AVR-GCC
Hey so here is just a simple program i wrote in c, compiled under avr-gcc..
The corresponding assembly code is posted too.
Still cant understand what the assembly code for the switch statement is ...
0
votes
1answer
176 views
Assembly code for a switch statement using AVR-GCC
Hey I am having trouble understanding the assembly code omitted by the compiler for the following switch statemet. It is different than the usual assembly code I see from using gcc etc.
...
3
votes
2answers
281 views
ATtiny programming a function - appears to freeze
I am new to programming ATtiny chips. I ran the equivalent program to this on an Arduino and it worked, but when running it on an ATtiny2313, although no error message appears, the program appears to ...
0
votes
1answer
398 views
Arduino Assembler programming: Nothing happens
Hi StackOverflow community,
I am trying to program my old Arduino Duemilanove Board (Atmega 168V-10PU) in Assembler. I tried it a few times before but everytime the code was not executed. So i tried ...
1
vote
1answer
216 views
Errors Compiling Procyon Library with AVR Studio 6
I'm having some trouble with compiling the Procyon libraries with AVR Studio 6. The Code i am using works entirely with AVR studio 4.
The following lines fail to compile in this common lib:
//! ...
2
votes
1answer
131 views
Procyon Libraries with AVR Studio 6
I am having a problem using the all of the libraries with AVR Studio 6. For now I am attempting to use the timer.h library.
I have included the procyon file as a directory by including it in ...
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
2answers
206 views
bit and byte interpretation in AVR C
I know this may be wrong section for this but my problem is Microcontroller programming specific (AVR mostly)!
I am sending bytes between two AVR atmega8 using Uart where each bit in the byte stands ...
1
vote
3answers
187 views
Pre-processor directive to concatenate a symbol with a variable value in C
This is how symbol concatenation is done in C
#define conc(a,b) a ## b
eg:
conc(hello,World) will make the symbol helloWorld.
What I need to know is a bit different. Say there's a variable n ...
0
votes
1answer
180 views
Does AVR-GCC properly works with 16-bit AVR I/O registers
Sorry for bad English.
Preambula
It's known that for atomic and simultaneous reading/writing high and low part of 16-bit I/O registers (timer-counters, ICR/OCR, ADC...) AVR use shadow temporary ...
1
vote
2answers
280 views
How to compile V-USB for arduino?
Simply put, I downloaded a port of V-USB for Arduino and can't seem to compile the example that came with it. I get the following message when trying to compile using Arduino IDE 1.0.1
avr-gcc: ...
0
votes
0answers
109 views
Porting avr-gcc on ios 6.0.1
This may sound weird.But I want to port avr-gcc to iOS.is that possible...if yes,then how?
I searched about it and found nothing...I have theos installed in my iphone 3Gs running jailbroken iOS ...
1
vote
1answer
94 views
avr-gcc: No symbols are located for any call stack frames
I am developed a GCC C Executable Project with Atmel Studio 6. The target device is ATtiny2313A. There are a C-file and other header files.
When I set the optimization for size I am not able to ...
0
votes
1answer
292 views
Atmel Studio: garbage at end of line error
I'm trying to compile a program to run on an AT90CAN128 using the ATMEL CAN Libraries from
http://www.atmel.com/tools/CANSOFTWARELIBRARY.aspx
However, When I try to compile I get the following errors ...
0
votes
1answer
111 views
C function prototyping and .set directive
Question is in AVR GCC context.
I have .s file with C function prototype as follows:
Mod_BigNum_by_u8: .global Mod_BigNum_by_u8
; c-prototype ==> uint8_t Mod_BigNum_by_u8(uint8_t * pBigNum, ...
0
votes
1answer
100 views
va_arg(argp, float) is crashing
I'm trying to write custom printf function.
void debug_print(const char *fmt, ...)
{
const char *p;
va_list argp;
int i;
double f;
char *s;
char fmtbuf[80];
...
0
votes
3answers
156 views
How to define a timer in avr-gcc
I am learning to use avr-gcc, but I have no idea, how to solve the following task:
The 8 bits from Port B should alternately set from 0 to 1 with an interval of 500 mili seconds.
I appreciate your ...
1
vote
1answer
145 views
Does gnu ld link in whole object files or only the needed functions?
We have a library and an executable, that is to be statically linked to the lib. We want to minimize the program space of the final executable.
According to avr-libc's documentation:
the linker ...
0
votes
2answers
152 views
Is it possible to use GCC's '__builtin_avr_delay_cycles' in the assembler?
Sory for bad English, please.
I need write a time-critical piece of code (a strict part of software protocol implementation via bit-bang) that uses delays. C preprocessor at the compile time can ...
0
votes
2answers
203 views
Can this code cause a memory leak (Arduino)
I have a arduino project and I created this struct:
struct Project {
boolean status;
String name;
struct Project* nextProject;
};
In my application I parse some data and ...
1
vote
2answers
162 views
AVR char and C# byte differ
I wrote a tiny C# application that writes bytes to a COM port:
SerialPort serialPort = new SerialPort
{
PortName = "COM6",
BaudRate = 57600,
DataBits = 8,
Parity = Parity.None,
...
1
vote
1answer
210 views
ATTiny and Linux AVR-GCC interrupt reset vector in linker
at this site http://www.mikrocontroller.net/articles/Konzept_f%C3%BCr_einen_ATtiny-Bootloader_in_C (sorry it's in German, I had to use google translator) it's described a way of changing the reset ...
0
votes
2answers
287 views
macro passed 2 arguments, but takes just 1
my code didn't build successfully with this error message:
macro "hton_us" passed 2 arguments, but takes just 1
and it occurs on this line:
hton_us( &fi.size, 1 );
here is the refrence to ...
4
votes
1answer
657 views
arrays + unions + structs containing bit fields C++
I was just playing around with bit fields and came across something that I can't quite figure out how to get around.
(Note about the platform: size of an int = 2bytes, long = 4bytes, long long = ...
-1
votes
1answer
136 views
Changing phase value of the signal using microcontroller
I am trying to generate sine wave using programmable waveform generator AD9833 with ATmega32-A micro controller.(MCLK =8MHz clock frequency). I am using USART communication and so if i change ...
2
votes
1answer
327 views
Review the code to read external adc values
I have started newly working with AVR microcontroller.I am using ATmega32-A microcontroller. I have connected one external ADC(AD7798). I want read external ADC values using SPI communication.I have ...
0
votes
2answers
504 views
need help on AD9833 waveform generator with ATmega32-A micro controller
I am trying to generate sine wave using programmable waveform generator AD9833 with ATmega32-A micro controller.(MCLK =8MHz clock frequency). I am using USART communication and so if i change ...


