Skip to content

Commit

Permalink
update AT to Rev1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Heltec-Aaron-Lee committed Jan 11, 2021
1 parent 9401e47 commit a982c5a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cores/asr650x/loramac/mac/LoRaMac.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@
extern "C" {
#endif

/*!
* LoRaMac internal state
*/
extern uint32_t LoRaMacState;

/*!
* Check the Mac layer state every MAC_STATE_CHECK_TIMEOUT in ms
*/
Expand Down
Binary file modified cores/asr650x/projects/CubeCellLib.a
Binary file not shown.
1 change: 1 addition & 0 deletions libraries/Basics/examples/PWM/PWM.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ void setup() {

//pwm period can be 0xFF~0xFFFF, default is 0xFFFF
setPWM_ComparePeriod(0xFFFF);

pinMode(PWM1,OUTPUT);
pinMode(PWM2,OUTPUT);
}
Expand Down
3 changes: 3 additions & 0 deletions libraries/LoRa/src/LoRaWan_APP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ int8_t defaultDrForNoAdr = 3;
int8_t defaultDrForNoAdr = 5;
#endif

/*AT mode, auto into low power mode*/
bool autoLPM = true;

/*loraWan current Dr when adr disabled*/
int8_t currentDrForNoAdr;

Expand Down

0 comments on commit a982c5a

Please sign in to comment.