IDE for GR (v1.10)について

こんにちは。

IDE for GR (v1.10)を使ってGR-ROSEにサンプルプログラムを書き込んだのですが、シリアルモニタが動作しませんでした。

使用環境は Windows10 Pro (64ビット) のNEC VersaPro です。

書き込んだのは、GR-ROSEチュートリアルページのサンプルスケッチ

void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
  pinMode(PIN_LED1, OUTPUT);
 
}
 
void loop() {
  // put your main code here, to run repeatedly: 
  digitalWrite(PIN_LED1, LOW);
  delay(100);
  digitalWrite(PIN_LED1, HIGH);
  delay(100);  
  Serial.println("hello");
   
}

です。GR-ROSEに書き込んだとき(検証時も同様)、IDE for GR に以下のように表示されます。

C:\Users\usr_name\Downloads\ide4gr-1.10-windows\ide4gr-1.10\hardware\arduino\rx65n\cores\aws_utilities\aws_logging_task_dynamic_buffers.c: In function 'prvLoggingTask':
C:\Users\usr_name\Downloads\ide4gr-1.10-windows\ide4gr-1.10\hardware\arduino\rx65n\cores\aws_utilities\aws_logging_task_dynamic_buffers.c:122:13: warning: implicit declaration of function 'serial_print' [-Wimplicit-function-declaration]
             configPRINT_STRING( pcReceivedString );
             ^
C:\Users\usr_name\Downloads\ide4gr-1.10-windows\ide4gr-1.10/hardware/tools/gcc-rx/rx-elf/rx-elf/rx-elf/lib/64-bit-double\libc.a(lib_a-closer.o): In function `__close_r':
(.text._close_r+0x10): warning: _close is not implemented and will always fail
C:\Users\usr_name\Downloads\ide4gr-1.10-windows\ide4gr-1.10/hardware/tools/gcc-rx/rx-elf/rx-elf/rx-elf/lib/64-bit-double\libc.a(lib_a-fstatr.o): In function `__fstat_r':
(.text._fstat_r+0x12): warning: _fstat is not implemented and will always fail
C:\Users\usr_name\Downloads\ide4gr-1.10-windows\ide4gr-1.10/hardware/tools/gcc-rx/rx-elf/rx-elf/rx-elf/lib/64-bit-double\libc.a(lib_a-isattyr.o): In function `__isatty_r':
(.text._isatty_r+0x10): warning: _isatty is not implemented and will always fail
C:\Users\usr_name\Downloads\ide4gr-1.10-windows\ide4gr-1.10/hardware/tools/gcc-rx/rx-elf/rx-elf/rx-elf/lib/64-bit-double\libc.a(lib_a-lseekr.o): In function `__lseek_r':
(.text._lseek_r+0x14): warning: _lseek is not implemented and will always fail
C:\Users\usr_name\Downloads\ide4gr-1.10-windows\ide4gr-1.10/hardware/tools/gcc-rx/rx-elf/rx-elf/rx-elf/lib/64-bit-double\libc.a(lib_a-readr.o): In function `__read_r':
(.text._read_r+0x14): warning: _read is not implemented and will always fail
Binary sketch size: 343,647 bytes (of a 917,504 byte maximum) - 37% used
Minimum Memory usage: 81,336 bytes (of a 655,360 byte maximum) - 12% used
...."copy C:\Users\usr_name\AppData\Local\Temp\build1710472012053425517.tmp\sketch_nov15a.cpp.bin "E:\\""
done to copy your sketch into GR-ROSE.

GR-ROSEのLEDは点滅しますが、IDE for GR のシリアルモニタには何も表示されませんでした。

Parents Reply Children
No Data