Open gherlein opened 3 months ago
@ofauchon perhaps you know?
var ( spi = machine.SPI1 nssPin, busyPin, dio1Pin = machine.GP13, machine.GP6, machine.GP7 rxPin, txLowPin, txHighPin = machine.GP9, machine.GP8, machine.GP8 )
what are those pin names? nss is CS, busyPin is busy, dio1 is dio1 - bit the others don't map to any pin names I can find on my part or in the datasheet. Please advise?
Probably comes from this board: https://wiki.seeedstudio.com/LoRa_E5_mini/
@gherlein I think what you're looking for is the RXEN and TXEN pins? If there's no low power TX then set it to machine.NoPin.
machine.NoPin
@ofauchon perhaps you know?
var ( spi = machine.SPI1 nssPin, busyPin, dio1Pin = machine.GP13, machine.GP6, machine.GP7 rxPin, txLowPin, txHighPin = machine.GP9, machine.GP8, machine.GP8 )
what are those pin names? nss is CS, busyPin is busy, dio1 is dio1 - bit the others don't map to any pin names I can find on my part or in the datasheet. Please advise?