python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
avr-gcc undefined reference to function in linked object file
I have some code for handling all uart related functions and operations in a .h/.c pair that I usually include in my project. I have a makefile that compiles all of my .c files into .o files then link...
anon
Votes: 0
Answers: 1
Is this a possible compiler error in the avr-gcc 11.1.0 (from Zak Kemble)?
This is kind of a complex problem, that I'm unsure of it's cause.
So bare with me because, my English(writing) is rusty, and my Technial Language(terminology) is not so good either.
Dev: Atmega1284P
C...
Balázs Bagi
Votes: 0
Answers: 1
How to output the assembly listing of the final executable created by a CMake project?
I am currently working on an embedded project using the avr-gcc compiler to run on an Atmel ATMega328p microcontroller. I decided to use CMake to create my build system as that would be an easy to way...
dylanweber
Votes: 0
Answers: 1
AVR-libc `uart_putchar` implementation
In AVR-libc page 143 the implementation of the function uart_putchar() is typical as the following:
#include <stdio.h>
static int uart_putchar(char c, FILE *stream);
static FILE mystdout = FD...
NAND
Votes: 0
Answers: 1