Questions tagged [atmelstudio]

Atmel Studio is the integrated development platform (IDP) for developing and debugging Atmel ARM Cortex-M and Atmel AVR microcontroller (MCU) based applications.

Atmel Studio is the integrated development platform (IDP) for developing and debugging Atmel ARM® Cortex-M and Atmel AVR microcontroller (MCU) based applications. The Atmel Studio 6 IDP gives you a seamless and easy-to-use environment to write, build and debug your applications written in C/C++ or assembly code.

Atmel Studio 6 is free of charge and is integrated with the Atmel Software Framework (ASF)—a large library of free source code with 1,600 ARM and AVR project examples. ASF strengthens the IDP by providing, in the same environment, access to ready-to-use code that minimizes much of the low-level design required for projects. Use the IDP for our wide variety of AVR and ARM Cortex-M processor-based MCUs, including our broadened portfolio of Atmel SAM3 ARM Cortex-M3 and M4 Flash devices.

Atmel Studio 6.2 is now available, adding advanced debugging features such as Data and Interrupt Trace, improved RTOS integration, and better ability to debug code that has been optimized.

With the introduction of Atmel Gallery and Atmel Spaces, Atmel Studio 6 further simplifies embedded MCU designs to reduce development time and cost. Atmel Gallery is an online apps store for development tools and embedded software. Atmel Spaces is a cloud-based collaborative development workspace allowing you to host software and hardware projects targeting Atmel MCUs.

In summary, standard integrated development environments (IDEs) are suited for creating new software for an MCU project. By contrast, the Atmel Studio 6 IDP also:

  • Facilitates reuse of existing software and, by doing so, enables design differentiation.
  • Supports the product development process with easy access to integrated tools and software extensions through Atmel Gallery.
  • Reduces time to market by providing advanced features, an extensible software eco-system, and powerful debug integration.

http://www.atmel.com/microsite/atmel_studio6/

339 questions
-2
votes
1 answer

How to multiply two unsigned numbers in AVR?

I need to multiply two unsigned numbers(in this case the numbers are 234 and 24), however I have no idea how to do it. I need to multiply them without using registers R16, R17 and R18(the registers are present in the code bellow). I tried to…
ile123
  • 57
  • 1
  • 6
-2
votes
1 answer

ATmega64a float to IEEE-754 unexpected result

I am trying to convert a float to an IEEE-754 Hex representation. The following code works on my Mac. #include #include union Data { int i; float f; }; int main() { float var = 502.7; union Data value; …
user1757006
  • 705
  • 2
  • 12
  • 23
-2
votes
1 answer

Global structure doesn't work

I am programming with Xmega and I need some flags used in more than one file. So I declared the flag as extern in the h-file and initialized it global in the main-file. global.h: #ifndef GLOBAL_H_ #define GLOBAL_H_ typedef struct GLOBAL_FLAGS { …
puzzled
  • 69
  • 1
  • 8
-2
votes
1 answer

Uart communication in C

I'm trying to get UART-communication to work, and I used some example-code from ATMEL as a base for this (UART Example). The main change I want to make is that instead of using test_string I want to receive a string/char array using uart_getchar()…
DoTheGenes
  • 197
  • 2
  • 4
  • 22
-3
votes
1 answer

Compiler error using AVR Atmel Studio library config files

// Created by lenovo on 8/27/2017. // #ifndef UART_UART_CFG_H #define UART_UART_CFG_H #define UART_BaudRate 1200 //9600UL #define CLK 16 #define UART_Parity NONE #define UART_TX EN_TX #define UART_RX …
-3
votes
1 answer

how to read and write to same port in ATMEL studio C program

How to write C program in atmel studio to read and write to same port B. I want to read from port B pin 4 and write to the same port B but on pin 5. I have the following: #include int main(void) { DDRB = 0b00100000; while(1) { …
-3
votes
2 answers

too many initializers for struct

I'm currently working on a EEprom file structure which is filled with default values while compiling. All works fine so far except for one structure and i can't seem to find the error.. typedef struct { // ===== instance parameters ===== …
Maku
  • 199
  • 2
  • 15
-4
votes
1 answer

How can i display a digital clock on a powertip pc1602f b 16x2 LCD display module?

I kindly need help with displaying a digital clock on a powertip pc1602f b 16x2 LCD display module, the code works well but I need to be able to run it atmel studio 7... I am using STK300 AVR Board and the time displayed on the lcd screen. The…
-4
votes
2 answers

C++ How to initialize members with hidden default constructors?

I have a class with a hidden default constructor to force the use of a constructor taking parameters. Another class is using 2 instances of the class: typedef struct { ... } BAZ; class Foo { private: Foo(void) {} public: Foo(BAZ a) {…
Max Kielland
  • 5,627
  • 9
  • 60
  • 95
1 2 3
22
23