/loramac-node-3.6.0-3.5.0/src/mac/region/ |
D | Region.h | 862 bool RegionIsActive( LoRaMacRegion_t region ); 873 PhyParam_t RegionGetPhyParam( LoRaMacRegion_t region, GetPhyParams_t* getPhy ); 882 void RegionSetBandTxDone( LoRaMacRegion_t region, SetBandTxDoneParams_t* txDone ); 891 void RegionInitDefaults( LoRaMacRegion_t region, InitDefaultsParams_t* params ); 904 bool RegionVerify( LoRaMacRegion_t region, VerifyParams_t* verify, PhyAttribute_t phyAttribute ); 914 void RegionApplyCFList( LoRaMacRegion_t region, ApplyCFListParams_t* applyCFList ); 925 bool RegionChanMaskSet( LoRaMacRegion_t region, ChanMaskSetParams_t* chanMaskSet ); 938 bool RegionRxConfig( LoRaMacRegion_t region, RxConfigParams_t* rxConfig, int8_t* datarate ); 993 void RegionComputeRxWindowParameters( LoRaMacRegion_t region, int8_t datarate, uint8_t minRxSymbols… 1008 bool RegionTxConfig( LoRaMacRegion_t region, TxConfigParams_t* txConfig, int8_t* txPower, TimerTime… [all …]
|
D | Region.c | 524 bool RegionIsActive( LoRaMacRegion_t region ) in RegionIsActive() argument 526 switch( region ) in RegionIsActive() 545 PhyParam_t RegionGetPhyParam( LoRaMacRegion_t region, GetPhyParams_t* getPhy ) in RegionGetPhyParam() argument 548 switch( region ) in RegionGetPhyParam() 567 void RegionSetBandTxDone( LoRaMacRegion_t region, SetBandTxDoneParams_t* txDone ) in RegionSetBandTxDone() argument 569 switch( region ) in RegionSetBandTxDone() 588 void RegionInitDefaults( LoRaMacRegion_t region, InitDefaultsParams_t* params ) in RegionInitDefaults() argument 590 switch( region ) in RegionInitDefaults() 609 bool RegionVerify( LoRaMacRegion_t region, VerifyParams_t* verify, PhyAttribute_t phyAttribute ) in RegionVerify() argument 611 switch( region ) in RegionVerify() [all …]
|
/loramac-node-3.6.0-3.5.0/src/mac/ |
D | CMakeLists.txt | 25 # Allow selection of region 53 ${CMAKE_CURRENT_SOURCE_DIR}/region/RegionCommon.c 54 ${CMAKE_CURRENT_SOURCE_DIR}/region/Region.c 67 "${CMAKE_CURRENT_SOURCE_DIR}/region/RegionAS923.c" ) 73 "${CMAKE_CURRENT_SOURCE_DIR}/region/RegionAU915.c" ) 79 "${CMAKE_CURRENT_SOURCE_DIR}/region/RegionCN470.c" 80 "${CMAKE_CURRENT_SOURCE_DIR}/region/RegionCN470A20.c" 81 "${CMAKE_CURRENT_SOURCE_DIR}/region/RegionCN470B20.c" 82 "${CMAKE_CURRENT_SOURCE_DIR}/region/RegionCN470A26.c" 83 "${CMAKE_CURRENT_SOURCE_DIR}/region/RegionCN470B26.c" ) [all …]
|
D | LoRaMac.h | 2637 …alization( LoRaMacPrimitives_t* primitives, LoRaMacCallback_t* callbacks, LoRaMacRegion_t region );
|
D | LoRaMac.c | 3739 …ialization( LoRaMacPrimitives_t* primitives, LoRaMacCallback_t* callbacks, LoRaMacRegion_t region ) in LoRaMacInitialization() argument 3758 if( RegionIsActive( region ) == false ) in LoRaMacInitialization() 3771 Nvm.MacGroup2.Region = region; in LoRaMacInitialization()
|
/loramac-node-3.6.0-3.5.0/.vscode/ |
D | settings.json | 41 // Select the active region for which the stack will be initialized. 80 // Default channel plan for region AS923. Possible selections: 86 // Default channel plan for region CN470. Possible selections:
|
/loramac-node-3.6.0-3.5.0/src/apps/LoRaMac/ |
D | CMakeLists.txt | 37 # Allow switching of active region 42 set(ACTIVE_REGION LORAMAC_REGION_EU868 CACHE STRING "Default active region is EU868")
|
/loramac-node-3.6.0-3.5.0/src/boards/B-L072Z-LRWAN1/cmsis/arm-gcc/ |
D | stm32l072xx_flash.ld | 128 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
/loramac-node-3.6.0-3.5.0/src/boards/SKiM881AXL/cmsis/arm-gcc/ |
D | stm32l081xx_flash.ld | 128 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
/loramac-node-3.6.0-3.5.0/src/boards/NucleoL073/cmsis/arm-gcc/ |
D | stm32l073xx_flash.ld | 128 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
/loramac-node-3.6.0-3.5.0/src/boards/NucleoL476/cmsis/arm-gcc/ |
D | stm32l476rgtx_flash.ld | 129 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
/loramac-node-3.6.0-3.5.0/src/boards/SKiM980A/cmsis/arm-gcc/ |
D | stm32l151xba_flash.ld | 130 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
/loramac-node-3.6.0-3.5.0/src/boards/NucleoL152/cmsis/arm-gcc/ |
D | stm32l152xe_flash.ld | 130 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
/loramac-node-3.6.0-3.5.0/src/boards/SKiM880B/cmsis/arm-gcc/ |
D | stm32l151xba_flash.ld | 130 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
/loramac-node-3.6.0-3.5.0/src/boards/NAMote72/cmsis/arm-gcc/ |
D | stm32l152xc_flash.ld | 130 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
/loramac-node-3.6.0-3.5.0/src/apps/tx-cw/ |
D | CMakeLists.txt | 25 # Allow selection of region
|
/loramac-node-3.6.0-3.5.0/src/apps/rx-sensi/ |
D | CMakeLists.txt | 25 # Allow selection of region
|
/loramac-node-3.6.0-3.5.0/src/apps/ping-pong/ |
D | CMakeLists.txt | 25 # Allow selection of region
|
/loramac-node-3.6.0-3.5.0/ |
D | CHANGELOG.md | 35 - Added support for new release of ARIB STD-T108 Ver1.4 under AS923 region 151 - Fixed Null pointer exception when CN470 region was selected 166 - Fixed compiling issue when RU864 region is selected 297 - Back port 1.0.4 region implementation improvements 336 - Added `LoRaMacDeInitialization` API to ease dynamic region change 372 - Fixed missing switch case `PHY_BEACON_CHANNEL_FREQ` for *AU915* region 373 - Fixed default data rates for Class B beacon and ping-slots for *AU915* region 377 - Fixed duty-cycle enforcement by disabling it for *IN865* region 412 - Added *RU864* region support 432 - Removed *US915-Hybrid* region support [all …]
|
D | README.md | 227 // Select the active region for which the stack will be initialized. 328 // Select the active region for which the stack will be initialized.
|
/loramac-node-3.6.0-3.5.0/doc/ |
D | development-environment.md | 92 * `ACTIVE_REGION` - Active region for which the stack will be initialized.
|