Thomas Roell

Results 114 comments of Thomas Roell
trafficstars

I am not happy with messing with the size there. I see I need to fix L052, but nobody complianed yet. For L072, do you have a real problem with...

Mind pining me directly via [email protected]. On Wed, Nov 4, 2020 at 10:43 AM Matthijs Kooijman wrote: > I am not happy with messing with the size there. I see...

How did you end up including "HardwareSerial.h" directly ? That is normally only included via "Uart.h". - Thomas On Tue, Jun 16, 2020, 04:59 Michael wrote: > \cores\arduino/HardwareSerial.h:27:21: error: >...

This library will not work with ArduinoCore-stm32l0. Mainly because the heap/malloc layout in memory is different as to what the code assumes. On Mon, Nov 26, 2018 at 3:23 AM...

The official release version of the LoRaMac-node stack does not support Class B, or LoRaWAN 1.0.3. Class C without the multicast updates in 1.0.3 is not that useful. Shortly after...

The spreading factor is set via setDataRate(). The data rate is region specific. So you need to check out the LoRaWAN spec as to what setting you want to use...

No clue. Out of the box, no. Could it be made work, perhaps. Is this block diagram enough to even make a judgement, no.

Interesting. The Wire.setClockLowTimeout(250) command actually just enables the timeout to abort a transfer if the slave stretched SCL for too long. Per default (and I2C spec) this timeout is disabled....

Arduino sets this up kind of oddly in general. On a real AVR based platform (other the ones with builtin USB) "Serial" refers to both, D0/D1 and the attached USB....

Interesting. The DMA assignments were changed to support async SPI (so that you can transfer in the background to say a e-Paper thingy). The change in DMA assignments does not...