Questions tagged [avr-studio5]

Atmel® AVR Studio® 5 is the Integrated Development Environment (IDE) for developing and debugging embedded Atmel AVR® applications.

Atmel® AVR Studio® 5 is the Integrated Development Environment (IDE) for developing and debugging embedded Atmel AVR® applications. The AVR Studio 5 IDE gives you a seamless and easy-to-use environment to write, build, and debug your C/C++ and assembler code.

20 questions
0
votes
1 answer

Build AVR Studio 4 project in AVR Studio 5

I have an AT90USB162 Minimus AVR which I want to integrate into a project. I downloaded the demo code from Minimus USB. This is a driver for using the AVR as a COM port. The project is written for AVR Studio 4, and cannot be loaded as-is in AVR…
Rego
  • 1,118
  • 1
  • 18
  • 40
0
votes
1 answer

AVR Studio build error 255

I am running through a tutorial for making a LUFA, VirtualSerial project with AVR studio 5. When I clean the project no errors are shown but when I build I get the following error message: -f was unexpected at this time. make: ***…
hoboBob
  • 832
  • 1
  • 17
  • 37
0
votes
0 answers

ATMega wrong function argument

I am writting firmware for AT90CAN32 using AVR Studio + WinAVR. It seems simple for experienced AVR programmers. I pass int argument to function, but inside the function it is always zero. There is inside protocol.c file: #include static…
user3583807
  • 766
  • 1
  • 8
  • 26
0
votes
2 answers

Setting up AVR Studio with Arduino

I have tried setting up AVR studio 5.1 and 6 to use my Arduino libraries. The instructions I have followed are here: http://www.engblaze.com/tutorial-using-avr-studio-5-with-arduino-projects/ My project includes the necessary libraries and they are…
Spectrem
  • 682
  • 1
  • 11
  • 37
-1
votes
1 answer

Interrupt to Send and Receive String

can anyone show some example code or link that help me to solve this problem. I want to receive and transmit a string using a terminal. till now, I only got this --> void usart_init(void) { UBRRH = 0x00; UBRRL = 95; …
OooO
  • 13
  • 1
  • 8
1
2