Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » C / C++ IDE (CDT) » avr-gcc problem(Problem with the avr plugin)
avr-gcc problem [message #1771534] Sun, 27 August 2017 04:03
Juan  Gutierrez is currently offline Juan GutierrezFriend
Messages: 1
Registered: August 2017
Junior Member
Hi all, please I need your help I did all the configurations to install the avr gcc plugin I configured the programmer and do it all the steps that I encountered in one video

When I finally finish the configuration I made a simple blink program
Quote:

#include <avr/io.h>
#include <util/delay.h>

int main(){
DDRB=255;
while(1){
PORTB=255;
_delay_ms(100);
PORTB=0;
_delay_ms(100);
}
}


All go good when I selected de debug mode It compiles, and program my MCU(atmega328p) and it works perfect, but when I select release mode nothing works, i tried oxigen and neon version and have the same problem,I don't found any suggestion to solve my problem, so please anybody can help me
I use ubuntu 16.04
Thanks

PD: sorry for my bad english
Previous Topic:Search doesn't seem to include files without extension?
Next Topic:Qt support
Goto Forum:
  


Current Time: Fri Apr 26 21:03:44 GMT 2024

Powered by FUDForum. Page generated in 0.02743 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top