So, I literally have a virgin appimage download of the latest IDE. And was getting ready to fiddle around with a Micro to see if it would work with this project I'm thinking about. I installed the board library that included the Arduino Micro. Which, I guess kind of surprised me. And then just to test some settings, I through this code at it:
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.print(millis());
delay(10000);
}
It compiles fine. Like, why wouldn't it. haha. But then on upload it did this:
Connecting to programmer: .
Found programmer: Id = "CATERIN"; type = S
Software Version = 1.0; No Hardware Version given.
Programmer supports auto addr increment.
Programmer supports buffered memory access with buffersize=128 bytes.
Programmer supports the following devices:
Device code: 0x44
I did find this link, but nothing in it seems to make any difference.