Tagged Questions
AVR refers to two families of either 8- or 32-bit RISC microcontrollers
22
votes
5answers
647 views
Parse double precision IEEE floating-point on a C compiler with no double precision type
I am working with an 8-bit AVR chip. There is no data type for a 64-bit double (double just maps to the 32-bit float). However, I will be receiving 64-bit doubles over Serial and need to output 64-bit ...
22
votes
10answers
12k 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 ...
15
votes
19answers
3k views
Best platform for learning embedded programming?
I'm looking to learn about embedded programming (in C mainly, but I hope to brush up on my ASM as well) and I was wondering what the best platform would be. I have some experience in using Atmel AVR's ...
12
votes
7answers
800 views
USB programming
I want to program a microcontroller (AVR) to control some leds through USB. It's just out of interest in how to build and program USB devices.
There are some AVR microcontrollers that support the USB ...
12
votes
9answers
748 views
Protocols used to talk between an embedded CPU and a PC
I am building a small device with its own CPU (AVR Mega8) that is supposed to connect to a PC. Assuming that the physical connection and passing of bytes has been accomplished, what would be the best ...
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 ...
9
votes
6answers
483 views
Help optimising this C (AVR) code? :)
Ok, so here's the long story, it really isn't that relevant but might help to give some background on what I'm doing. I'll also preface this by saying that this is a uni project but I'm not really ...
8
votes
6answers
417 views
Fast Hypotenuse Algorithm for Embedded Processor?
Is there a clever/efficient algorithm for determining the hypotenuse of an angle (i.e. sqrt(a^2 + b^2)), using fixed point math on an embedded processor without hardware multiply?
6
votes
3answers
237 views
Why is no serial data available on my Arduino?
I've run the simple serial program on my Arduino Uno, which just echos whatever you type to it. This works perfectly when run in the Arduino Sketch IDE (v22).
int incomingByte = 0; // for incoming ...
6
votes
4answers
434 views
c/c++ optimize for constant variable in calling functions
C/C++ compilers optimize single layer functions with constant parameters (known at compile time) only when using -Os, -O1 and -O2. They do not optimize all the layers. Only -O3 can do that. gcc is ...
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
1answer
77 views
More detail about new AVR instructions LAC, LAS, LAT and XCH
Looking at the AVR instruction set there are four instructions added in 2010
LAC load and clear
LAS load and set
LAT load and toggle
XCH load and exchange
Does anyone know what chips have these ...
5
votes
2answers
124 views
Ada multitasking RTOS supported with opensource cross-compilers
Which RTOSes do Ada have opensource/free cross-compilers available, with support for multitasking/multithreading?
I have an Atmel AT90USB162 chip which I want to program using Ada. My first option ...
5
votes
3answers
492 views
8051 microcontroller kit recommendation?
I'm a first year Computer Science student looking to get started with development for micro-controllers. I'd like to use the 8051, as it's common as dirt, and is used frequently in the real world.
...
5
votes
8answers
653 views
1k of Program Space, 64 bytes of RAM. Is 1 wire communication possible?
(If your lazy see bottom for TL;DR)
Hello, I am planning to build a new (prototype) project dealing with physical computing. Basically, I have wires. These wires all need to have their voltage read ...
4
votes
2answers
305 views
CDC Demo COM Port Code on AT90USB162 (Minimus AVR)
I intend to use my AT90USB162 (integrated as Minumus AVR USB board) as a Communication Device Class with COMPORT. In Minimus AVR home site, it gives an code for building a COMPORT hex to my chip, in ...
4
votes
4answers
130 views
A void* being used to maintain state… (C programming)
Currently we are learning how to program AVR micro-controllers (Ansi C89 standard only). Part of the included drivers is a header that deals with scheduling ie running tasks at different rates. My ...
4
votes
2answers
113 views
Embedded IP stack: is it okay/accepted to have asynchronous sending?
I am trying to implement a very small IP stack for 8-bit AVR MCUs. I don't want it to support TCP, because it's really too big and I don't need it, but rather UDP (and, of course, ARP and ICMP).
I ...
4
votes
2answers
142 views
Common constants for an AVR / Linux GCC C++ project
I'm creating software for an Linux + AVR Arduino project. Obviously the whole work is split in several projects in Eclipse (I'm not using Arduino IDE). I'd like to use common, mostly string, constants ...
4
votes
2answers
204 views
Programming Languages Targeting Arduino/AVR
What programming languages or environments target Arduino or AVR besides the default C++ environment?
PS: I'm using Mac OS 10.5.
4
votes
2answers
939 views
Atmel AVR Disassembler
Can somebody suggest me any disassembler for Atmel AVR 8-bit microcontrollers? There are opensource projects for this?
Thanx.
4
votes
1answer
613 views
Bluetooth control signals (DTR, DSR, RTS, CTS) on Android
I would like to remotely reprogram my Arduino via Android over Bluetooth SPP. The first step is to reset the ATMEGA microcontroller. This is accomplished on the Arduino by toggling the DTR line. Is ...
4
votes
5answers
420 views
Linear interpolation in direct digital synthesis
I'm working on a microcontroller DDS project in C and am having some trouble figuring out how to compute a linear interpolation to smooth the output values. The program as it stands now
uses the top ...
4
votes
1answer
620 views
Arduino Bootloader
Can someone please explain how the Arduino bootloader works? I'm not looking for a high level answer here, I've read the code and I get the gist of it.
There's a bunch of protocol interaction that ...
4
votes
3answers
701 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
9answers
417 views
I'd like to move on to µC programming, but I have absolutely no idea where to start from
I've been thinking quite some time about 'moving on' to MCU programming, but the problem is I've never worked with any microcontrollers or similar. As I've been told, AVR and PIC are the most common ...
4
votes
2answers
1k views
What's the difference/relationship between avr and Arduino?
I've been interested in hardware programming recently but not started yet.
I did some searching working,and have a vague idea:
Arduino is a combination of both chip
and breadboard.
avr is ...
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 ...
4
votes
4answers
549 views
How I can fix this code to allow my AVR to talk over serial port?
I've been pulling my hair out lately trying to get an ATmega162 on my STK200 to talk to my computer over RS232. I checked and made sure that the STK200 contains a MAX202CPE chip.
I've configured the ...
3
votes
1answer
53 views
Preserving sreg in AVR interrupts
What is the mechanism used to preserve the status register, sreg, in an AVR microcontroller? RETI implies that these bits are not on the stack. Is one of the general purpose registers also the sreg ...
3
votes
2answers
146 views
AVR Programming Book
I'm looking at increasing my skill in embedded programming, especially when working with AVRs. I've heard of ardunio's, bought one, played with it for awhile, but wish to get lower level. Could ...
3
votes
2answers
641 views
AVR - Interrupt Vector and Global Variable
Hey, im using an atmega32 to interrupt every 32ms to do some arbitrary stuff, which isnt really important for now.
Im using the timer overflow of timer0 to interrupt, which works predictably and ...
3
votes
2answers
554 views
Creating new task in FreeRTOS for USART reception
I am using EVK1105 development board with AVR Studio 5 as development IDE for my AVR project.
I am using FreeRTOS in it. I have 3 USART ports on this board. One external module is connected to my ...
3
votes
5answers
164 views
Best practice for passing primitive data type in C++ function
I'm writing a function for an avr chip to deserialize a byte stream to primitive types. I'd like to do it in as generic a way as possible and was wondering what the best practice would be to determine ...
3
votes
1answer
2k views
AVRISP MKII doesn't work with avrdude in linux
The system sees something is plugged in when I plug and unplug it
bluehat@Matapan:/dev$ tail -f /var/log/syslog
Mar 23 15:36:35 Matapan kernel: [156082.112874] usb 7-1: new full speed USB device ...
3
votes
3answers
264 views
Need help with timer
For last 2 weeks am trying to learn timer & interrupt & wrote a program (with my understanding) to blink LEDs on ATMEGA2560 but no matter what I do TCNT0 never increments & ISR() function ...
3
votes
2answers
267 views
WiFi communication to embedded display
I'm trying to create an embedded outdoor display of bus arrival times at my university. I'd like the device to utilize my school's secured WiFi network to show arrival time updates determined from a ...
3
votes
7answers
3k views
Wireless communication: AVR based embedded system and iPhone
What is the best way to realize wireless communication between an embedded system (based on an AVR controller) and the iPhone? I think there are only two options: either WiFi or BlueTooth. The range ...
3
votes
4answers
5k views
Turn on PC with USB-device
I want to be able to turn my PC on and off using an IR-remote sensor that is connected via USB to the PC. The sensor is a custom PCB implemented with an AVR microprocessor and V-USB software ...
3
votes
3answers
350 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
4answers
4k views
Simple serial AVR programmer for beginner
What is the cheap and good way to make a serial (RS232) programmer for AVR atMega and atTiny? There are several circuits in the Internet, but which one is better?
I'd like to be able to program my ...
3
votes
5answers
13k views
Using a rotary encoder with AVR Micro controller
I'm having trouble getting a rotary encoder to work properly with AVR micro controllers. The encoder is a mechanical ALPS encoder, and I'm using Atmega168.
Clarification
I have tried using an ...
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
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
1answer
235 views
Using autocomplete feature in AVR Studio for coding C with avr-gcc
How can I enable or disable the autocomplete feature for the IDE AVR-Studio 5 or AVR-Studio 4? Do I have to edit some installation files to do this?
In the video AVR Studio 5: How to use the Editor, ...
2
votes
1answer
168 views
AVR linker error, “relocation truncated to fit”
I'm trying to compile some code for an ATmega328 micro, and I want use the libraries and the core of Arduino. I'm using CMake. I have gotten to compile the core library and all objects of my code and ...
2
votes
1answer
187 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
2answers
117 views
AVR GCC - typecasting trouble
I'm using an AVR microcontroller to write to a programmable frequency divider chip via the I2C bus. At certain intervals I'm trying to have the following function is called to update the frequency ...
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.
...