chipKIT® Development Platform

Inspired by Arduino™

What's wrong about my chipkit max32 board

Created Tue, 07 Feb 2012 03:10:03 +0000 by ruixuedz


ruixuedz

Tue, 07 Feb 2012 03:10:03 +0000

Hi all: I use serial of chipkit max32 , code is above.

int  timer =0;
void setup() {
  Serial.begin(9600);
}

void loop() {
  Serial.print("Servo:");   //串口输出"Servo:"
  Serial.print(timer);       //串口输出timer值
  Serial.print("\r\n");
  timer++;
  delay(500);                    //延时500ms。
}
After I upload the program,I can't see any character on serial monitor, and the serial status led is unlight. Will the serial can't use in this board?

Thanks!


Jacob Christ

Thu, 29 Mar 2012 07:26:20 +0000

Did you select the correct board? You can have the Uno32 selected and upload to a Max32.

Jacob


shahrul

Fri, 30 Mar 2012 08:05:43 +0000

This should be no problem. You need to choose right board. I'm also use Max32.