AVR refers to two families of either 8- or 32-bit RISC microcontrollers
0
votes
2answers
89 views
How is this undefined?
I'm trying to get a custom robot to work with the Arduino IDE by declaring a new hardware "board" within the IDE. This contains all the mappings and whatnot, but there exists a library that I have ...
0
votes
0answers
11 views
new ATMEGA1281 and avrdude
I'm experiencing sometimes problems when programming my new ATMEGA1281. It is suposed to be the same as my old one, the only difference I guess is the serial number:
ATMEGA1281 16AU 1104 vs ...
0
votes
1answer
35 views
Assembly - how to set frequency of interrupt
Using assembly and AVR Microcontroller I want to write program which causes the interrupt handling with a certain frequency, eg 10 Hz.
first I set the stack and the timer:
.cseg
.org jmp restart;
...
2
votes
3answers
46 views
Setting a struct to an array in an AVR
I'm using an AVR-atmega processor which controls a RTC. In the atmega, the time from RTC is saved as a struct:
typedef struct {
uint8_t year;
uint8_t month;
uint8_t hours;
uint8_t ...
0
votes
1answer
38 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
13 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
1answer
28 views
Using USBASP programmer for SPI communication [solved]
Currently I'm trying to send some data from PC to ATmega328P chip through USBASP programmer.
It is able to transmit up to 4 bytes over SPI. These 4 bytes сan be set in USB Setup Packet (2 bytes for ...
0
votes
3answers
30 views
Redirecting stdout to LCD: pointer of member class
FILE *LCD_stdout = new FILE();
int (*ptr)(char, FILE *) = ROBOT::__LCD_putchar;
fdev_setup_stream(LCD_stdout, ptr, NULL, _FDEV_SETUP_WRITE );
stdout = LCD_stdout;
gives me error:
In ...
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 ...
1
vote
1answer
44 views
Unexpected EOF when linking Arduino project in Eclipse on OS X
I have been trying to link Arduino and Eclipse, and I feel like I'm close.
Where should I start looking for this?
Similar errors have been caused by extra/incomplete quote blocks (according to ...
1
vote
0answers
72 views
Writing USB drivers without usbfs
I am learning Linux Device Driver programming - specifically USB drivers. All the tutorials for USB drivers require usbfs, which has been disabled in the newer kernels. Solution, which I hope someone ...
0
votes
1answer
19 views
AVR assembly labels
I am using Atmel Studio 6, I have made this small program that reads PINA inputs and outputs the two's compliment to PORTC. I was wondering how I could repeatedly do this.
ldi r17, 0xFF
out DDRC, r17
...
0
votes
0answers
32 views
Is it possible to simulate/emulate AVR hardware get UART, which software allows this? [closed]
Is it possible to simulate both the AVR processor and the UART output ?
As far as I can tell the only obstacle is the UART output, however it seems it's rather trivial or maybe I'm wrong ?
This ...
0
votes
0answers
99 views
SIM900 works fine but does not respond to AT commands [closed]
I'm working with SIM900 and ATmega16. I use the ATmega16 to send AT commands to the SIM900 module via USART. I enabled Rx Interrupt of ATmega16, the Rx ISR was:
lcd_putchar('c');
to see if there is ...
0
votes
0answers
29 views
Trying to unravel a strange enumeration sequence for embedded USB HID application
I have an AVR application that uses the LUFA HID Class library to act as a keyboard and mouse. (two interfaces) It supports suspend/resume features.
I've been trying to troubleshoot some strange ...
-2
votes
0answers
24 views
toch screen keypad on AVR [closed]
I'm new at programming AVR.
I want to connect a touch screen keypad on AVR, I'm going to use an ATmega32 and a four wires resistor touch screen keypad. I need the C program as regards it. By the way ...
0
votes
1answer
41 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:
...
0
votes
1answer
86 views
Atmega8535 INT0 INT1 INT2 INT3
I am using Atmega8535 microcontoller and STK200 development board, I am trying to use more than one external interrupt, but for some reason only INT0 works and others do nothing, here is the related ...
0
votes
1answer
72 views
I can not write integer in LCD AVR
I can not write integer into the LCD using those functions :S it shows something weird in screen
I just added the function below!!! please check it for me
I added everything needed
...
0
votes
1answer
79 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
99 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() ...
2
votes
3answers
116 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 ...
1
vote
3answers
47 views
Rounding numbers on AVRs in C
I am writing code for an AVR (in C) to continuously change the duty cycle of three PWM channels. To do this, I wrote a function that takes in a value as a percentage and sets certain registers to ...
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
...
0
votes
1answer
231 views
ATMega 48P powering two DC motors with FPWM Timers, in assembly not C
So I'm trying to do my lab assignment and keep running into this issue with setting up my pins to pulse. I want to use two timers in PWM mode to generate a sinusoid to drive my motors. I need to have ...
-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 ...
1
vote
1answer
50 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 ...
0
votes
0answers
65 views
How to compile avr-libc code using Arduino IDE [closed]
I have got project for ATTiny 461 written using avr-libc library, compiled with avr-gcc and uploaded using avrdude via USBasp programmer. I would like to upload my code using Arduino.
I tried ...
0
votes
0answers
130 views
FatFs AVR Implementation SD Card [closed]
I am getting Problem To Get SD Card Works along with my code in int main using Fatfs
of course for AVR...
I dont know what i do need to change ..
I downloaded the Fatfs and i saw the tutorial but ...
1
vote
0answers
73 views
v-usb button press and release
I'm trying to use v-usb on an AVR to mimic a HID keyboard and I found how to send keys and how to release ALL of them, by calling usbSetInterrupt() with 0 for the key value, but is there a way to ...
1
vote
1answer
180 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
2answers
104 views
Generate/ output clock pulse ( C code )
Im using Ethernut 2.1 B and I need a C program that outputs a clock signal at the timer 1 output B, with other words on output OCIB. The frequency of the clock signal should be at 1.0 kHz.
Anyone ...
0
votes
0answers
76 views
Reading Few a sequence of characters into string AVR AtMega
getting a sequence of characters from avr into other AVR.
I am getting something from the AVR Such This 45.6723, 9.0876, 545.256 .
I want to take the first value only contineously which is ...
0
votes
1answer
79 views
beginning with winAVR
I have 20 odd years in programming starting from pascal 7 to delphi. I want to start programming micro controllers using C and the tool most electronics kit recommend is winAVR with programmers ...
4
votes
3answers
210 views
Programming Arduino with Ada
I am am unable to get avr-elf-windows and WinAVR to work. I have managed to build the example supplied with avr-elf-windows (ATmega2560). But if I try and expand to use another chip or start using the ...
0
votes
3answers
71 views
Build failed… No build tools defined. AVR studio 4.19
When I tried to debug a small piece of code using AVR studio 4 I got this error:
Build failed... No build tools defined.
Could someone give me some advices?
0
votes
0answers
105 views
AVR32 UC3A0 how to utilize USART interrupt example and receive string then do something
I am having some trouble, and I cannot tell if it's my understanding of the Atmel syntax, the Atmel Studio 6.0 or, the program itself.
I cannot seem to get the interrupt handler to receive a simple ...
1
vote
1answer
223 views
avrdude android arduino ioctl error
My previous question:
http://stackoverflow.com/questions/15596376/android-cannot-talk-to-arduino-using-avrdude/15596858?noredirect=1#15596858
has been resolved. I can now connect my nexus7 to my ...
1
vote
2answers
76 views
Embedded Systems Bit Count
I do apologize if this is a duplicate even though I did search around here for a similar question, I only found one.
So my programming team in my Engineering class currently use a 32-bit 72MHz ARM ...
-1
votes
1answer
118 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 ...
4
votes
3answers
183 views
How to reverse a byte
I am currectly working on a project and it happens that I have to reverse the order of a byte. I am currently using AVR Studio Mega32 Microcontroller.
For example:
0000 0001 becomes 1000 0000
0001 ...
-1
votes
1answer
95 views
Why is reading from RAM faster than reading from FLASH/EEPROM in AVR devices? [closed]
Hey I was wondering if anyone knew exactly why reading from RAM is faster than reading from FLASH/EEPROM in AVR devices?
Any help would be great.
Thanks,
David.
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 {
...
-1
votes
1answer
161 views
Changing value of String in Assembly language
I am currently trying to change the value of a string in the AVR assembly language. I am not sure if it is possible. I declare the string as:
message: .db "Frequency = 1 kHz",0x00
I am trying to ...
1
vote
1answer
258 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 ...
0
votes
2answers
106 views
AVR assembly logical operation
i have the following assembly code for atmega1280 on a bigavr board.
;Set PA3:0 to input without pull-up and PA7:4 to output and use PORTA7:4 for LED0-3.
.nolist
.include "m1280def.inc"
.list
.equ ...
0
votes
1answer
208 views
AVRISPmkII connection status: Unknown status 0x00
SOLUTION: See answer below
Well.. I've been searching on the web in many corners.. but I could not find a solution to my problem. Last time I used my AVRISP2 it worked fine. Now I get the following ...
3
votes
2answers
220 views
rotary encoder overflow prevention
I am in the process of writing code for an AVR Atmega328p microcontroller. The microcontroller is supposed to read the encoder and increment or decrement r23 based on the rotation of the encoder. ...
1
vote
0answers
86 views
Avrdude unable to write - C232HM-DDHSL-0 Linux Mint
I've been trying to program my ATmega644p using a C232HM-DDHSL-0 programmer which is based on the FT232H chip.
I've edited the .avrduderc in my home directory to include the following, which I've ...
1
vote
2answers
54 views
Do integers, whose size is not a power of two, make sense?
This is an 8 bit architecture, with a word size of 16 bits. I now need to use a 48-bit integer variable. My understanding is that libm implements 8, 16, 32, 64 bit operations (addition, ...





