Search found 2 matches
- Wed Feb 26, 2025 9:09 am
- Forum: General discussion
- Topic: LowPower on STM32WL55JC
- Replies: 2
- Views: 515
Re: LowPower on STM32WL55JC
ok, so my next question will be, how do I put the M0 core to sleep as well? Does the lowpower module support this somehow too?
- Sun Dec 29, 2024 4:30 pm
- Forum: General discussion
- Topic: LowPower on STM32WL55JC
- Replies: 2
- Views: 515
LowPower on STM32WL55JC
Trying to get my Nucleo--WL55JC1 board into some super low power sleep.
Currently my code is quite minimal:
#include <Arduino.h>
#include <RadioLib.h>
#include "STM32LowPower.h"
STM32WLx radio = new STM32WLx_Module();
void setup()
{
LowPower.begin();
radio.sleep(); // didnt really help
}
void ...
Currently my code is quite minimal:
#include <Arduino.h>
#include <RadioLib.h>
#include "STM32LowPower.h"
STM32WLx radio = new STM32WLx_Module();
void setup()
{
LowPower.begin();
radio.sleep(); // didnt really help
}
void ...