Tagged Questions

avr-gcc is a suite of executable software development tools for Atmel AVR RISC processors

learn more… | top users | synonyms

22
votes
10answers
11k views

How can I unit test Arduino code?

I'd like to be able to unit test my Arduino code. Ideally I would be able to run any tests without having to upload the code to the Arduino. Are there any tools or libraries out there which can help ...
12
votes
4answers
1k views

Is there an alternative for flex/bison that is usable on 8-bit embedded systems?

I'm writing a small interpreter for a simple BASIC like language as an exercise on an AVR microcontroller in C using the avr-gcc toolchain. However, I'm wondering if there are any open source tools ...
10
votes
2answers
2k views

crt0.o and crt1.o — What's the difference?

recently I've been trying to debug some low level work and I could not find the crt0.S for the compiler(avr-gcc) but I did find a crt1.S (and the same with the corresponding .o files) What is the ...
10
votes
1answer
6k views

What is the purpose of __cxa_pure_virtual?

Whilst compiling with avr-gcc I have encountered linker errors such as the following: undefined reference to `__cxa_pure_virtual' I've found this document which states: The __cxa_pure_virtual ...
9
votes
3answers
2k views

AVR Studio 5: compile C++ code

When creating a project in AVR Studio 5, it creates a .c file with following content: #include <avr/io.h> int main(void) { while(1) { //TODO:: Please write your application ...
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 ...
5
votes
2answers
313 views

Array not crossing 256 byte boundary

Is it possible to create an array that doesn't cross 256 byte boundary? That is addresses of the individual array items only differ in the lower byte. This is weaker requirement than keeping the array ...
4
votes
3answers
697 views

AVR Analog Comparator + Internal Pullup?

I have what I hope is a simple question pertaining to the Atmel AVR microcontrollers. So I want to use the ATTiny85's Analog Comparator to determine if a signal is above or below a threshold. This ...
4
votes
7answers
893 views

Can I implement the Factory Method pattern in C++ without using new?

I'm working in an embedded environment (Arduino/AVR ATMega328) and want to implement the Factory Method pattern in C++. However, the compiler I'm using (avr-gcc) doesn't support the new keyword. Is ...
4
votes
8answers
3k views

How can I visualise the memory (SRAM) usage of an AVR program?

I have encountered a problem in a C program running on an AVR microcontroller (ATMega328P). I believe it is due to a stack/heap collision but I'd like to be able to confirm this. Is there any way I ...
3
votes
3answers
349 views

Why is this code being generated by avr-gcc and how does it work?

This is a snippet of disassembled AVR code from a C project I'm working on. I noticed this curious code being generated, and I can't understand how it works. I'm assuming it's some sort of ridiculous ...
3
votes
1answer
412 views

How to get GNU AS to emit per-line debugging info or GDB to single step lines in (AVR) Assembly?

I cannot figure out how to get GAS to emit line number debugging information for gdb in assembly. Note that I'm using the avr-gcc cross compiler, but doubt that is relevant. I'm using the ...
2
votes
1answer
94 views

Storing Large Integers/Values in an Embedded System

I'm developing a embedded system that can test a large numbers of wires (upto 360) - essentially a continuity checking system. The system works by clocking in a test vector and reading the output from ...
2
votes
2answers
108 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
1answer
182 views

LUFA Coding an Example for AT90USB162

I'm with an open-source USB library for the USB-enabled AVR microcontrollers, LUFA (2011-10-09), and I am trying to code the CDC (a bootloader) example to my AT90USB162 chip. The sample code is in ...
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
2answers
317 views

Arduino (Uno) Ethernet client connection fails after many client prints

I'm using an Arduino Uno with Ethernet Shield. After sending many HTTP requests, client.println(...), the client starts to fail when connecting. The time to failure appears to be random, and the ...
2
votes
4answers
652 views

cast unsigned char * (uint8_t *) to const char *

I've a function which take an uint8_t * argument : uint8_t* ihex_decode(uint8_t *in, size_t len, uint8_t *out) { uint8_t i, hn, ln; for (i = 0; i < len; i+=2) { hn = in[i] > ...
2
votes
1answer
212 views

AVR for Xcode 4?

Has anyone had success using xcode 4 as an IDE for AVR microcontrollers? Is it possible to have the same amount of integration as the plugin for eclipse?
2
votes
2answers
496 views

Solving “undefined reference to” errors in a makefile

I have a few custom source files in my src directory and a few source files from the Arduino project in my src/base directory. I compile all source files into objects which are stored in my obj ...
2
votes
4answers
296 views

Is this a bug? Problem getting ASCII characters from an array with ATmega32

I've got an LCD, connected to an Atmega32, working with single characters using this function: void send_char(uint8_t c){ PORTD = c; // set the output pins to the ascii value of the char ...
2
votes
1answer
177 views

Binary compatibility between avr-gcc 3.4.0 and avr-gcc 4.3.x

I have inherited an application that links to a library which MAY HAVE been built with gcc3. Or maybe with the imagecraft compiler. That information has now vanished to the heavenly bitfield and I am ...
2
votes
5answers
394 views

Why does avr-gcc bother to save the register state when calling main()?

The main() function in an avr-gcc program saves the register state on the stack, but when the runtime calls it I understand on a microcontroller there isn't anything to return to. Is this a waste of ...
2
votes
1answer
209 views

Unit tests for interrupt-heavy code

I am writing C code for an AVR chip. The code is heavy on interrupt serivce routines which wait on serial ports, ADCs and timers. The ISRs write to buffers which the main loop examines when it gets to ...
2
votes
3answers
726 views

Function pointer location not getting passed

I've got some C code I'm targeting for an AVR. The code is being compiled with avr-gcc, basically the gnu compiler with the right backend. What I'm trying to do is create a callback mechanism in one ...
2
votes
6answers
444 views

How can I prevent the need to copy strings passed to a avr-gcc C++ constructor?

In the ArduinoUnit unit testing library I have provided a mechanism for giving a TestSuite a name. A user of the library can write the following: TestSuite suite("my test suite"); // ... suite.run(); ...
2
votes
8answers
1k views

How can I perform pre-main initialization in C/C++ with avr-gcc?

In order to ensure that some initialization code runs before main (using Arduino/avr-gcc) I have code such as the following: class Init { public: Init() { initialize(); } }; Init init; Ideally ...
1
vote
1answer
100 views

Fixed-point digital ringing filter in C

I'm trying to code a digital ringing filter on an AVR microncontroller, and I am having some trouble with the implementation of the state diagram in fixed point arithmetic. Here's a picture of the ...
1
vote
3answers
195 views

Multitasking RTOS on AVR

I have an AT90USB162 AVR chip which I want to run a multitasking RTOS, so I am evaluating possible RTOS for using with my AVR chip. Which multitasking RTOS's are supported by AVR? Maybe QNX? (Is it ...
1
vote
2answers
159 views

Problems in AVR C combining ADC readings to generate PWM output

I'm writing a program for an ATMega328P that will take readings from several ADC channels, combine them into a single signal and output this signal through PWM. I've successfully backed off my ADC ...
1
vote
1answer
30 views

Is it possible to force particular registers in inline assembly code?

I have the following assembly code: __asm__ __volatile__ ( "1: subi %0, 1" "\n\t" "brne 1b" : "=d" (__count) : "M" (__count)); which results in the following compiler ouptut ce: ...
1
vote
0answers
124 views

Atmega 328p behaving weird with static function

I'm trying to use a Atmega 328p (Arduino Ethernet) to control a Wiznet W5100 ethernet controller. The libs I'm using are tested and work, but for me they don't. Here's what I tracked the problem down ...
1
vote
2answers
78 views

Is it a good practice to include all files in one .h file and include that file everywhere for AVR?

Can I do like this /*includeAll.h*/ #ifndef INCLUDEALL_H_ #define INCLUDEALL_H_ 1 #include <avr/io.h> #include <avr/pgmspace.h> #include <avr/interrupt.h> #include ...
1
vote
1answer
437 views

Avr-gcc: Timer/counter interrupts conflicting with UART?

Please consider the following example (tried on Arduino IDE 0022, Ubuntu 11.04, Arduino AtMEGA 2560), where I'm trying to start a timer/counter interrupt and use the Arduino Serial class at the same ...
1
vote
1answer
157 views

GCC inline assembly : let compiler decide what register to use for temp value

I need to load 18h and output it to port 60h, this is works (inside asm("")). ldi r1, 0x18 ; 0x18 -> r1 sts 0x60, r1 ; output r1 -> 0x60 I don't care if register r1 or any other is used for ...
1
vote
2answers
136 views

Explain this code avr port setup

PORTB = (PORTB & ~0xfc) | (b & 0xfc); PORTD = (PORTD & ~0x30) | ((b << 4) & 0x30); Hi AFAIK the 0xFC is a hex value. Is that basically saying 11111100 hence PORTD0-PORTD1 are ...
1
vote
1answer
116 views

Compiling with make on osx

I'm compiling on the command line with avr-gcc One of the includes I'm using has the following lines: #ifndef F_CPU #warning No CPU speed specified - assuming Axon is running at 16MHz #define F_CPU ...
1
vote
1answer
90 views

Empty array when printed

Im writing some C/asm program for the AVR MCU. Im still learning as I go so I hope I have made some sort of mistake in my code. I have a buffer volatile unsigned char ...
1
vote
2answers
281 views

How to replace the bootloader of an ATMEGA88

I have a board with an ATMEGA88 chip which has a bootloader at address 0x1800 and a firmware at address 0x0000. Both have access to USB. The bootloader can write a new firmware but now I need to write ...
1
vote
1answer
588 views

AVR_GCC compile errors delay.h

Instructions in the blinky.zip, gcc-section, Teensy++ v.2. Makefile and blinky.c are in the zip. I modified the blinky.c by defining F_CPU at the start because not using Makefile, please, see below. ...
1
vote
1answer
290 views

Symbol not found - CUnit on Snow Leopard

I just installed CUnit on Snow Leopard with MacPorts/DarwinPorts. The installation went fine, however, I get en error when trying to run the unit tests: dyld: Symbol not found: _acs_map Referenced ...
1
vote
7answers
256 views

Using array of chars as an array of long ints

On my AVR I have an array of chars that hold color intensity information in the form of {R,G,B,x,R,G,B,x,...} (x being an unused byte). Is there any simple way to write a long int (32-bits) to char ...
1
vote
2answers
185 views

Formatting characters on serial output!

I'm interfacing an SD card to ATmega128 using EFSL. Card gets initialised, but I get an error saying "Unknown error 0xff(see sandisk docs p5-13)"... on serial port output. That's not all, I hv used ...
0
votes
0answers
15 views

How to know the final program size after compilation on avr32

I am using avr studio 5. My controller is AT32UC3A0512. I want to know my final program size which will be occupied on flash before burning the program. Please let me know how to know this?
0
votes
3answers
132 views

Compile Assembly code that includes header files containing C-definitions

Im trying to compile assembly and C code together (not C to assembly), but cant get it done. For example file common.h #ifndef __COMMON_H__ #define __COMMON_H__ struct tree{ tree* left; ...
0
votes
3answers
41 views

Keeping Track of Array Indices which Meet Some Requirement in C

This sort of situation comes up pretty often. You loop through an array, and if some elements meet some requirement, you'd like to keep track of their indices for later. Here's what I mean: ...
0
votes
0answers
61 views

Uninstalling OSX-AVR from Mac OS X 10.7.2

Does anyone know how to completely remove OSX-AVR from Mac OS X? I need newer support for avr-gcc, so I am going to install CrossPack for AVR, but I do not want any collisions from having multiple ...
0
votes
1answer
98 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
315 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
0answers
92 views

Problem in debugging interrupt on avr controller AT32UC3A0512

I am facing a very strange problem in my code. Following is my setup 1. Controller - AT32UC3A0512 2. IDE - AVR Studio 5 3. Debugger - AVR Dragon I want to use ISR for using USART. So I am using ...

1 2