Atmel Corporation (Nasdaq: ATML) is a leader in the design and manufacture of microcontrollers, capacitive touch solutions, advanced logic, mixed-signal, nonvolatile memory and radio frequency (RF) components.

learn more… | top users | synonyms

0
votes
1answer
23 views

1MHz timer on 16MHz atmega8535

Can't seem to get my head around this, although it looks quite easy to me. I've made many timers in my Atmel ATMEGA8535 but this one just hits me. Also, I've seen many calulations and such but not ...
0
votes
0answers
11 views

Programming bootloader section of flash with avrdude is slow

When programming the bootloader section of flash memory in a ATmega 8-bit processor, specifically the ATmega128, AVRdude is rather slow. All I want to write is the bootloader section of memory, which ...
0
votes
2answers
29 views

Pointers list going wrong

I want to be able to access the arrays and variables with pointers. So I made an array of pointers to those arrays and variables. But it doesnt seem to compile right. Where do I go wrong? (c++, atmel, ...
-1
votes
1answer
31 views

Writing bits to a port in C

Using atmel studio to write some beginner C for an atmega64 micro controller. To start off I wanted to read values from PINA, one's complement the values, write them out on PORTC. Started off with ...
0
votes
1answer
68 views

Moving average algorithm issue

I want to smooth values in realtime. For a reason this code seems to make the microcontroller(arduino - atmel) crash or not respond at least. This is my code float tilttemp[] = { 1,1,1,1,1,1,1,1 }; ...
0
votes
1answer
23 views

request for member 'isr_status' in something not a structure or union

I am trying to use an example Atmel code on ADCs. It is posted here. http://asf.atmel.com/docs/latest/sam.drivers.adc.adc_example.sam4s_ek2/html/sam_adc_quickstart.html However, the code: void ...
1
vote
1answer
91 views

Arduino UNO analogRead always returns 1023

So my problem is as title says: Arduino UNO analogRead always returns 1023. But when I burn the same sketch in Arduino Mega 2650 everything works like a charm. I have tried to change Atmel chips on ...
0
votes
1answer
78 views

expected unqualified-id before '{' token Error with templates

I am currently trying to integrate a library (IsoAgLib) into my CPP project. I am not deeply experienced with CPP. The error I am getting is: "expected unqualified-id before '{' token". I believe it ...
1
vote
1answer
87 views

Arduino Nano Timers

I want to know more about Arduino Nano timers. What timers are there? Do they produce interrupts? What code would attach an interrupt handler to them? How is delay() and delayMicroseconds() ...
1
vote
1answer
48 views

Understanding USB descriptors in relation to the LUFA library

Can someone please explain how the LUFA library handles USB descriptors? I can't seem to trace the descriptors in any of the examples given back to the source of the library. How do they work? Are ...
-1
votes
1answer
81 views

Setting An ADC sample rate. trouble reading datasheet [closed]

I am currently working an atmel micro controller, the EVK1104s, which house the UC32 Data Sheet. We have actually planted this chip on a custom PCB and are inthe process of writting more firmware. ...
0
votes
0answers
63 views

ATMEGA32 UART Communicaiton

I am writing a code for UART asynchronous communication in ATMEGA32, but i am confused that how to give two diff values to UCSRC and UBRRH regisers as they have same location and according to their ...
1
vote
1answer
163 views

ATMEGA32 UART Communication

I am trying to do serial communication in ATMEGA32 and I have a question: In asynchronous serial communication both UBRRH and UCSRC registers have same location. I don't know which conditions that ...
0
votes
1answer
46 views

atmel sensor using printf

I'm learning embedded system. I have a atmel UC3-L0 and compass sensor. Now I install AtmelStudio and download some demo code into the board. But I have no idea where the function "printf" in demo ...
0
votes
0answers
62 views

Register access in ATMEGA32 & Debugging of Serial Communication Atmel Studio

I am working upon ATMEGA32 and programming it with the help of Atmel Studio 6.0............. In ATMEGA32, there are 32 general purpose registers starting from R00 to R31........but how can i use ...
1
vote
0answers
57 views

Functions used in ASF instead of IODIR, IOSET, PORTD

I have programmed microcontroller before and used instructions like IODIR, IOSET, PORTD, DDRD and etc. I am now using Arduino Due which have the ATSAM3X8E Cortex M3 microcontroller. Iam programming ...
3
votes
0answers
207 views

Android as a host to ATtiny85 Digispark

I've been working on developing an Android application that will act as a host to an Arduino based Digispark development board. One of the problems with the board is that it doesn't have a dedicated ...
-1
votes
1answer
117 views

How to manage the lines com port/uart for the firmware microcontroller (atmel), which is manual?

I want to write a new program to flash Atmega avr microcontrollers. Start planning for the possibility of firmware only atmega8/16/32. The project will be open source. On the internet i only found the ...
0
votes
1answer
125 views

Undefined Reference in Atmel Studio 6

I'm creating a simple program to familiarize myself with Atmel Studio 6 (running on Win 7 X64), using the ASF supplied libraries/drivers for a SAM4S microcontroller. In compiling, I get several (19) ...
0
votes
1answer
93 views

AVR allocating memory in class constructor

I'm using the Atmel AVR ATmega328p chip, and I'm trying to create multiple ring buffers, with varying lengths, using the FifoBuffer class, in file fifobuffer.h, which I created... class FifoBuffer { ...
0
votes
1answer
208 views

error: attempt to use poisoned “SIG_OUTPUT_COMPARE0A”

I am writing a C code for atmega168a. I got attempt to use poisoned "SIG_OUTPUT_COMPARE0A and attempt to use poisoned "SIG_OUTPUT_COMPARE0B error when I compile the code below. But I see similar usage ...
0
votes
1answer
236 views

C code to set i/o pins for ATMEL'S AT89C51 microcontroller

Can anyone help me on how to to set the I/O configuration in C programming. This is my code, I am using keil uvision4 as my ide to generate the hex file and isis proteus to model the circuit. When i ...
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 ...
0
votes
1answer
105 views

Issue with using AVR TWI interface

I'm trying to access HMC5883L module using atmega2560. I've written a class (I2C) containing basic methods essential for I2C communication. First, I'll explain the problem. This is what I've done. ...
0
votes
1answer
63 views

Programming an ATtiny84

I am designing a mobile device around an Attiny84 microcontroller and when I have looked up ways of programming it and making it run, I found that I would need a JTAG progammer. Could the Attiny84 be ...
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?
0
votes
3answers
72 views

Error in atmel code?

This is my code in atmel 6 using c : #include <avr/io.h> #include <stdio.h> #include <math.h> int a[][][] initialize_hueristic(int[]); int main(void) { int ...
0
votes
1answer
77 views

PHP Socket programming to read data from MCU

Quick question, I am new to socket, so I was wondering is there a way to read data from a MCU (Atmel)? I'm running a Linux and I can connect an Atmel through RS232, or USB to my computer(server). Is ...
2
votes
1answer
70 views

AT91SAM7X512 reset type issue

I am using an AT91SAM7X512 for my application. I perform a software reset after certain action. The processor resets. But upon reading the RSTC_RSR status register I get an invalid register value for ...
0
votes
1answer
628 views

cross g++ compiler linker error

I am using eclipse to cross compile a g++ project for a ARM processor. I am using the yagarto toolchain in a windows environment. I have no issues with c projects but with c++ I keep receiving the ...
0
votes
1answer
74 views

AVR Samplecode Explanation please

From http://www.electronicsplanet.ch/mikrocontroller/source-code/ATMega16/ATmega16-ADC-Interrupt.htm I tried the initialisation of the AD of the mega16. It works, but the line ADCSRA |= ...
1
vote
1answer
77 views

why does mono on atmel processors do not work well with LayoutKind.Explicit?

i have created a structure like bellow : [StructLayout(LayoutKind.Explicit, Pack = 1)] public class NodRecord { [FieldOffset(0)] public ushort Driver; ...
0
votes
1answer
119 views

Is Atmel processor or AT91Boot dll crashing my USB ports

I am adapting some test software that is used to upload a .bin file to one of our products via USB. The product has a Atmel AT91SAM7X256 processor. The software is all written in c# and is running on ...
0
votes
1answer
550 views

ADIE bit in AVR ADC in Free running mode

I have been writing my own "library" to handle different inits on an AVR chip. However, I am stuck on the action of the ADIE bit in the ADCSRA register (p.261 in the datasheet). The datasheet doesn't ...
0
votes
2answers
330 views

request_irq succeeds but interrupt is never detected

I am running embedded linux 3.2.6 on an ARM processor. I am using a modified version of atmel's serial driver to control the 4 USART ports on my device. When I use the driver compiled with the kernel, ...
0
votes
1answer
171 views

How to compile a sketch using Arduino

I have a custom board that uses ATmega168PV, and I have a bin file that when I use Atmel Studio 6.0, I can program it to my board. I have the source code for the binary (in the format of sketch), and ...
0
votes
3answers
154 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 ...
0
votes
3answers
332 views

Why should I calibrate the oscillator in AVR programming

I'm new to AVR programming. I found a sample code on web; for a simple USART communication with PC. I have a little doubt there. The main loop starts like this; void main(){ OSCCAL_calibration(); ...
0
votes
1answer
2k views

How to add header files in Atmel Studio 6

I'm trying to go with Atmel Atudio 6. But i'm not sure how to add .h files to my project. Is that something allowed? if so, how can i add them?
0
votes
0answers
35 views

File transfer from PC to Atmel Processor (At91SAM7X512-CU) via Putty [closed]

I intend to change the IP address of my target Atmel processor via putty. I intend to do this by assigning a default IP address during compiling of my processor (At91SAM7X512-CU) and later pass a ...
0
votes
1answer
49 views

Status register description in document

Reading AVR assembler instruction set documentation. What those red highlighted registers means? In some cases they are inverted.
1
vote
1answer
744 views

Nexus7 USB host FTDI device not detected

I have a simple ATMEL micro-controller with an LED light on a board connected to a Nexus tablet through a FTDI-232 cable and a USB->micro-USB OTG cable. The device is not recognized if: 1)FTDI cable ...
2
votes
0answers
550 views

Beginner: AVR C++ Atmel Studio 6

I'm having an issue working out what libraries I have access to. I understand that I can use the Atmel Studio 6 IDE to program the microcontroler (Atmega328p) in C++; however, I can't work out where ...
0
votes
0answers
84 views

atmel 89c2051 setting or clearing individual register bits in C

I am programming an atmel 89c2051 controller. I want to make conditions based on the status of each individual register bits for example: do (something something) while port 1 bit 0 is 0 I've tried ...
1
vote
1answer
258 views

Touch device 'atmel-maxtouch' not working in Android Ice Cream Sandwich with Tegra 2

I/EventHub( 146): New device: id=3, fd=118, path='/dev/input/event1', name='atmel-maxtouch', classes=0x14, configuration='/system/usr/idc/atmel-maxtouch.idc', keyLayout='', keyCharacterMap='', ...
1
vote
1answer
121 views

How to compile cpp file for chip ATTINY85 [closed]

I need to put a .cpp file on an ATTINY85 chip. I'm not sure but I think that I need to compile it in Atmel Studio 6, which has a compiler for that. I don't know how to do that. Any suggestions?
0
votes
0answers
365 views

Program ATmega8 - 16PU with Arduino Mega2560 [closed]

I have an Arduino Mega2560, and I need to program an ATmega8 - 16PU (28 pins) with Arduino 1.0.1 IDE using the Arduino Mega2560. What is the pin configuration, and codes? I searched everywhere, but I ...
1
vote
1answer
150 views

Enabling code completition in Atmel Studio 6

I'm looking for autocomplete feature in Atmel's IDE Atmel Studio 6. As it is based on Visual Studio, there should be IntelliSense, but I can only find the menu entry "Intellisense" under "Edit", which ...
0
votes
1answer
382 views

Undefined reference to library error in C++

this code: #include "SoftwareSerial.h"> #include <avr/io.h> #include <HardwareSerial.h> #include <avr/interrupt.h> void read_response(); int main () { sei(); ...
0
votes
1answer
193 views

Interrupt timer stuck when run parallel with while(1)

first code: //------------------------------------------------------------------------------ /// Interrupt handlers for TC interrupts. Toggles the state of LEDs ...

1 2 3