Skip to content

Commit

Permalink
fix against regression of CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
lyusupov committed Aug 21, 2023
1 parent ebb87f9 commit b6859f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions software/firmware/source/SoftRF/src/protocol/radio/APRS.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#define APRS_AIR_TIME 3000 /* 3 s */

#define APRS_TX_INTERVAL_MIN 60000 /* in ms, no SB support at this time */
#define APRS_TX_INTERVAL_MAX 80000
#define APRS_TX_INTERVAL_MAX 65500 /* TBD: 80000 */

typedef struct {

Expand All @@ -57,7 +57,7 @@ size_t aprs_encode(void *, ufo_t *);
#define PROL_AIR_TIME 3000 /* 3 s */

#define PROL_TX_INTERVAL_MIN 60000 /* in ms, no SB support at this time */
#define PROL_TX_INTERVAL_MAX 80000
#define PROL_TX_INTERVAL_MAX 65500 /* TBD: 80000 */

extern const rf_proto_desc_t prol_proto_desc;

Expand Down

0 comments on commit b6859f6

Please sign in to comment.