I get an error that I really don't understand. "Found programmer: Id = "CATERIN"; type = S"

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.

It's not an error, it's the usual output for boards with a 32U4 processor (Leonardo etc).

I agree that the fact that it is in red is confusing.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.