Hi,
Anyone having this issue? Im using a PC that already worked, suddenly it started failing not recognising my STM32 boards... I have tried several things...
- My boards and cables work fine, tried with other laptop and the other one works.
- I updated to version IDE 2+ and it worked.
The ...
Search found 8 matches
- Tue Jul 30, 2024 1:52 pm
- Forum: IDE's
- Topic: Port not working on old arduino ide
- Replies: 5
- Views: 6609
- Sat Jul 01, 2023 3:36 pm
- Forum: General discussion
- Topic: Board resetting - USB communication lost - NucleoL432
- Replies: 0
- Views: 17548
Board resetting - USB communication lost - NucleoL432
I recently had a problem with one STM NUCLEO32L432, it was resetting randomly after 4 to 5 min causing communication loss through USB port...
From Gregory Hancock:
"Disabling the 'MBED Microcontroller USB Device' under 'Disk drives' in Windows Device Manager seems to have solved the problem. That ...
From Gregory Hancock:
"Disabling the 'MBED Microcontroller USB Device' under 'Disk drives' in Windows Device Manager seems to have solved the problem. That ...
- Thu Dec 22, 2022 7:02 pm
- Forum: General discussion
- Topic: How to enable OPAMP in NUCLEOL432KC?
- Replies: 0
- Views: 1910
How to enable OPAMP in NUCLEOL432KC?
Hi!
Does anyone know how to enable the OPAMP in the Nucleo32L432? I'm connecting a sensor to PA0 (OPAMP1_VINP), but, I'm not sure if the OPAMP is working or not.
Thanks
Does anyone know how to enable the OPAMP in the Nucleo32L432? I'm connecting a sensor to PA0 (OPAMP1_VINP), but, I'm not sure if the OPAMP is working or not.
Thanks
- Tue Oct 18, 2022 3:10 pm
- Forum: General discussion
- Topic: ADC External Voltage Reference (AnalogReference)
- Replies: 4
- Views: 3143
Re: ADC External Voltage Reference (AnalogReference)
I was having a hardware issue...
To enable the external Vref, just disable the SB10 and we should be fine... (Vref should always be < than VDD)

To enable the external Vref, just disable the SB10 and we should be fine... (Vref should always be < than VDD)

- Tue Oct 18, 2022 2:18 pm
- Forum: General discussion
- Topic: ADC External Voltage Reference (AnalogReference)
- Replies: 4
- Views: 3143
Re: ADC External Voltage Reference (AnalogReference)
Thanks GonzoG...
I found the instructions in the manual, I deactivated the SB10 and provided a direct 3Voltage to pin Vref (pin13), and now I can have a full 10bit ADC count up to 1023... (I'm using a sensor with max output of 3V)
Nevertheless, my sensor has an offset value of 400mV, I would ...
I found the instructions in the manual, I deactivated the SB10 and provided a direct 3Voltage to pin Vref (pin13), and now I can have a full 10bit ADC count up to 1023... (I'm using a sensor with max output of 3V)
Nevertheless, my sensor has an offset value of 400mV, I would ...
- Tue Oct 04, 2022 7:58 pm
- Forum: General discussion
- Topic: ADC External Voltage Reference (AnalogReference)
- Replies: 4
- Views: 3143
ADC External Voltage Reference (AnalogReference)
Hi,
Is there a compatible command to set the external Vref through Pin 13 in the Nucleo 32 boards?
I have tried to disable Jumper SB10 and then connect directly a Vref = 3V, but, this is not completely working...
I'm looking for a compatible command like: AR_EXTERNAL as it is available for SAMD ...
Is there a compatible command to set the external Vref through Pin 13 in the Nucleo 32 boards?
I have tried to disable Jumper SB10 and then connect directly a Vref = 3V, but, this is not completely working...
I'm looking for a compatible command like: AR_EXTERNAL as it is available for SAMD ...
- Sat Aug 20, 2022 5:59 pm
- Forum: IDE's
- Topic: STM32L432 serial monitor not working
- Replies: 1
- Views: 7785
Re: STM32L432 serial monitor not working
Partial Solution:
I was using a wrong board configuration, I was using the board: "generic STM32L4 series", but I changed to "Nucleo32"...
Changing the configuration helps to get I/O from the serial monitor, but the board stops working randomly after some minutes...
I was using a wrong board configuration, I was using the board: "generic STM32L4 series", but I changed to "Nucleo32"...
Changing the configuration helps to get I/O from the serial monitor, but the board stops working randomly after some minutes...
- Fri Aug 19, 2022 8:25 pm
- Forum: IDE's
- Topic: STM32L432 serial monitor not working
- Replies: 1
- Views: 7785
STM32L432 serial monitor not working
Dear all,
Problem: The serial monitor (Serial.read) is not responding to keyboard commands
Code:
char userInput;
void setup() {
pinMode(PB3, OUTPUT);
Serial.begin(9600); // Baud Rate set to 115200
}
void loop() {
userInput = Serial.read();
if (userInput == 'y') {
delay(5000);
while (true ...
Problem: The serial monitor (Serial.read) is not responding to keyboard commands
Code:
char userInput;
void setup() {
pinMode(PB3, OUTPUT);
Serial.begin(9600); // Baud Rate set to 115200
}
void loop() {
userInput = Serial.read();
if (userInput == 'y') {
delay(5000);
while (true ...