Replies: 4 comments 2 replies
-
Formally first nothing wrong, but do not know platformIO. Try once without Serial. |
Beta Was this translation helpful? Give feedback.
-
The first thing i did, was just the led blink, then i added the serial to "debug" and see if at least this was working and not something i did wrong . I will try to change the chip and try again . Maybe something wrong with this chip ? |
Beta Was this translation helpful? Give feedback.
-
Try direct register programming first. Without Arduino functions. Not that an assignment in the lib is wrong. Example #include <util/delay.h>
void setup (void)
{
PORTF_DIR = PIN5_bm;
}
void loop (void)
{
PORTF_OUTTGL = PIN5_bm;
_delay_ms(500);
} |
Beta Was this translation helpful? Give feedback.
-
Well , looks like by miracle, today everything is working lol I then changed the chip, programmed again through ArduinoIDE and it's working again. Even the chip 74HC4052D to change between UPDI and Serial is working _ The only difference is in versions of DXcore, ArduinoIDE i'm still on 1.3.10 and platformIO has the 1.4.7 if not wrong Need to find what is wrong in PlatformIO now, Thanks for your help mikrocoder EDIT 1: Something is bad in the firmware for the AVRxxDA in platformIO , even uploading through uart it's not working. |
Beta Was this translation helpful? Give feedback.
-
Hello all,
Sorry if it seems like a shit question, but can't find a solution alone.
I'm trying to play with some AVR64DA32 chips but can't do anything with them .
I'm using platformIO ( sometimes Arduino IDE if not sure about settings),
I made a little quick program to test my chips but I'm not able to get anything from it .
I don't get anything on Serial monitor or any blinking LED ,
It compiles and write to the chip, but nothing happens .
Thanks for your time
Beta Was this translation helpful? Give feedback.
All reactions