File tree 4 files changed +22
-3
lines changed
variants/STM32WLxx/WL54CCU_WL55CCU_WLE4C(8-B-C)U_WLE5C(8-B-C)U
4 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -827,6 +827,7 @@ User can add a STM32 based board following this [wiki](https://github.com/stm32d
827
827
| :green_heart : | STM32F072C8<br >STM32F072CB | [ Elektor LoRa Node] ( https://github.com/ElektorLabs/180516-Elektor_LoRa_Node ) | * 1.8.0* | [ More info] ( https://www.elektormagazine.com/labs/lorawan-node-experimental-platform ) |
828
828
| :green_heart : | STM32WLE5JC | [ LoRa-E5 mini] ( https://wiki.seeedstudio.com/LoRa_E5_mini/ ) | * 2.6.0* | |
829
829
| :green_heart : | STM32WLE5CC | [ RAK3172 Module] ( https://github.com/RAKWireless/rakwireless-docs/tree/master/docs/Product-Categories/WisDuo/RAK3172-Module ) | * 2.6.0* | |
830
+ | :yellow_heart : | STM32WLE5CC | [ RAK3172T Module] ( https://github.com/RAKWireless/rakwireless-docs/tree/master/docs/Product-Categories/WisDuo/RAK3172-Module ) | ** 2.8.1** | RAK3172 Module with TCXO |
830
831
| :green_heart : | STM32L151CB | [ RAK811 LoRa Tracker] ( https://www.rakwireless.com/en/ ) | * 1.4.0* | [ Wiki] ( https://github.com/stm32duino/Arduino_Core_STM32/wiki/Connectivities#lora ) |
831
832
| :green_heart : | STM32L051C8 | [ RHF76-052] ( https://lora-alliance.org/lora_products/rhf76-052/ ) | * 1.7.0* | Basic support |
832
833
Original file line number Diff line number Diff line change @@ -12749,6 +12749,19 @@ LoRa.menu.pnum.RAK3172_MODULE.build.variant_h=variant_RAK3172_MODULE.h
12749
12749
LoRa.menu.pnum.RAK3172_MODULE.debug.server.openocd.scripts.2=target/stm32wlx.cfg
12750
12750
LoRa.menu.pnum.RAK3172_MODULE.debug.svd_file={runtime.tools.STM32_SVD.path}/svd/STM32WLxx/STM32WLE5_CM4.svd
12751
12751
12752
+ # RAK3172T module
12753
+ LoRa.menu.pnum.RAK3172T_MODULE=RAK3172T Module
12754
+ LoRa.menu.pnum.RAK3172T_MODULE.upload.maximum_size=262144
12755
+ LoRa.menu.pnum.RAK3172T_MODULE.upload.maximum_data_size=65536
12756
+ LoRa.menu.pnum.RAK3172T_MODULE.build.mcu=cortex-m4
12757
+ LoRa.menu.pnum.RAK3172T_MODULE.build.board=RAK3172T_MODULE
12758
+ LoRa.menu.pnum.RAK3172T_MODULE.build.series=STM32WLxx
12759
+ LoRa.menu.pnum.RAK3172T_MODULE.build.product_line=STM32WLE5xx
12760
+ LoRa.menu.pnum.RAK3172T_MODULE.build.variant=STM32WLxx/WL54CCU_WL55CCU_WLE4C(8-B-C)U_WLE5C(8-B-C)U
12761
+ LoRa.menu.pnum.RAK3172T_MODULE.build.variant_h=variant_RAK3172_MODULE.h
12762
+ LoRa.menu.pnum.RAK3172T_MODULE.debug.server.openocd.scripts.2=target/stm32wlx.cfg
12763
+ LoRa.menu.pnum.RAK3172T_MODULE.debug.svd_file={runtime.tools.STM32_SVD.path}/svd/STM32WLxx/STM32WLE5_CM4.svd
12764
+
12752
12765
# RAK811_TRACKER board
12753
12766
LoRa.menu.pnum.RAK811_TRACKER=RAK811 LoRa Tracker (16kb RAM)
12754
12767
LoRa.menu.pnum.RAK811_TRACKER.upload.maximum_size=131072
Original file line number Diff line number Diff line change 10
10
*
11
11
*******************************************************************************
12
12
*/
13
- #if defined(ARDUINO_RAK3172_MODULE)
13
+ #if defined(ARDUINO_RAK3172_MODULE) || defined(ARDUINO_RAK3172T_MODULE)
14
14
#include " pins_arduino.h"
15
15
16
16
// Digital PinName array
@@ -104,4 +104,4 @@ WEAK void SystemClock_Config(void)
104
104
}
105
105
#endif
106
106
107
- #endif /* ARDUINO_RAK3172_MODULE */
107
+ #endif /* ARDUINO_RAK3172_MODULE || ARDUINO_RAK3172T_MODULE */
Original file line number Diff line number Diff line change 144
144
#endif
145
145
146
146
// LoRaWAN definitions
147
- #define LORAWAN_BOARD_HAS_TCXO 0U
147
+
148
+ #if defined(ARDUINO_RAK3172T_MODULE )
149
+ #define LORAWAN_BOARD_HAS_TCXO 1U
150
+ #else
151
+ #define LORAWAN_BOARD_HAS_TCXO 0U
152
+ #endif
148
153
#define LORAWAN_BOARD_HAS_DCDC 1U
149
154
#define LORAWAN_TX_CONFIG RBI_CONF_RFO_HP
150
155
You can’t perform that action at this time.
0 commit comments