Error with Wireless Stick Lite factory test code

Hello
I have a Wireless Stick Lite (Panda Board) and I use VSCium or Arduino when I run the Wireless Stick Lite factory test code sketch

Serial Monitor

`ets Jun  8 2016 00:22:57

rst:0x3 (SW_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 188777542, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0018,len:4
load:0x3fff001c,len:1044
load:0x40078000,len:8896
load:0x40080400,len:5828
entry 0x400806ac`

Here is the sketch and the platformio.ini

`[env:heltec_wireless_stick]
platform = espressif32
board = heltec_wireless_stick

framework = arduino

upload_protocol = esptool

upload_port = COM11
monitor_speed = 115200

lib_deps =

Using a library name

Heltec ESP32 Dev-Board
`

`#include <Arduino.h>

/*…

  • HelTec Automation™ Wireless Stick Lite factory test code, witch include
  • follow functions:
    • Node A search WiFi and send WiFi AP number to another node B via LoRa, Node B
  • will send a string “abc” back to Node A, if Node A received “abc”, test pass.
    • Basic serial port test(in baud rate 115200);
    • LED blink test;
    • WIFI join and scan test;
    • LoRa Ping-Pong test(DIO0 – GPIO26 interrup check the new incoming messages;
    • Timer test and some other Arduino basic functions.

*by Aaron.Lee from HelTec AutoMation, ChengDu, China
*成都惠利特自动化科技有限公司
*www.heltec.cn
*
*this project also realess in GitHub:
*https://github.com/HelTecAutomation/Heltec_ESP32
*/
#include “Arduino.h”
#include “heltec.h”
#include “WiFi.h”

#define BAND 868E6 //you can set band here directly,e.g. 868E6,915E6

uint64_t chipid;
bool IsACKRecvied = false;

String rssi = “RSSI --”;
String packSize = “–”;
String packet;

unsigned int counter = 0;

void WIFISetUp(void)
{
//WIFI初始化 + 扫描演示
// Set WiFi to station mode and disconnect from an AP if it was previously connected
WiFi.disconnect(true);
delay(1000);
WiFi.mode(WIFI_STA);
WiFi.setAutoConnect(true);
WiFi.begin(“Your WiFi SSID”,“Your Password”);//fill in “Your WiFi SSID”,“Your Password”
delay(100);

byte count = 0;
Serial.print(“Connecting.”);
while(WiFi.status() != WL_CONNECTED && count < 5)
{
count ++;
Serial.print(".");
delay(500);
}

if(WiFi.status() == WL_CONNECTED)
{
Serial.println("\r\nConnecting…OK.");
}
else
{
Serial.println(“Connecting…Failed”);
//while(1);
}
Serial.println(“WIFI Setup done”);
}

void WIFIScan(unsigned int value)
{
unsigned int i;
if(WiFi.status() != WL_CONNECTED)
{
WiFi.mode(WIFI_MODE_NULL);
}

for(i=0;i<value;i++)
{
Serial.println(“Scan start…”);

int n = WiFi.scanNetworks();
Serial.println("Scan done");
delay(500);

if (n == 0)
{
  Serial.println("no network found");
  //while(1);
}
else
{
  Serial.print(n);
  Serial.println("networks found:");
  delay(500);

  for (int i = 0; i < n; ++i) {
  // Print SSID and RSSI for each network found
    Serial.print((i + 1));
    Serial.print(":");
    Serial.print((String)(WiFi.SSID(i)));
    Serial.print(" (");
    Serial.print((String)(WiFi.RSSI(i)));
    Serial.println(")");;
    delay(10);
  }
}
delay(800);

}
}

bool receiveflag = false;
bool resendflag=false;
bool deepsleepflag=false;

void send()
{
LoRa.beginPacket();
LoRa.print("hello ");
LoRa.print(counter++);
LoRa.endPacket();
Serial.print(“Packet “);
Serial.print(counter-1);
Serial.println(” sent done”);
}

void onReceive(int packetSize)//LoRa receiver interrupt service
{
//if (packetSize == 0) return;

packet = “”;
packSize = String(packetSize,DEC);

while (LoRa.available())
{
    packet += (char) LoRa.read();
}

rssi = "RSSI: " + String(LoRa.packetRssi(), DEC);

receiveflag = true;

}

void interrupt_GPIO0()
{
delay(10);
if(digitalRead(0)==0)
{
if(digitalRead(LED)==LOW)
{resendflag=true;}
else
{
deepsleepflag=true;
}
}
}
void setup()
{
pinMode(LED,OUTPUT);
Heltec.begin(true /DisplayEnable Enable/, true /LoRa Disable/, true /Serial Enable/, true /PABOOST Enable/, BAND /**/);

WIFISetUp();
WIFIScan(1);

attachInterrupt(0,interrupt_GPIO0,FALLING);
LoRa.onReceive(onReceive);
send();
LoRa.receive();
}

void loop()
{
if(deepsleepflag)
{
delay(1000);
LoRa.end();
LoRa.sleep();
pinMode(4,INPUT);
pinMode(5,INPUT);
pinMode(14,INPUT);
pinMode(15,INPUT);
pinMode(16,INPUT);
pinMode(17,INPUT);
pinMode(18,INPUT);
pinMode(19,INPUT);
pinMode(26,INPUT);
pinMode(27,INPUT);
digitalWrite(Vext,HIGH);
delay(2);
esp_deep_sleep_start();
}
if(resendflag)
{
resendflag=false;
send();
LoRa.receive();
}
if(receiveflag)
{
digitalWrite(25,HIGH);
Serial.print("Received Size “);
Serial.print(packSize);
Serial.print(” pakeges: “);
Serial.print(packet);
Serial.print(” With ");
Serial.println(rssi);
receiveflag = false;
delay(1000);
send();
LoRa.receive();
}
}

`

