Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
boards:wio-e5 [2024/08/30 18:31] – [Erase] darronboards:wio-e5 [2024/09/17 17:06] (current) – [LoRaWAN firmware] darron
Line 9: Line 9:
 </wrap> </wrap>
  
-This board has a package containing a STM32WLE5JC cortex-m4 microcontroller at 48 MHz.+This board has a package containing a STM32WLE5JC Cortex-M4 microcontroller at 48 MHz.
  
-The MCU does not contain a FPU, only the mandatory DSP for m4+The MCU does not contain a FPU, only the mandatory DSP for M4
 cores, but it does have an embedded radio, it appears to be an SX1262. cores, but it does have an embedded radio, it appears to be an SX1262.
  
Line 32: Line 32:
 the device may be destroyed." the device may be destroyed."
  
-I probably would not have bothered with this board had I read the above warning beforehand. 
-Who designs a MCU that can self destruct if a bit doesn't get set in error? 
  
  
Line 198: Line 196:
 </code> </code>
  
-===Pinout=== +===Pin control===
  
 <code> <code>
 PA4 RF_SW_CTRL1 PA4 RF_SW_CTRL1
 PA5 RF_SW_CTRL2 PA5 RF_SW_CTRL2
-PB0 TXCO_VCC+PB0 RF_TXCO_VCC
 </code> </code>
  
 +===RF switch===
 +
 +<code>
 +OFF
 +PA4 RF_SW_CTRL1 = 0
 +PA5 RF_SW_CTRL2 = 0
 +
 +RX
 +PA4 RF_SW_CTRL1 = 1
 +PA5 RF_SW_CTRL2 = 0
 +
 +RFO_LP
 +PA4 RF_SW_CTRL1 = 1
 +PA5 RF_SW_CTRL2 = 1
 +
 +RFO_HP
 +PA4 RF_SW_CTRL1 = 0
 +PA5 RF_SW_CTRL2 = 1
 +</code>
 +
 +According to the product WIKI RFO_LP is not supported.
 ===Clock=== ===Clock===
  
Line 214: Line 232:
  
 32MHz TCXO 32MHz TCXO
- 
-<code> 
-PB0 TCXO VCC 
-</code> 
  
 ==LSE== ==LSE==
  
 32.768KHz 32.768KHz
-===Antenna=== 
- 
-==Receiver== 
- 
-<code> 
-PA4 1 
-PA5 0 
-</code> 
- 
-==Transmitter with RFO_HP== 
- 
-<code> 
-PA4 0 
-PA5 1 
-</code> 
  
-SMPS mode.+===LoRaWAN firmware===
  
-==Transmitter with RFO_LP==+The I-CUBE LoRaWAN demo has been updated to support GNU make [[https://hg.kewl.org/pub/LauraWAN|here]].
  
-Not supported. 
  
 ===Resources=== ===Resources===