Skip to content

Commit a982c5a

Browse files
update AT to Rev1.3
1 parent 9401e47 commit a982c5a

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

cores/asr650x/loramac/mac/LoRaMac.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@
6565
extern "C" {
6666
#endif
6767

68+
/*!
69+
* LoRaMac internal state
70+
*/
71+
extern uint32_t LoRaMacState;
72+
6873
/*!
6974
* Check the Mac layer state every MAC_STATE_CHECK_TIMEOUT in ms
7075
*/

cores/asr650x/projects/CubeCellLib.a

572 Bytes
Binary file not shown.

libraries/Basics/examples/PWM/PWM.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ void setup() {
2121

2222
//pwm period can be 0xFF~0xFFFF, default is 0xFFFF
2323
setPWM_ComparePeriod(0xFFFF);
24+
2425
pinMode(PWM1,OUTPUT);
2526
pinMode(PWM2,OUTPUT);
2627
}

libraries/LoRa/src/LoRaWan_APP.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ int8_t defaultDrForNoAdr = 3;
4141
int8_t defaultDrForNoAdr = 5;
4242
#endif
4343

44+
/*AT mode, auto into low power mode*/
45+
bool autoLPM = true;
46+
4447
/*loraWan current Dr when adr disabled*/
4548
int8_t currentDrForNoAdr;
4649

0 commit comments

Comments
 (0)