Hello, I am now using RAK 11300 with Arduino IDE. I can’t upload the simple sketch on RAK 11300. Uploading the sketch take too long then unsuccess. I installed RAKwireless nRF Boards(0.21.20). I tried to connect RAK11300 board via RAK SERIAL PORT TOOL. Can’t open the COM PORT that board is used.
#include <lib.h>
#include <Arduino.h>
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(LED_BLUE, OUTPUT);
digitalWrite(LED_BLUE, HIGH);
}
void loop() {
// put your main code here, to run repeatedly:
// put your main code here, to run repeatedly:
digitalWrite(LED_BLUE, HIGH);
delay(1000);
digitalWrite(LED_BLUE, LOW);
delay(1000);
Serial.println(“Hello! I’m Alive”);
}