Skip to content

Commit

Permalink
Parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-bennett committed Aug 26, 2024
1 parent 18a3816 commit 2c2e8b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mesh/MeshTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ typedef uint32_t PacketId; // A packet sequence number
1 // Reserved to only deliver packets over high speed (non-lora) transports, such as MQTT or BLE mesh (not yet implemented)
#define ERRNO_OK 0
#define ERRNO_NO_INTERFACES 33
#define ERRNO_UNKNOWN 32 // pick something that doesn't conflict with RH_ROUTER_ERROR_UNABLE_TO_DELIVER
#define ERRNO_DISABLED 34 // the interface is disabled
#define ID_COUNTER_MASK UINT32_MAX >> 22 // mask to select the counter portion of the ID
#define ERRNO_UNKNOWN 32 // pick something that doesn't conflict with RH_ROUTER_ERROR_UNABLE_TO_DELIVER
#define ERRNO_DISABLED 34 // the interface is disabled
#define ID_COUNTER_MASK (UINT32_MAX >> 22) // mask to select the counter portion of the ID

/*
* Source of a received message
Expand Down

0 comments on commit 2c2e8b0

Please sign in to comment.