Where is the error ??

Thank you

Same problem with Heltec Automation I2C scanner example

ets Jun  8 2016 00:22:57

rst:0x3 (SW_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 188777542, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0018,len:4
load:0x3fff001c,len:1044
load:0x40078000,len:8896
load:0x40080400,len:5828
entry 0x400806ac

If you use Arduino, it is recommended that you update the development environment and choose the correct development board.

I followed https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series/blob/master/InstallGuide/windows.md

executed get with admin

in Arduino to select
https://ibb.co/St2D2n9
What parameters to put ??

Does the serial port print these repeatedly?

rst:0x3 (SW_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 188777542, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0018,len:4
load:0x3fff001c,len:1044
load:0x40078000,len:8896
load:0x40080400,len:5828
entry 0x400806ac

When I plug it doesn’t stop

Thank you

This is the system reset repeatedly, is it the same for downloading all programs? Because some pins of the Wireless Stick Lite are occupied, operations on these pins may cause repeated resets. You try to run some simple programs, such as printing a string of numbers through the serial port.

Hello
I tested this sketch
void setup() {
Serial.begin(115200);
}

void loop() {
Serial.println("Hello");
}

15:46:19.066 -> ets Jun 8 2016 00:22:57
15:46:19.066 ->
15:46:19.066 -> rst:0x3 (SW_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
15:46:19.066 -> configsip: 188777542, SPIWP:0xee
15:46:19.066 -> clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
15:46:19.066 -> mode:DIO, clock div:1
15:46:19.066 -> load:0x3fff0018,len:4
15:46:19.066 -> load:0x3fff001c,len:1044
15:46:19.101 -> load:0x40078000,len:8896
15:46:19.101 -> load:0x40080400,len:5816
15:46:19.101 -> entry 0x400806ac

on the other hand I am not sure that the parameters are good for Wireless Stick Lite
Sans%20titre

Thank

Maybe I know your mistake, your development board is wrong. You choose Wireless Stick Lite to try. The ESP32 chip of Wireless Stick Lite and Wireless Stick is different.04

OK Heltec wifi lora 32 or Heltec wifi lora 32 (v2)

Thank you so much