Search found 3 matches
- Fri Mar 31, 2023 11:53 am
- Forum: General discussion
- Topic: Applications uploaded to the Seeed Studio LoRa-E5 mini does not boot
- Replies: 3
- Views: 1696
Re: Applications uploaded to the Seeed Studio LoRa-E5 mini does not boot
Thank you for the reply, and sorry for the late answer. The notification probably disappeared into some inbox. We managed to make it work, and while the pin target had to be changed, the main issue, I think, was something else. I have written a step-by-step-guide here outlining how we got it to work ...
- Thu Mar 02, 2023 12:47 pm
- Forum: General discussion
- Topic: Applications uploaded to the Seeed Studio LoRa-E5 mini does not boot
- Replies: 3
- Views: 1696
Re: Applications uploaded to the Seeed Studio LoRa-E5 mini does not boot
The script we uploaded was a standard blink-script, namely
#include <Arduino.h>
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
delay(100);
Serial.println(F("booted"));
pinMode(LED_BUILTIN, OUTPUT); //We have tried using the exact pin name as well ...
#include <Arduino.h>
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
delay(100);
Serial.println(F("booted"));
pinMode(LED_BUILTIN, OUTPUT); //We have tried using the exact pin name as well ...
- Thu Mar 02, 2023 12:47 pm
- Forum: General discussion
- Topic: Applications uploaded to the Seeed Studio LoRa-E5 mini does not boot
- Replies: 3
- Views: 1696
Applications uploaded to the Seeed Studio LoRa-E5 mini does not boot
My supervisor and I have been trying to do some work using the Seeed studio board LoRa-E5 mini using STM32WLE5JC.
After struggling a bit with removing the included write protection using the STM Programmer and a ST-Link, we managed to upload a script to the board. While we can, indeed see that the ...
After struggling a bit with removing the included write protection using the STM Programmer and a ST-Link, we managed to upload a script to the board. While we can, indeed see that the ...