i have upload a new example for STM32L476RG to the library in case anyone need this:
#include <Tinyfox.h>
#define btn PC13 // boton usuario azul / blue user button
#define RXLED PA5
#define rstPin PC12
//nucleo-64 STM32L476RG:
//HardwareSerial Serial2(USART2);
HardwareSerial Serial3(USART3 ...
Search found 10 matches
- Tue Jan 05, 2021 4:23 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
- Replies: 13
- Views: 13632
- Mon Jan 04, 2021 2:23 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
- Replies: 13
- Views: 13632
Re: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
you dont get the message on the sigfox backend? are you sure the module its connected to the right Tx and Rx pins? your modules have leds to let you know when its transmitting?
also, you are using the wisol.send_rcv() funtion, if you dont have a downlink configured use wisol.send()
I ...
- Sun Jan 03, 2021 9:59 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
- Replies: 13
- Views: 13632
Re: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
you dont get the message on the sigfox backend? are you sure the module its connected to the right Tx and Rx pins? your modules have leds to let you know when its transmitting?
also, you are using the funtion, if you dont have a downlink configured use
also, you are using the
Code: Select all
wisol.send_rcv()
Code: Select all
wisol.send()
- Sun Jan 03, 2021 7:12 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
- Replies: 13
- Views: 13632
Re: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
in your module you have a reset pin beside the Vcc pin (marked in blue in the graphic). connect that to the nucleo board on some free pin.
this pin its necessary to wake up the module after its put in sleep mode
load the code and push the user button.
this pin its necessary to wake up the module after its put in sleep mode
load the code and push the user button.
- Sun Jan 03, 2021 4:25 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
- Replies: 13
- Views: 13632
Re: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
try this configuration:
HardwareSerial Serial3(USART3); //connect the modulo to serial3.
Tiny<HardwareSerial,HardwareSerial> wisol(&Serial3,&Serial,PA1,false); //change PA1 to match your reset pin.
.
.
.
#define btn PC13 //change this to PC13 the blue/user button on the nucleo
#define RXLED PA5 ...
HardwareSerial Serial3(USART3); //connect the modulo to serial3.
Tiny<HardwareSerial,HardwareSerial> wisol(&Serial3,&Serial,PA1,false); //change PA1 to match your reset pin.
.
.
.
#define btn PC13 //change this to PC13 the blue/user button on the nucleo
#define RXLED PA5 ...
- Sat Jan 02, 2021 9:42 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: STM32L476RG for low power application
- Replies: 2
- Views: 4357
Re: STM32L476RG for low power application
thank you GonzoG i am now able to read the battery voltage with accuracy.
my next problem is decreasing the current drawn by the circuit.
currently, after i call to LowPower.deepSleep(60000*suenno_minutos);
the current lower to a 500uA. this seem too much current. how could i lower this?
currently ...
my next problem is decreasing the current drawn by the circuit.
currently, after i call to LowPower.deepSleep(60000*suenno_minutos);
the current lower to a 500uA. this seem too much current. how could i lower this?
currently ...
- Sat Jan 02, 2021 9:21 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
- Replies: 13
- Views: 13632
Re: Modifying library for the WSSFM10 Sigfox module for compatibility with STM32L476RG
a friend and i wrote a library for the wisol modules. we call it TinyFox. the blue pill example should be compatible with minimal modifications
you can find it here: https://github.com/TECA-IOT/Tinyfox
or at the library manager : )
just change
HardwareSerial Serial2(USART2); //this is the default ...
you can find it here: https://github.com/TECA-IOT/Tinyfox
or at the library manager : )
just change
HardwareSerial Serial2(USART2); //this is the default ...
- Fri Dec 25, 2020 11:40 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: STM32L476RG for low power application
- Replies: 2
- Views: 4357
STM32L476RG for low power application
im trying to use my new nucleo-64 for a low power application (trying to make it run on batteries for months, having it in sleep mode most of the time waking it up periodically to read sensors and log data). but i need to clarify some doubts:
1) what would be the best voltage to drive it? 1.8 o 3.3v ...
1) what would be the best voltage to drive it? 1.8 o 3.3v ...
- Tue Dec 22, 2020 6:59 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: [solved] STM32L476RG Serial Messup
- Replies: 2
- Views: 3824
Re: STM32L476RG Serial Messup
I've tested your code,note that I've clean it:
HardwareSerial Serial1(USART1);
HardwareSerial Serial3(USART3);
HardwareSerial Serial4(UART4);
HardwareSerial Serial5(UART5);
void setup() {
Serial5.begin(9600); Serial5.println("serial 5");
Serial4.begin(9600); Serial4.println("serial 4 ...
- Sun Dec 20, 2020 5:28 pm
- Forum: STM boards (Discovery, Eval, Nucleo, ...)
- Topic: [solved] STM32L476RG Serial Messup
- Replies: 2
- Views: 3824
[solved] STM32L476RG Serial Messup
i just got a new nucleo-64 STM32L476RG. im trying to control multiple Serial slaves via the multiple uart ports on the nucleo.
the problem its most of the serial ports are printing through the USB adapter. only uart3 its printing over its respective pin. uart4 its not printing at all.
here its my ...
the problem its most of the serial ports are printing through the USB adapter. only uart3 its printing over its respective pin. uart4 its not printing at all.
here its my ...