avr-gcc problem [message #1771534] |
Sun, 27 August 2017 00:03 |
Eclipse User |
|
|
|
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
|
|
|
Powered by
FUDForum. Page generated in 0.03703 seconds