Tagged Questions
4
votes
1answer
617 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 ...
3
votes
2answers
646 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
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
2answers
553 views
avrdude and atmega48pa
Can i programm the atmega48pa with avrdude? I have problems with the signature ...
% avrdude -pm48 -cavrisp2 -Pusb -V -U flash:w:main.hex
avrdude: AVR device initialized and ready to accept ...
1
vote
1answer
86 views
What does this do in assembly
My teacher wants us to have a basic understanding of assembly, because later down the road, that might be helpful. I'm fine with that, but my college provides zero documentation on the subject, apart ...
1
vote
2answers
283 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 ...
0
votes
1answer
64 views
AVR atmega64 using 2 8 bit timers
I would like to use both 8 bit timers of an Atmega 64 uprocessor.
I used the following code to declare their compare interrupts:
.org 0x0012 ; Timer2 8 bit counter
rjmp TIM2
.org 0x001E ; ...
0
votes
0answers
69 views
PB7, PD7 (on ATMega32) won't work when pull ups enabled. Also PC6 and PC7 don't show output [closed]
I am making 8*8 keypad(on PORTB and PORTD) with ATMega32 using proteus 6.9 and AVRstudio5.
My problem is PB7 and PD7 won't work when pull ups on those pins are enabled. Here PD7 is output, so no ...
0
votes
1answer
401 views
avrdude on ubuntu with JTAGICE mkII clone - problems connecting ATmega1280 (RSP_ILLEGAL_JTAG_ID)
Hopefully I've been struggling with this long enough to ask a question here...
I can't connect ATmega1280 with a cheaper version of JTAGICE mkII like this one. I'm trying to first set fuses for JTAG ...
0
votes
1answer
254 views
AVR Long running code from within timer interrupt
I've got some code that needs to run every 2 minutes which seems simple enough. The problem seems that triggering a long running process from within a timer causes the timers to go wobbly? any ...