Arduino 如何解决这个错误;avrdude:读取签名数据时出错,rc=-67“是吗?”;?

Arduino 如何解决这个错误;avrdude:读取签名数据时出错,rc=-67“是吗?”;?,arduino,avrdude,Arduino,Avrdude,我正在使用Arduino Uno无线网络 起初,草图已成功上传到电路板上 然后,我开始出现以下错误,但没有更改代码中的任何内容: 是硬件问题还是电路板坏了 有什么帮助吗 以下是中的一个片段,它会导致观察到的错误消息: /* * Let's read the signature bytes to make sure there is at least a * chip on the other end that is responding correctly. A check

我正在使用Arduino Uno无线网络

起初,草图已成功上传到电路板上

然后,我开始出现以下错误,但没有更改代码中的任何内容:

是硬件问题还是电路板坏了

有什么帮助吗

以下是中的一个片段,它会导致观察到的错误消息:

/*
   * Let's read the signature bytes to make sure there is at least a
   * chip on the other end that is responding correctly.  A check
   * against 0xffffff / 0x000000 should ensure that the signature bytes
   * are valid.
   */
  if(!(p->flags & AVRPART_AVR32)) {
    if (init_ok) {
      rc = avr_signature(pgm, p);
      if (rc != 0) {
        fprintf(stderr, "%s: error reading signature data, rc=%d\n",
          progname, rc);
        exitrc = 1;
        goto main_exit;
      }
    }
因此,我猜可能是您选择了错误的目标,或者芯片没有响应。

以下是来自的一个片段,它会导致观察到的错误消息:

/*
   * Let's read the signature bytes to make sure there is at least a
   * chip on the other end that is responding correctly.  A check
   * against 0xffffff / 0x000000 should ensure that the signature bytes
   * are valid.
   */
  if(!(p->flags & AVRPART_AVR32)) {
    if (init_ok) {
      rc = avr_signature(pgm, p);
      if (rc != 0) {
        fprintf(stderr, "%s: error reading signature data, rc=%d\n",
          progname, rc);
        exitrc = 1;
        goto main_exit;
      }
    }

因此,我猜可能是您选择了错误的目标,或者芯片没有响应。

谢谢您的回复^ u^我猜目标是正确的,之前编译的是cz谢谢您的回复^ ^我猜目标是正确的,之前编译的是cz